diff --git a/.github/workflows/CI.yml b/.github/workflows/CI.yml index 407f82e..d89b890 100644 --- a/.github/workflows/CI.yml +++ b/.github/workflows/CI.yml @@ -40,14 +40,8 @@ jobs: env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} - - name: Setup binary permissions - run: chmod a+x artifacts/pixi* - - name: Run integration tests run: pixi run --locked test-slow - env: - PIXI_BIN_DIR: ${{ github.workspace }}/artifacts - BUILD_BACKENDS_BIN_DIR: ${{ github.workspace }}/artifacts test-windows-x86_64: timeout-minutes: 10 @@ -78,9 +72,6 @@ jobs: - name: Run integration tests run: pixi run --locked test-slow working-directory: ${{ env.PIXI_WORKSPACE }} - env: - PIXI_BIN_DIR: ${{ env.PIXI_WORKSPACE }}/artifacts - BUILD_BACKENDS_BIN_DIR: ${{ env.PIXI_WORKSPACE }}/artifacts test-macos-aarch64: timeout-minutes: 10 @@ -100,11 +91,5 @@ jobs: env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} - - name: Setup binary permissions - run: chmod a+x artifacts/pixi* - - name: Run integration tests run: pixi run --locked test-slow - env: - PIXI_BIN_DIR: ${{ github.workspace }}/artifacts - BUILD_BACKENDS_BIN_DIR: ${{ github.workspace }}/artifacts diff --git a/README.md b/README.md index c9a8919..2c4a1de 100644 --- a/README.md +++ b/README.md @@ -25,10 +25,9 @@ If you prefer to use local checkouts, create a `.env` file with the paths to you ```shell PIXI_REPO="/path/to/pixi-repository" -BUILD_BACKENDS_REPO="/path/to/pixi-build-backends-repository" - PIXI_BIN_DIR="${PIXI_REPO}/target/pixi/release" -BUILD_BACKENDS_BIN_DIR="${BUILD_BACKENDS_REPO}/target/pixi/release" + +BUILD_BACKENDS_REPO="/path/to/pixi-build-backends-repository" ``` Then build the binaries with: diff --git a/mypy.ini b/mypy.ini index bc205ee..8e5bf47 100644 --- a/mypy.ini +++ b/mypy.ini @@ -1,4 +1,4 @@ [mypy] strict = True -exclude = tests/data/pypi-indexes +exclude = tests/data/pypi-indexes|.*setup\.py files = tests,scripts diff --git a/scripts/build-repos.py b/scripts/build-repos.py index b133157..3268bc6 100755 --- a/scripts/build-repos.py +++ b/scripts/build-repos.py @@ -35,14 +35,28 @@ class PixiBuildError(Exception): pass +class PixiChannelError(Exception): + """Raised when creating the testsuite channel fails.""" + + pass + + def run_command( - cmd: list[str], cwd: Path | None = None, capture_output: bool = True + cmd: list[str], + cwd: Path | None = None, + capture_output: bool = True, + env: dict[str, str] | None = None, ) -> tuple[int, str, str]: """Run a command and return exit code, stdout, and stderr.""" - result = subprocess.run(cmd, cwd=cwd, capture_output=capture_output, text=True) + result = subprocess.run(cmd, cwd=cwd, capture_output=capture_output, text=True, env=env) return result.returncode, result.stdout, result.stderr +def executable_name(base: str) -> str: + """Return the platform specific executable name.""" + return f"{base}.exe" if sys.platform.startswith("win") else base + + def is_git_worktree(path: Path) -> bool: """Check if the given path is inside a git work tree (repo or worktree).""" if not path.exists() or not path.is_dir(): @@ -89,6 +103,30 @@ def build_executables(repo_path: Path) -> None: raise PixiBuildError(error_msg) +def create_channel(repo_path: Path, project_root: Path) -> None: + """Create the local testsuite channel and move it into this repository.""" + channel_source = repo_path / "artifacts-channel" + + print("📦 Creating channel") + returncode, stdout, stderr = run_command(["pixi", "run", "create-channel"], cwd=repo_path) + + if returncode != 0: + error_msg = "Failed to create testsuite channel" + if stderr: + error_msg += f": {stderr}" + if stdout: + error_msg += f" (Output: {stdout})" + raise PixiChannelError(error_msg) + + if not channel_source.exists(): + raise PixiChannelError( + f"Expected channel directory '{channel_source}' was not created. " + "Verify that 'pixi run create-channel' completed successfully." + ) + + print("✅ Testsuite channel ready at source repo") + + def process_repository(repo_path: Path, repo_name: str) -> None: """Process a single repository: verify, pull if on main, and build.""" print(f"\n{'=' * 60}") @@ -112,14 +150,12 @@ def process_repository(repo_path: Path, repo_name: str) -> None: else: print("⚠️ Could not determine current branch") - # Run pixi build - build_executables(repo_path) - def main() -> None: """Main function to process repositories.""" # Load environment variables from .env file - env_file = Path(__file__).parent.parent / ".env" + project_root = Path(__file__).parent.parent + env_file = project_root / ".env" if env_file.exists(): load_dotenv(env_file, override=True) print(f"✅ Loaded environment variables from {env_file}") @@ -150,12 +186,14 @@ def main() -> None: try: process_repository(pixi_repo_path, "PIXI_REPO") + build_executables(pixi_repo_path) except Exception as e: print(f"❌ Error processing PIXI_REPO: {e}") success = False try: process_repository(build_backends_repo_path, "BUILD_BACKENDS_REPO") + create_channel(build_backends_repo_path, project_root) except Exception as e: print(f"❌ Error processing BUILD_BACKENDS_REPO: {e}") success = False diff --git a/scripts/download-artifacts.py b/scripts/download-artifacts.py index d9b14ea..d1761d8 100644 --- a/scripts/download-artifacts.py +++ b/scripts/download-artifacts.py @@ -139,48 +139,27 @@ def download_and_extract_artifact( console.print(f"[green]Successfully downloaded pixi binary to: {final_path}") elif repo == "prefix-dev/pixi-build-backends": - # Extract all pixi-build-* executables - backend_executables = [] - is_windows = sys.platform.startswith("win") - + # Find the pixi binary + is_channel = None for file_name in file_list: - base_name = Path(file_name).name - if base_name.startswith("pixi-build-"): - # On Windows, expect .exe extension; on others, no extension - if is_windows and base_name.endswith(".exe"): - backend_executables.append(file_name) - elif not is_windows and not base_name.endswith(".exe") and "." not in base_name: - backend_executables.append(file_name) - - if not backend_executables: - console.print("[red]Could not find any pixi-build-* executables in archive") - raise FileNotFoundError( - f"Could not find any pixi-build-* executables in archive. Archive contents: {file_list}" - ) - - console.print(f"[blue]Found {len(backend_executables)} backend executable(s)") - - # Extract all executables - for executable in backend_executables: - final_path = output_dir / Path(executable).name - if final_path.exists(): - if final_path.is_dir(): - shutil.rmtree(final_path) - else: - final_path.unlink() - - zip_ref.extract(executable, output_dir) - extracted_path = output_dir / executable + if file_name.endswith("repodata.json"): + is_channel = True + break - if extracted_path != final_path: - extracted_path.rename(final_path) + if not is_channel: + console.print("[red]Could not locate a channel directory inside the artifact.") + raise FileNotFoundError("Could not locate a channel directory inside the artifact.") - # Make executable on Unix systems - if not sys.platform.startswith("win"): - final_path.chmod(0o755) + console.print("[blue]Detected backend channel artifact") + final_channel_path = output_dir / "pixi-build-backends" + if final_channel_path.exists(): + console.print(f"[yellow]Removing existing channel at {final_channel_path}") + shutil.rmtree(final_channel_path) - console.print(f"[green]Extracted executable: {final_path}") + final_channel_path.parent.mkdir(parents=True, exist_ok=True) + zip_ref.extractall(final_channel_path) + console.print(f"[green]Channel is ready at: {final_channel_path}") else: raise ValueError(f"Unsupported repository: {repo}") diff --git a/tests/data/pixi_build/ros-workspace/pixi.lock b/tests/data/pixi_build/ros-workspace/pixi.lock new file mode 100644 index 0000000..643afc5 --- /dev/null +++ b/tests/data/pixi_build/ros-workspace/pixi.lock @@ -0,0 +1,41203 @@ +version: 6 +environments: + default: + channels: + - url: https://prefix.dev/pixi-build-backends/ + - url: https://prefix.dev/conda-forge/ + - url: https://prefix.dev/robostack-staging/ + packages: + linux-64: + - conda: https://prefix.dev/conda-forge/linux-64/_libgcc_mutex-0.1-conda_forge.tar.bz2 + - conda: https://prefix.dev/conda-forge/linux-64/_openmp_mutex-4.5-2_gnu.tar.bz2 + - conda: https://prefix.dev/conda-forge/noarch/adwaita-icon-theme-48.1-unix_0.conda + - conda: https://prefix.dev/conda-forge/noarch/aiohappyeyeballs-2.6.1-pyhd8ed1ab_0.conda + - conda: https://prefix.dev/conda-forge/linux-64/aiohttp-3.12.15-py311h3778330_0.conda + - conda: https://prefix.dev/conda-forge/noarch/aiosignal-1.4.0-pyhd8ed1ab_0.conda + - conda: https://prefix.dev/conda-forge/linux-64/alsa-lib-1.2.14-hb9d3cd8_0.conda + - conda: https://prefix.dev/conda-forge/linux-64/aom-3.9.1-hac33072_0.conda + - conda: https://prefix.dev/conda-forge/noarch/argcomplete-3.6.2-pyhd8ed1ab_0.conda + - conda: https://prefix.dev/conda-forge/linux-64/assimp-5.4.3-h8943939_0.conda + - conda: https://prefix.dev/conda-forge/linux-64/at-spi2-atk-2.38.0-h0630a04_3.tar.bz2 + - conda: https://prefix.dev/conda-forge/linux-64/at-spi2-core-2.40.3-h0630a04_0.tar.bz2 + - conda: https://prefix.dev/conda-forge/linux-64/atk-1.0-2.38.0-h04ea711_2.conda + - conda: https://prefix.dev/conda-forge/linux-64/attr-2.5.1-h166bdaf_1.tar.bz2 + - conda: https://prefix.dev/conda-forge/noarch/attrs-25.3.0-pyh71513ae_0.conda + - conda: https://prefix.dev/conda-forge/linux-64/blosc-1.21.6-he440d0b_1.conda + - conda: https://prefix.dev/conda-forge/linux-64/brotli-1.1.0-hb9d3cd8_3.conda + - conda: https://prefix.dev/conda-forge/linux-64/brotli-bin-1.1.0-hb9d3cd8_3.conda + - conda: https://prefix.dev/conda-forge/linux-64/bullet-3.25-hbd00459_4.conda + - conda: https://prefix.dev/conda-forge/linux-64/bullet-cpp-3.25-h7db5c69_4.conda + - conda: https://prefix.dev/conda-forge/linux-64/bzip2-1.0.8-h4bc722e_7.conda + - conda: https://prefix.dev/conda-forge/linux-64/c-ares-1.34.5-hb9d3cd8_0.conda + - conda: https://prefix.dev/conda-forge/noarch/ca-certificates-2025.8.3-hbd8a1cb_0.conda + - conda: https://prefix.dev/conda-forge/linux-64/cairo-1.18.4-h3394656_0.conda + - conda: https://prefix.dev/conda-forge/noarch/catkin_pkg-1.0.0-pyhd8ed1ab_1.conda + - conda: https://prefix.dev/conda-forge/linux-64/cffi-1.17.1-py311hf29c0ef_0.conda + - conda: https://prefix.dev/conda-forge/linux-64/cmake-4.1.0-hc85cc9f_0.conda + - conda: https://prefix.dev/conda-forge/noarch/colorama-0.4.6-pyhd8ed1ab_1.conda + - conda: https://prefix.dev/conda-forge/linux-64/console_bridge-1.0.2-h924138e_1.tar.bz2 + - conda: https://prefix.dev/conda-forge/linux-64/contourpy-1.3.3-py311hdf67eae_1.conda + - conda: https://prefix.dev/conda-forge/linux-64/cppcheck-2.18.1-py311hdb66536_0.conda + - conda: https://prefix.dev/conda-forge/linux-64/cryptography-45.0.6-py311h8488d03_0.conda + - conda: https://prefix.dev/conda-forge/noarch/cycler-0.12.1-pyhd8ed1ab_1.conda + - conda: https://prefix.dev/conda-forge/linux-64/cyrus-sasl-2.1.28-hd9c7081_0.conda + - conda: https://prefix.dev/conda-forge/linux-64/dav1d-1.2.1-hd590300_0.conda + - conda: https://prefix.dev/conda-forge/linux-64/dbus-1.16.2-h3c4dab8_0.conda + - conda: https://prefix.dev/conda-forge/noarch/distro-1.9.0-pyhd8ed1ab_1.conda + - conda: https://prefix.dev/conda-forge/noarch/docutils-0.22-pyhd8ed1ab_0.conda + - conda: https://prefix.dev/conda-forge/linux-64/double-conversion-3.3.1-h5888daf_0.conda + - conda: https://prefix.dev/conda-forge/linux-64/eigen-3.4.0-h00ab1b0_0.conda + - conda: https://prefix.dev/conda-forge/noarch/empy-3.3.4-pyh9f0ad1d_1.tar.bz2 + - conda: https://prefix.dev/conda-forge/linux-64/epoxy-1.5.10-h166bdaf_1.tar.bz2 + - conda: https://prefix.dev/conda-forge/noarch/exceptiongroup-1.3.0-pyhd8ed1ab_0.conda + - conda: https://prefix.dev/conda-forge/linux-64/expat-2.7.1-hecca717_0.conda + - conda: https://prefix.dev/conda-forge/linux-64/ffmpeg-7.1.1-gpl_h127656b_906.conda + - conda: https://prefix.dev/conda-forge/noarch/flake8-7.3.0-pyhd8ed1ab_0.conda + - conda: https://prefix.dev/conda-forge/linux-64/flann-1.9.2-hc299af7_5.conda + - conda: https://prefix.dev/conda-forge/linux-64/fmt-11.2.0-h07f6e7f_0.conda + - conda: https://prefix.dev/conda-forge/noarch/font-ttf-dejavu-sans-mono-2.37-hab24e00_0.tar.bz2 + - conda: https://prefix.dev/conda-forge/noarch/font-ttf-inconsolata-3.000-h77eed37_0.tar.bz2 + - conda: https://prefix.dev/conda-forge/noarch/font-ttf-source-code-pro-2.038-h77eed37_0.tar.bz2 + - conda: https://prefix.dev/conda-forge/noarch/font-ttf-ubuntu-0.83-h77eed37_3.conda + - conda: https://prefix.dev/conda-forge/linux-64/fontconfig-2.15.0-h7e30c49_1.conda + - conda: https://prefix.dev/conda-forge/noarch/fonts-conda-ecosystem-1-0.tar.bz2 + - conda: https://prefix.dev/conda-forge/noarch/fonts-conda-forge-1-0.tar.bz2 + - conda: https://prefix.dev/conda-forge/linux-64/fonttools-4.59.1-py311h3778330_0.conda + - conda: https://prefix.dev/conda-forge/linux-64/foonathan-memory-0.7.3-h5888daf_1.conda + - conda: https://prefix.dev/conda-forge/linux-64/freeglut-3.2.2-ha6d2627_3.conda + - conda: https://prefix.dev/conda-forge/linux-64/freeimage-3.18.0-h3a85593_22.conda + - conda: https://prefix.dev/conda-forge/linux-64/freetype-2.13.3-ha770c72_1.conda + - conda: https://prefix.dev/conda-forge/linux-64/fribidi-1.0.10-h36c2ea0_0.tar.bz2 + - conda: https://prefix.dev/conda-forge/linux-64/frozenlist-1.7.0-py311h52bc045_0.conda + - conda: https://prefix.dev/conda-forge/linux-64/gdk-pixbuf-2.42.12-h2b0a6b4_3.conda + - conda: https://prefix.dev/conda-forge/linux-64/gettext-0.25.1-h3f43e3d_1.conda + - conda: https://prefix.dev/conda-forge/linux-64/gettext-tools-0.25.1-h3f43e3d_1.conda + - conda: https://prefix.dev/conda-forge/linux-64/gl2ps-1.4.2-hae5d5c5_1.conda + - conda: https://prefix.dev/conda-forge/linux-64/glew-2.1.0-h9c3ff4c_2.tar.bz2 + - conda: https://prefix.dev/conda-forge/linux-64/glib-2.84.3-h89d24bf_0.conda + - conda: https://prefix.dev/conda-forge/linux-64/glib-tools-2.84.3-hf516916_0.conda + - conda: https://prefix.dev/conda-forge/linux-64/gmock-1.17.0-ha770c72_1.conda + - conda: https://prefix.dev/conda-forge/linux-64/gmp-6.3.0-hac33072_2.conda + - conda: https://prefix.dev/conda-forge/linux-64/graphite2-1.3.14-hecca717_2.conda + - conda: https://prefix.dev/conda-forge/linux-64/graphviz-12.2.1-h5ae0cbf_1.conda + - conda: https://prefix.dev/conda-forge/linux-64/gst-plugins-base-1.24.11-h651a532_0.conda + - conda: https://prefix.dev/conda-forge/linux-64/gstreamer-1.24.11-hc37bda9_0.conda + - conda: https://prefix.dev/conda-forge/linux-64/gtest-1.17.0-h84d6215_1.conda + - conda: https://prefix.dev/conda-forge/linux-64/gtk3-3.24.43-h0c6a113_5.conda + - conda: https://prefix.dev/conda-forge/linux-64/gts-0.7.6-h977cf35_4.conda + - conda: https://prefix.dev/conda-forge/linux-64/harfbuzz-11.4.2-h15599e2_0.conda + - conda: https://prefix.dev/conda-forge/linux-64/hdf4-4.2.15-h2a13503_7.conda + - conda: https://prefix.dev/conda-forge/linux-64/hdf5-1.14.6-nompi_h6e4c0c1_103.conda + - conda: https://prefix.dev/conda-forge/linux-64/hicolor-icon-theme-0.17-ha770c72_2.tar.bz2 + - conda: https://prefix.dev/conda-forge/linux-64/icu-75.1-he02047a_0.conda + - conda: https://prefix.dev/conda-forge/noarch/idna-3.10-pyhd8ed1ab_1.conda + - conda: https://prefix.dev/conda-forge/linux-64/imath-3.1.12-h7955e40_0.conda + - conda: https://prefix.dev/conda-forge/noarch/importlib-metadata-8.7.0-pyhe01879c_1.conda + - conda: https://prefix.dev/conda-forge/noarch/importlib_resources-6.5.2-pyhd8ed1ab_0.conda + - conda: https://prefix.dev/conda-forge/noarch/iniconfig-2.0.0-pyhd8ed1ab_1.conda + - conda: https://prefix.dev/conda-forge/linux-64/jasper-4.2.8-he3c4edf_0.conda + - conda: https://prefix.dev/conda-forge/linux-64/jsoncpp-1.9.6-hf42df4d_1.conda + - conda: https://prefix.dev/conda-forge/linux-64/jxrlib-1.1-hd590300_3.conda + - conda: https://prefix.dev/conda-forge/linux-64/keyutils-1.6.3-hb9d3cd8_0.conda + - conda: https://prefix.dev/conda-forge/linux-64/kiwisolver-1.4.9-py311h724c32c_0.conda + - conda: https://prefix.dev/conda-forge/linux-64/krb5-1.21.3-h659f571_0.conda + - conda: https://prefix.dev/conda-forge/linux-64/lame-3.100-h166bdaf_1003.tar.bz2 + - conda: https://prefix.dev/conda-forge/noarch/lark-parser-0.12.0-pyhd8ed1ab_1.conda + - conda: https://prefix.dev/conda-forge/linux-64/lcms2-2.17-h717163a_0.conda + - conda: https://prefix.dev/conda-forge/linux-64/ld_impl_linux-64-2.44-h1423503_1.conda + - conda: https://prefix.dev/conda-forge/linux-64/lerc-4.0.0-h0aef613_1.conda + - conda: https://prefix.dev/conda-forge/linux-64/level-zero-1.24.1-hb700be7_0.conda + - conda: https://prefix.dev/conda-forge/linux-64/libabseil-20250127.1-cxx17_hbbce691_0.conda + - conda: https://prefix.dev/conda-forge/linux-64/libacl-2.3.2-h0f662aa_0.conda + - conda: https://prefix.dev/conda-forge/linux-64/libaec-1.1.4-h3f801dc_0.conda + - conda: https://prefix.dev/conda-forge/linux-64/libasprintf-0.25.1-h3f43e3d_1.conda + - conda: https://prefix.dev/conda-forge/linux-64/libasprintf-devel-0.25.1-h3f43e3d_1.conda + - conda: https://prefix.dev/conda-forge/linux-64/libass-0.17.3-h52826cd_2.conda + - conda: https://prefix.dev/conda-forge/linux-64/libavif16-1.3.0-h766b0b6_0.conda + - conda: https://prefix.dev/conda-forge/linux-64/libblas-3.9.0-34_h59b9bed_openblas.conda + - conda: https://prefix.dev/conda-forge/linux-64/libboost-1.86.0-h6c02f8c_3.conda + - conda: https://prefix.dev/conda-forge/linux-64/libboost-devel-1.86.0-h1a2810e_3.conda + - conda: https://prefix.dev/conda-forge/linux-64/libboost-headers-1.86.0-ha770c72_3.conda + - conda: https://prefix.dev/conda-forge/linux-64/libboost-python-1.86.0-py311h5b7b71f_3.conda + - conda: https://prefix.dev/conda-forge/linux-64/libbrotlicommon-1.1.0-hb9d3cd8_3.conda + - conda: https://prefix.dev/conda-forge/linux-64/libbrotlidec-1.1.0-hb9d3cd8_3.conda + - conda: https://prefix.dev/conda-forge/linux-64/libbrotlienc-1.1.0-hb9d3cd8_3.conda + - conda: https://prefix.dev/conda-forge/linux-64/libcap-2.75-h39aace5_0.conda + - conda: https://prefix.dev/conda-forge/linux-64/libcblas-3.9.0-34_he106b2a_openblas.conda + - conda: https://prefix.dev/conda-forge/linux-64/libclang-cpp20.1-20.1.8-default_hddf928d_0.conda + - conda: https://prefix.dev/conda-forge/linux-64/libclang13-20.1.8-default_ha444ac7_0.conda + - conda: https://prefix.dev/conda-forge/linux-64/libcups-2.3.3-hb8b1518_5.conda + - conda: https://prefix.dev/conda-forge/linux-64/libcurl-8.14.1-h332b0f4_0.conda + - conda: https://prefix.dev/conda-forge/linux-64/libdeflate-1.24-h86f0d12_0.conda + - conda: https://prefix.dev/conda-forge/linux-64/libdrm-2.4.125-hb9d3cd8_0.conda + - conda: https://prefix.dev/conda-forge/linux-64/libedit-3.1.20250104-pl5321h7949ede_0.conda + - conda: https://prefix.dev/conda-forge/linux-64/libegl-1.7.0-ha4b6fd6_2.conda + - conda: https://prefix.dev/conda-forge/linux-64/libev-4.33-hd590300_2.conda + - conda: https://prefix.dev/conda-forge/linux-64/libevent-2.1.12-hf998b51_1.conda + - conda: https://prefix.dev/conda-forge/linux-64/libexpat-2.7.1-hecca717_0.conda + - conda: https://prefix.dev/conda-forge/linux-64/libffi-3.4.6-h2dba641_1.conda + - conda: https://prefix.dev/conda-forge/linux-64/libflac-1.4.3-h59595ed_0.conda + - conda: https://prefix.dev/conda-forge/linux-64/libfreetype-2.13.3-ha770c72_1.conda + - conda: https://prefix.dev/conda-forge/linux-64/libfreetype6-2.13.3-h48d6fc4_1.conda + - conda: https://prefix.dev/conda-forge/linux-64/libgcc-15.1.0-h767d61c_4.conda + - conda: https://prefix.dev/conda-forge/linux-64/libgcc-ng-15.1.0-h69a702a_4.conda + - conda: https://prefix.dev/conda-forge/linux-64/libgcrypt-lib-1.11.1-hb9d3cd8_0.conda + - conda: https://prefix.dev/conda-forge/linux-64/libgd-2.3.3-h6f5c62b_11.conda + - conda: https://prefix.dev/conda-forge/linux-64/libgettextpo-0.25.1-h3f43e3d_1.conda + - conda: https://prefix.dev/conda-forge/linux-64/libgettextpo-devel-0.25.1-h3f43e3d_1.conda + - conda: https://prefix.dev/conda-forge/linux-64/libgfortran-15.1.0-h69a702a_4.conda + - conda: https://prefix.dev/conda-forge/linux-64/libgfortran5-15.1.0-hcea5267_4.conda + - conda: https://prefix.dev/conda-forge/linux-64/libgl-1.7.0-ha4b6fd6_2.conda + - conda: https://prefix.dev/conda-forge/linux-64/libgl-devel-1.7.0-ha4b6fd6_2.conda + - conda: https://prefix.dev/conda-forge/linux-64/libglib-2.84.3-hf39c6af_0.conda + - conda: https://prefix.dev/conda-forge/linux-64/libglu-9.0.3-h5888daf_1.conda + - conda: https://prefix.dev/conda-forge/linux-64/libglvnd-1.7.0-ha4b6fd6_2.conda + - conda: https://prefix.dev/conda-forge/linux-64/libglx-1.7.0-ha4b6fd6_2.conda + - conda: https://prefix.dev/conda-forge/linux-64/libglx-devel-1.7.0-ha4b6fd6_2.conda + - conda: https://prefix.dev/conda-forge/linux-64/libgomp-15.1.0-h767d61c_4.conda + - conda: https://prefix.dev/conda-forge/linux-64/libgpg-error-1.55-h3f2d84a_0.conda + - conda: https://prefix.dev/conda-forge/linux-64/libhwloc-2.12.1-default_h3d81e11_1000.conda + - conda: https://prefix.dev/conda-forge/linux-64/libiconv-1.18-h3b78370_2.conda + - conda: https://prefix.dev/conda-forge/linux-64/libignition-cmake2-2.17.2-hac33072_0.conda + - conda: https://prefix.dev/conda-forge/linux-64/libignition-math6-6.15.1-py311h4d89148_3.conda + - conda: https://prefix.dev/conda-forge/linux-64/libjpeg-turbo-3.1.0-hb9d3cd8_0.conda + - conda: https://prefix.dev/conda-forge/linux-64/liblapack-3.9.0-34_h7ac8fdf_openblas.conda + - conda: https://prefix.dev/conda-forge/linux-64/liblapacke-3.9.0-34_he2f377e_openblas.conda + - conda: https://prefix.dev/conda-forge/linux-64/libllvm20-20.1.8-hecd9e04_0.conda + - conda: https://prefix.dev/conda-forge/linux-64/liblzma-5.8.1-hb9d3cd8_2.conda + - conda: https://prefix.dev/conda-forge/linux-64/liblzma-devel-5.8.1-hb9d3cd8_2.conda + - conda: https://prefix.dev/conda-forge/linux-64/libnetcdf-4.9.2-nompi_h21f7587_118.conda + - conda: https://prefix.dev/conda-forge/linux-64/libnghttp2-1.64.0-h161d5f1_0.conda + - conda: https://prefix.dev/conda-forge/linux-64/libnsl-2.0.1-hb9d3cd8_1.conda + - conda: https://prefix.dev/conda-forge/linux-64/libntlm-1.8-hb9d3cd8_0.conda + - conda: https://prefix.dev/conda-forge/linux-64/libogg-1.3.5-hd0c01bc_1.conda + - conda: https://prefix.dev/conda-forge/linux-64/libopenblas-0.3.30-pthreads_h94d23a6_2.conda + - conda: https://prefix.dev/conda-forge/linux-64/libopencv-4.11.0-qt6_py311h58ab8b7_609.conda + - conda: https://prefix.dev/conda-forge/linux-64/libopengl-1.7.0-ha4b6fd6_2.conda + - conda: https://prefix.dev/conda-forge/linux-64/libopengl-devel-1.7.0-ha4b6fd6_2.conda + - conda: https://prefix.dev/conda-forge/linux-64/libopenvino-2025.0.0-hdc3f47d_3.conda + - conda: https://prefix.dev/conda-forge/linux-64/libopenvino-auto-batch-plugin-2025.0.0-h4d9b6c2_3.conda + - conda: https://prefix.dev/conda-forge/linux-64/libopenvino-auto-plugin-2025.0.0-h4d9b6c2_3.conda + - conda: https://prefix.dev/conda-forge/linux-64/libopenvino-hetero-plugin-2025.0.0-h981d57b_3.conda + - conda: https://prefix.dev/conda-forge/linux-64/libopenvino-intel-cpu-plugin-2025.0.0-hdc3f47d_3.conda + - conda: https://prefix.dev/conda-forge/linux-64/libopenvino-intel-gpu-plugin-2025.0.0-hdc3f47d_3.conda + - conda: https://prefix.dev/conda-forge/linux-64/libopenvino-intel-npu-plugin-2025.0.0-hdc3f47d_3.conda + - conda: https://prefix.dev/conda-forge/linux-64/libopenvino-ir-frontend-2025.0.0-h981d57b_3.conda + - conda: https://prefix.dev/conda-forge/linux-64/libopenvino-onnx-frontend-2025.0.0-h0e684df_3.conda + - conda: https://prefix.dev/conda-forge/linux-64/libopenvino-paddle-frontend-2025.0.0-h0e684df_3.conda + - conda: https://prefix.dev/conda-forge/linux-64/libopenvino-pytorch-frontend-2025.0.0-h5888daf_3.conda + - conda: https://prefix.dev/conda-forge/linux-64/libopenvino-tensorflow-frontend-2025.0.0-h684f15b_3.conda + - conda: https://prefix.dev/conda-forge/linux-64/libopenvino-tensorflow-lite-frontend-2025.0.0-h5888daf_3.conda + - conda: https://prefix.dev/conda-forge/linux-64/libopus-1.5.2-hd0c01bc_0.conda + - conda: https://prefix.dev/conda-forge/linux-64/libpciaccess-0.18-hb9d3cd8_0.conda + - conda: https://prefix.dev/conda-forge/linux-64/libpng-1.6.50-h421ea60_1.conda + - conda: https://prefix.dev/conda-forge/linux-64/libpq-17.6-h3675c94_0.conda + - conda: https://prefix.dev/conda-forge/linux-64/libprotobuf-5.29.3-h7460b1f_2.conda + - conda: https://prefix.dev/conda-forge/linux-64/libraw-0.21.4-h9969a89_0.conda + - conda: https://prefix.dev/conda-forge/linux-64/librsvg-2.58.4-he92a37e_3.conda + - conda: https://prefix.dev/conda-forge/linux-64/libsndfile-1.2.2-hc60ed4a_1.conda + - conda: https://prefix.dev/conda-forge/linux-64/libsqlite-3.50.4-h0c1763c_0.conda + - conda: https://prefix.dev/conda-forge/linux-64/libssh2-1.11.1-hcf80075_0.conda + - conda: https://prefix.dev/conda-forge/linux-64/libstdcxx-15.1.0-h8f9b012_4.conda + - conda: https://prefix.dev/conda-forge/linux-64/libstdcxx-ng-15.1.0-h4852527_4.conda + - conda: https://prefix.dev/conda-forge/linux-64/libsystemd0-257.7-h4e0b6ca_0.conda + - conda: https://prefix.dev/conda-forge/linux-64/libtheora-1.1.1-h4ab18f5_1006.conda + - conda: https://prefix.dev/conda-forge/linux-64/libtiff-4.7.0-h8261f1e_6.conda + - conda: https://prefix.dev/conda-forge/linux-64/libudev1-257.7-hbe16f8c_0.conda + - conda: https://prefix.dev/conda-forge/linux-64/libunwind-1.8.2-h1441ba7_0.conda + - conda: https://prefix.dev/conda-forge/linux-64/liburing-2.11-h84d6215_0.conda + - conda: https://prefix.dev/conda-forge/linux-64/libusb-1.0.29-h73b1eb8_0.conda + - conda: https://prefix.dev/conda-forge/linux-64/libuuid-2.38.1-h0b41bf4_0.conda + - conda: https://prefix.dev/conda-forge/linux-64/libuv-1.51.0-hb03c661_1.conda + - conda: https://prefix.dev/conda-forge/linux-64/libva-2.22.0-h4f16b4b_2.conda + - conda: https://prefix.dev/conda-forge/linux-64/libvorbis-1.3.7-h54a6638_2.conda + - conda: https://prefix.dev/conda-forge/linux-64/libvpx-1.14.1-hac33072_0.conda + - conda: https://prefix.dev/conda-forge/linux-64/libwebp-base-1.6.0-hd42ef1d_0.conda + - conda: https://prefix.dev/conda-forge/linux-64/libxcb-1.17.0-h8a09558_0.conda + - conda: https://prefix.dev/conda-forge/linux-64/libxcrypt-4.4.36-hd590300_1.conda + - conda: https://prefix.dev/conda-forge/linux-64/libxkbcommon-1.11.0-he8b52b9_0.conda + - conda: https://prefix.dev/conda-forge/linux-64/libxml2-2.13.8-h04c0eec_1.conda + - conda: https://prefix.dev/conda-forge/linux-64/libxslt-1.1.43-h7a3aeb2_0.conda + - conda: https://prefix.dev/conda-forge/linux-64/libzip-1.11.2-h6991a6a_0.conda + - conda: https://prefix.dev/conda-forge/linux-64/libzlib-1.3.1-hb9d3cd8_2.conda + - conda: https://prefix.dev/conda-forge/noarch/loguru-0.7.3-pyh707e725_0.conda + - conda: https://prefix.dev/conda-forge/linux-64/lxml-6.0.0-py311hbd2c71b_0.conda + - conda: https://prefix.dev/conda-forge/linux-64/lz4-c-1.10.0-h5888daf_1.conda + - conda: https://prefix.dev/conda-forge/linux-64/matplotlib-base-3.10.5-py311h0f3be63_0.conda + - conda: https://prefix.dev/conda-forge/noarch/mccabe-0.7.0-pyhd8ed1ab_1.conda + - conda: https://prefix.dev/conda-forge/linux-64/mpg123-1.32.9-hc50e24c_0.conda + - conda: https://prefix.dev/conda-forge/linux-64/msgpack-python-1.1.1-py311hd18a35c_0.conda + - conda: https://prefix.dev/conda-forge/linux-64/multidict-6.6.3-py311h2dc5d0c_0.conda + - conda: https://prefix.dev/conda-forge/noarch/munkres-1.1.4-pyhd8ed1ab_1.conda + - conda: https://prefix.dev/conda-forge/linux-64/ncurses-6.5-h2d0b736_3.conda + - conda: https://prefix.dev/conda-forge/linux-64/netifaces-0.11.0-py311h9ecbd09_3.conda + - conda: https://prefix.dev/conda-forge/linux-64/nlohmann_json-3.12.0-h3f2d84a_0.conda + - conda: https://prefix.dev/conda-forge/linux-64/nspr-4.37-h29cc59b_0.conda + - conda: https://prefix.dev/conda-forge/linux-64/nss-3.115-hc3c8bcf_0.conda + - conda: https://prefix.dev/conda-forge/linux-64/numpy-1.26.4-py311h64a7726_0.conda + - conda: https://prefix.dev/conda-forge/linux-64/ocl-icd-2.3.3-hb9d3cd8_0.conda + - conda: https://prefix.dev/conda-forge/linux-64/opencl-headers-2025.06.13-h5888daf_0.conda + - conda: https://prefix.dev/conda-forge/linux-64/openexr-3.3.5-h09fa569_0.conda + - conda: https://prefix.dev/conda-forge/linux-64/openh264-2.6.0-hc22cd8d_0.conda + - conda: https://prefix.dev/conda-forge/linux-64/openjpeg-2.5.3-h55fea9a_1.conda + - conda: https://prefix.dev/conda-forge/linux-64/openldap-2.6.10-he970967_0.conda + - conda: https://prefix.dev/conda-forge/linux-64/openssl-3.5.2-h26f9b46_0.conda + - conda: https://prefix.dev/conda-forge/linux-64/orocos-kdl-1.5.1-h5888daf_8.conda + - conda: https://prefix.dev/conda-forge/noarch/packaging-25.0-pyh29332c3_1.conda + - conda: https://prefix.dev/conda-forge/linux-64/pango-1.56.4-hadf4263_0.conda + - conda: https://prefix.dev/conda-forge/linux-64/pcl-1.15.0-hd1363f8_2.conda + - conda: https://prefix.dev/conda-forge/linux-64/pcre-8.45-h9c3ff4c_0.tar.bz2 + - conda: https://prefix.dev/conda-forge/linux-64/pcre2-10.45-hc749103_0.conda + - conda: https://prefix.dev/conda-forge/noarch/pep517-0.13.0-pyhd8ed1ab_0.tar.bz2 + - conda: https://prefix.dev/conda-forge/linux-64/pillow-11.3.0-py311h1322bbf_0.conda + - conda: https://prefix.dev/conda-forge/linux-64/pixman-0.46.4-h54a6638_1.conda + - conda: https://prefix.dev/conda-forge/linux-64/pkg-config-0.29.2-h4bc722e_1009.conda + - conda: https://prefix.dev/conda-forge/noarch/pluggy-1.6.0-pyhd8ed1ab_0.conda + - conda: https://prefix.dev/conda-forge/noarch/ply-3.11-pyhd8ed1ab_3.conda + - conda: https://prefix.dev/conda-forge/linux-64/proj-9.6.2-h18fbb6c_2.conda + - conda: https://prefix.dev/conda-forge/linux-64/propcache-0.3.1-py311h2dc5d0c_0.conda + - conda: https://prefix.dev/conda-forge/linux-64/psutil-7.0.0-py311h49ec1c0_1.conda + - conda: https://prefix.dev/conda-forge/linux-64/pthread-stubs-0.4-hb9d3cd8_1002.conda + - conda: https://prefix.dev/conda-forge/linux-64/pugixml-1.15-h3f63f65_0.conda + - conda: https://prefix.dev/conda-forge/linux-64/pulseaudio-client-17.0-hac146a9_1.conda + - conda: https://prefix.dev/conda-forge/linux-64/py-opencv-4.11.0-qt6_py311h5956852_609.conda + - conda: https://prefix.dev/conda-forge/noarch/pybind11-3.0.0-pyh9380348_1.conda + - conda: https://prefix.dev/conda-forge/noarch/pybind11-abi-11-hc364b38_1.conda + - conda: https://prefix.dev/conda-forge/noarch/pybind11-global-3.0.0-pyhf748d72_1.conda + - conda: https://prefix.dev/conda-forge/linux-64/pybullet-3.25-py311h2ed89a0_4.conda + - conda: https://prefix.dev/conda-forge/linux-64/pycairo-1.28.0-py311hd785cd9_0.conda + - conda: https://prefix.dev/conda-forge/noarch/pycodestyle-2.14.0-pyhd8ed1ab_0.conda + - conda: https://prefix.dev/conda-forge/noarch/pycparser-2.22-pyh29332c3_1.conda + - conda: https://prefix.dev/conda-forge/noarch/pydocstyle-6.3.0-pyhd8ed1ab_1.conda + - conda: https://prefix.dev/conda-forge/linux-64/pydot-4.0.1-py311h38be061_0.conda + - conda: https://prefix.dev/conda-forge/noarch/pyflakes-3.4.0-pyhd8ed1ab_0.conda + - conda: https://prefix.dev/conda-forge/noarch/pygments-2.19.2-pyhd8ed1ab_0.conda + - conda: https://prefix.dev/conda-forge/noarch/pyparsing-3.2.3-pyhe01879c_2.conda + - conda: https://prefix.dev/conda-forge/linux-64/pyqt-5.15.11-py311he22028a_1.conda + - conda: https://prefix.dev/conda-forge/noarch/pyqt-builder-1.15.4-pyhd8ed1ab_1.conda + - conda: https://prefix.dev/conda-forge/linux-64/pyqt5-sip-12.17.0-py311hfdbb021_1.conda + - conda: https://prefix.dev/conda-forge/noarch/pytest-8.4.1-pyhd8ed1ab_0.conda + - conda: https://prefix.dev/conda-forge/linux-64/python-3.11.13-h9e4cc4f_0_cpython.conda + - conda: https://prefix.dev/conda-forge/noarch/python-dateutil-2.9.0.post0-pyhe01879c_2.conda + - conda: https://prefix.dev/conda-forge/linux-64/python-orocos-kdl-1.5.1-py311hfdbb021_8.conda + - conda: https://prefix.dev/conda-forge/noarch/python_abi-3.11-8_cp311.conda + - conda: https://prefix.dev/conda-forge/linux-64/pyyaml-6.0.2-py311h2dc5d0c_2.conda + - conda: https://prefix.dev/conda-forge/linux-64/qhull-2020.2-h434a139_5.conda + - conda: https://prefix.dev/conda-forge/linux-64/qt-main-5.15.15-hea1682b_4.conda + - conda: https://prefix.dev/conda-forge/linux-64/qt6-main-6.9.1-h6ac528c_2.conda + - conda: https://prefix.dev/conda-forge/linux-64/rav1e-0.7.1-h8fae777_3.conda + - conda: https://prefix.dev/conda-forge/linux-64/readline-8.2-h8c095d6_2.conda + - conda: https://prefix.dev/conda-forge/linux-64/rhash-1.4.6-hb9d3cd8_1.conda + - conda: https://prefix.dev/robostack-staging/linux-64/ros-humble-action-msgs-1.2.1-np126py311hbc2a38a_13.conda + - conda: https://prefix.dev/robostack-staging/linux-64/ros-humble-action-tutorials-cpp-0.20.5-np126py311hbc2a38a_13.conda + - conda: https://prefix.dev/robostack-staging/linux-64/ros-humble-action-tutorials-interfaces-0.20.5-np126py311hbc2a38a_13.conda + - conda: https://prefix.dev/robostack-staging/linux-64/ros-humble-action-tutorials-py-0.20.5-np126py311hbc2a38a_13.conda + - conda: https://prefix.dev/robostack-staging/linux-64/ros-humble-actionlib-msgs-4.9.0-np126py311hbc2a38a_13.conda + - conda: https://prefix.dev/robostack-staging/linux-64/ros-humble-ament-cmake-1.3.12-np126py311hbc2a38a_13.conda + - conda: https://prefix.dev/robostack-staging/linux-64/ros-humble-ament-cmake-auto-1.3.12-np126py311hbc2a38a_13.conda + - conda: https://prefix.dev/robostack-staging/linux-64/ros-humble-ament-cmake-copyright-0.12.12-np126py311hbc2a38a_13.conda + - conda: https://prefix.dev/robostack-staging/linux-64/ros-humble-ament-cmake-core-1.3.12-np126py311hbc2a38a_13.conda + - conda: https://prefix.dev/robostack-staging/linux-64/ros-humble-ament-cmake-cppcheck-0.12.12-np126py311hbc2a38a_13.conda + - conda: https://prefix.dev/robostack-staging/linux-64/ros-humble-ament-cmake-cpplint-0.12.12-np126py311hbc2a38a_13.conda + - conda: https://prefix.dev/robostack-staging/linux-64/ros-humble-ament-cmake-export-definitions-1.3.12-np126py311hbc2a38a_13.conda + - conda: https://prefix.dev/robostack-staging/linux-64/ros-humble-ament-cmake-export-dependencies-1.3.12-np126py311hbc2a38a_13.conda + - conda: https://prefix.dev/robostack-staging/linux-64/ros-humble-ament-cmake-export-include-directories-1.3.12-np126py311hbc2a38a_13.conda + - conda: https://prefix.dev/robostack-staging/linux-64/ros-humble-ament-cmake-export-interfaces-1.3.12-np126py311hbc2a38a_13.conda + - conda: https://prefix.dev/robostack-staging/linux-64/ros-humble-ament-cmake-export-libraries-1.3.12-np126py311hbc2a38a_13.conda + - conda: https://prefix.dev/robostack-staging/linux-64/ros-humble-ament-cmake-export-link-flags-1.3.12-np126py311hbc2a38a_13.conda + - conda: https://prefix.dev/robostack-staging/linux-64/ros-humble-ament-cmake-export-targets-1.3.12-np126py311hbc2a38a_13.conda + - conda: https://prefix.dev/robostack-staging/linux-64/ros-humble-ament-cmake-flake8-0.12.12-np126py311hbc2a38a_13.conda + - conda: https://prefix.dev/robostack-staging/linux-64/ros-humble-ament-cmake-gen-version-h-1.3.12-np126py311hbc2a38a_13.conda + - conda: https://prefix.dev/robostack-staging/linux-64/ros-humble-ament-cmake-gmock-1.3.12-np126py311hbc2a38a_13.conda + - conda: https://prefix.dev/robostack-staging/linux-64/ros-humble-ament-cmake-gtest-1.3.12-np126py311hbc2a38a_13.conda + - conda: https://prefix.dev/robostack-staging/linux-64/ros-humble-ament-cmake-include-directories-1.3.12-np126py311hbc2a38a_13.conda + - conda: https://prefix.dev/robostack-staging/linux-64/ros-humble-ament-cmake-libraries-1.3.12-np126py311hbc2a38a_13.conda + - conda: https://prefix.dev/robostack-staging/linux-64/ros-humble-ament-cmake-lint-cmake-0.12.12-np126py311hbc2a38a_13.conda + - conda: https://prefix.dev/robostack-staging/linux-64/ros-humble-ament-cmake-pep257-0.12.12-np126py311hbc2a38a_13.conda + - conda: https://prefix.dev/robostack-staging/linux-64/ros-humble-ament-cmake-pytest-1.3.12-np126py311hbc2a38a_13.conda + - conda: https://prefix.dev/robostack-staging/linux-64/ros-humble-ament-cmake-python-1.3.12-np126py311hbc2a38a_13.conda + - conda: https://prefix.dev/robostack-staging/linux-64/ros-humble-ament-cmake-ros-0.10.0-np126py311hbc2a38a_13.conda + - conda: https://prefix.dev/robostack-staging/linux-64/ros-humble-ament-cmake-target-dependencies-1.3.12-np126py311hbc2a38a_13.conda + - conda: https://prefix.dev/robostack-staging/linux-64/ros-humble-ament-cmake-test-1.3.12-np126py311hbc2a38a_13.conda + - conda: https://prefix.dev/robostack-staging/linux-64/ros-humble-ament-cmake-uncrustify-0.12.12-np126py311hbc2a38a_13.conda + - conda: https://prefix.dev/robostack-staging/linux-64/ros-humble-ament-cmake-version-1.3.12-np126py311hbc2a38a_13.conda + - conda: https://prefix.dev/robostack-staging/linux-64/ros-humble-ament-cmake-xmllint-0.12.12-np126py311hbc2a38a_13.conda + - conda: https://prefix.dev/robostack-staging/linux-64/ros-humble-ament-copyright-0.12.12-np126py311hbc2a38a_13.conda + - conda: https://prefix.dev/robostack-staging/linux-64/ros-humble-ament-cppcheck-0.12.12-np126py311hbc2a38a_13.conda + - conda: https://prefix.dev/robostack-staging/linux-64/ros-humble-ament-cpplint-0.12.12-np126py311hbc2a38a_13.conda + - conda: https://prefix.dev/robostack-staging/linux-64/ros-humble-ament-flake8-0.12.12-np126py311hbc2a38a_13.conda + - conda: https://prefix.dev/robostack-staging/linux-64/ros-humble-ament-index-cpp-1.4.0-np126py311hbc2a38a_13.conda + - conda: https://prefix.dev/robostack-staging/linux-64/ros-humble-ament-index-python-1.4.0-np126py311hbc2a38a_13.conda + - conda: https://prefix.dev/robostack-staging/linux-64/ros-humble-ament-lint-0.12.12-np126py311hbc2a38a_13.conda + - conda: https://prefix.dev/robostack-staging/linux-64/ros-humble-ament-lint-auto-0.12.12-np126py311hbc2a38a_13.conda + - conda: https://prefix.dev/robostack-staging/linux-64/ros-humble-ament-lint-cmake-0.12.12-np126py311hbc2a38a_13.conda + - conda: https://prefix.dev/robostack-staging/linux-64/ros-humble-ament-lint-common-0.12.12-np126py311hbc2a38a_13.conda + - conda: https://prefix.dev/robostack-staging/linux-64/ros-humble-ament-package-0.14.1-np126py311hbc2a38a_13.conda + - conda: https://prefix.dev/robostack-staging/linux-64/ros-humble-ament-pep257-0.12.12-np126py311hbc2a38a_13.conda + - conda: https://prefix.dev/robostack-staging/linux-64/ros-humble-ament-uncrustify-0.12.12-np126py311hbc2a38a_13.conda + - conda: https://prefix.dev/robostack-staging/linux-64/ros-humble-ament-xmllint-0.12.12-np126py311hbc2a38a_13.conda + - conda: https://prefix.dev/robostack-staging/linux-64/ros-humble-angles-1.15.0-np126py311hbc2a38a_13.conda + - conda: https://prefix.dev/robostack-staging/linux-64/ros-humble-builtin-interfaces-1.2.1-np126py311hbc2a38a_13.conda + - conda: https://prefix.dev/robostack-staging/linux-64/ros-humble-class-loader-2.2.0-np126py311hbc2a38a_13.conda + - conda: https://prefix.dev/robostack-staging/linux-64/ros-humble-common-interfaces-4.9.0-np126py311hbc2a38a_13.conda + - conda: https://prefix.dev/robostack-staging/linux-64/ros-humble-composition-0.20.5-np126py311hbc2a38a_13.conda + - conda: https://prefix.dev/robostack-staging/linux-64/ros-humble-composition-interfaces-1.2.1-np126py311hbc2a38a_13.conda + - conda: https://prefix.dev/robostack-staging/linux-64/ros-humble-console-bridge-vendor-1.4.1-np126py311hbc2a38a_13.conda + - conda: https://prefix.dev/robostack-staging/linux-64/ros-humble-cv-bridge-3.2.1-np126py311hea4e58e_13.conda + - conda: https://prefix.dev/robostack-staging/linux-64/ros-humble-cyclonedds-0.10.5-np126py311hbc2a38a_13.conda + - conda: https://prefix.dev/robostack-staging/linux-64/ros-humble-demo-nodes-cpp-0.20.5-np126py311hbc2a38a_13.conda + - conda: https://prefix.dev/robostack-staging/linux-64/ros-humble-demo-nodes-cpp-native-0.20.5-np126py311hbc2a38a_13.conda + - conda: https://prefix.dev/robostack-staging/linux-64/ros-humble-demo-nodes-py-0.20.5-np126py311hbc2a38a_13.conda + - conda: https://prefix.dev/robostack-staging/linux-64/ros-humble-depthimage-to-laserscan-2.5.1-np126py311hea4e58e_13.conda + - conda: https://prefix.dev/robostack-staging/linux-64/ros-humble-desktop-0.10.0-np126py311hbc2a38a_13.conda + - conda: https://prefix.dev/robostack-staging/linux-64/ros-humble-diagnostic-msgs-4.9.0-np126py311hbc2a38a_13.conda + - conda: https://prefix.dev/robostack-staging/linux-64/ros-humble-domain-coordinator-0.10.0-np126py311hbc2a38a_13.conda + - conda: https://prefix.dev/robostack-staging/linux-64/ros-humble-dummy-map-server-0.20.5-np126py311hbc2a38a_13.conda + - conda: https://prefix.dev/robostack-staging/linux-64/ros-humble-dummy-robot-bringup-0.20.5-np126py311hbc2a38a_13.conda + - conda: https://prefix.dev/robostack-staging/linux-64/ros-humble-dummy-sensors-0.20.5-np126py311hbc2a38a_13.conda + - conda: https://prefix.dev/robostack-staging/linux-64/ros-humble-eigen3-cmake-module-0.1.1-np126py311hbc2a38a_13.conda + - conda: https://prefix.dev/robostack-staging/linux-64/ros-humble-example-interfaces-0.9.3-np126py311hbc2a38a_13.conda + - conda: https://prefix.dev/robostack-staging/linux-64/ros-humble-examples-rclcpp-minimal-action-client-0.15.3-np126py311hbc2a38a_13.conda + - conda: https://prefix.dev/robostack-staging/linux-64/ros-humble-examples-rclcpp-minimal-action-server-0.15.3-np126py311hbc2a38a_13.conda + - conda: https://prefix.dev/robostack-staging/linux-64/ros-humble-examples-rclcpp-minimal-client-0.15.3-np126py311hbc2a38a_13.conda + - conda: https://prefix.dev/robostack-staging/linux-64/ros-humble-examples-rclcpp-minimal-composition-0.15.3-np126py311hbc2a38a_13.conda + - conda: https://prefix.dev/robostack-staging/linux-64/ros-humble-examples-rclcpp-minimal-publisher-0.15.3-np126py311hbc2a38a_13.conda + - conda: https://prefix.dev/robostack-staging/linux-64/ros-humble-examples-rclcpp-minimal-service-0.15.3-np126py311hbc2a38a_13.conda + - conda: https://prefix.dev/robostack-staging/linux-64/ros-humble-examples-rclcpp-minimal-subscriber-0.15.3-np126py311hbc2a38a_13.conda + - conda: https://prefix.dev/robostack-staging/linux-64/ros-humble-examples-rclcpp-minimal-timer-0.15.3-np126py311hbc2a38a_13.conda + - conda: https://prefix.dev/robostack-staging/linux-64/ros-humble-examples-rclcpp-multithreaded-executor-0.15.3-np126py311hbc2a38a_13.conda + - conda: https://prefix.dev/robostack-staging/linux-64/ros-humble-examples-rclpy-executors-0.15.3-np126py311hbc2a38a_13.conda + - conda: https://prefix.dev/robostack-staging/linux-64/ros-humble-examples-rclpy-minimal-action-client-0.15.3-np126py311hbc2a38a_13.conda + - conda: https://prefix.dev/robostack-staging/linux-64/ros-humble-examples-rclpy-minimal-action-server-0.15.3-np126py311hbc2a38a_13.conda + - conda: https://prefix.dev/robostack-staging/linux-64/ros-humble-examples-rclpy-minimal-client-0.15.3-np126py311hbc2a38a_13.conda + - conda: https://prefix.dev/robostack-staging/linux-64/ros-humble-examples-rclpy-minimal-publisher-0.15.3-np126py311hbc2a38a_13.conda + - conda: https://prefix.dev/robostack-staging/linux-64/ros-humble-examples-rclpy-minimal-service-0.15.3-np126py311hbc2a38a_13.conda + - conda: https://prefix.dev/robostack-staging/linux-64/ros-humble-examples-rclpy-minimal-subscriber-0.15.3-np126py311hbc2a38a_13.conda + - conda: https://prefix.dev/robostack-staging/linux-64/ros-humble-fastcdr-1.0.24-np126py311hbc2a38a_13.conda + - conda: https://prefix.dev/robostack-staging/linux-64/ros-humble-fastrtps-2.6.10-np126py311hbc2a38a_13.conda + - conda: https://prefix.dev/robostack-staging/linux-64/ros-humble-fastrtps-cmake-module-2.2.2-np126py311hbc2a38a_13.conda + - conda: https://prefix.dev/robostack-staging/linux-64/ros-humble-foonathan-memory-vendor-1.2.0-np126py311hbc2a38a_13.conda + - conda: https://prefix.dev/robostack-staging/linux-64/ros-humble-geometry-msgs-4.9.0-np126py311hbc2a38a_13.conda + - conda: https://prefix.dev/robostack-staging/linux-64/ros-humble-geometry2-0.25.14-np126py311hbc2a38a_13.conda + - conda: https://prefix.dev/robostack-staging/linux-64/ros-humble-gmock-vendor-1.10.9006-np126py311hbc2a38a_13.conda + - conda: https://prefix.dev/robostack-staging/linux-64/ros-humble-gtest-vendor-1.10.9006-np126py311hbc2a38a_13.conda + - conda: https://prefix.dev/robostack-staging/linux-64/ros-humble-iceoryx-binding-c-2.0.5-np126py311hbc2a38a_13.conda + - conda: https://prefix.dev/robostack-staging/linux-64/ros-humble-iceoryx-hoofs-2.0.5-np126py311hbc2a38a_13.conda + - conda: https://prefix.dev/robostack-staging/linux-64/ros-humble-iceoryx-posh-2.0.5-np126py311hbc2a38a_13.conda + - conda: https://prefix.dev/robostack-staging/linux-64/ros-humble-ignition-cmake2-vendor-0.0.2-np126py311h58b36e0_13.conda + - conda: https://prefix.dev/robostack-staging/linux-64/ros-humble-ignition-math6-vendor-0.0.2-np126py311hbc2a38a_13.conda + - conda: https://prefix.dev/robostack-staging/linux-64/ros-humble-image-geometry-3.2.1-np126py311hea4e58e_13.conda + - conda: https://prefix.dev/robostack-staging/linux-64/ros-humble-image-tools-0.20.5-np126py311hea4e58e_13.conda + - conda: https://prefix.dev/robostack-staging/linux-64/ros-humble-image-transport-3.1.12-np126py311hbc2a38a_13.conda + - conda: https://prefix.dev/robostack-staging/linux-64/ros-humble-interactive-markers-2.3.2-np126py311hbc2a38a_13.conda + - conda: https://prefix.dev/robostack-staging/linux-64/ros-humble-intra-process-demo-0.20.5-np126py311hea4e58e_13.conda + - conda: https://prefix.dev/robostack-staging/linux-64/ros-humble-joy-3.3.0-np126py311hbc2a38a_13.conda + - conda: https://prefix.dev/robostack-staging/linux-64/ros-humble-kdl-parser-2.6.4-np126py311hbc2a38a_13.conda + - conda: https://prefix.dev/robostack-staging/linux-64/ros-humble-keyboard-handler-0.0.5-np126py311hbc2a38a_13.conda + - conda: https://prefix.dev/robostack-staging/linux-64/ros-humble-laser-geometry-2.4.0-np126py311hbc2a38a_13.conda + - conda: https://prefix.dev/robostack-staging/linux-64/ros-humble-launch-1.0.9-np126py311hbc2a38a_13.conda + - conda: https://prefix.dev/robostack-staging/linux-64/ros-humble-launch-ros-0.19.10-np126py311hbc2a38a_13.conda + - conda: https://prefix.dev/robostack-staging/linux-64/ros-humble-launch-testing-1.0.9-np126py311hbc2a38a_13.conda + - conda: https://prefix.dev/robostack-staging/linux-64/ros-humble-launch-testing-ament-cmake-1.0.9-np126py311hbc2a38a_13.conda + - conda: https://prefix.dev/robostack-staging/linux-64/ros-humble-launch-testing-ros-0.19.10-np126py311hbc2a38a_13.conda + - conda: https://prefix.dev/robostack-staging/linux-64/ros-humble-launch-xml-1.0.9-np126py311hbc2a38a_13.conda + - conda: https://prefix.dev/robostack-staging/linux-64/ros-humble-launch-yaml-1.0.9-np126py311hbc2a38a_13.conda + - conda: https://prefix.dev/robostack-staging/linux-64/ros-humble-libcurl-vendor-3.1.3-np126py311hbc2a38a_13.conda + - conda: https://prefix.dev/robostack-staging/linux-64/ros-humble-libstatistics-collector-1.3.4-np126py311hbc2a38a_13.conda + - conda: https://prefix.dev/robostack-staging/linux-64/ros-humble-libyaml-vendor-1.2.2-np126py311hbc2a38a_13.conda + - conda: https://prefix.dev/robostack-staging/linux-64/ros-humble-lifecycle-0.20.5-np126py311hbc2a38a_13.conda + - conda: https://prefix.dev/robostack-staging/linux-64/ros-humble-lifecycle-msgs-1.2.1-np126py311hbc2a38a_13.conda + - conda: https://prefix.dev/robostack-staging/linux-64/ros-humble-logging-demo-0.20.5-np126py311hbc2a38a_13.conda + - conda: https://prefix.dev/robostack-staging/linux-64/ros-humble-map-msgs-2.1.0-np126py311hbc2a38a_13.conda + - conda: https://prefix.dev/robostack-staging/linux-64/ros-humble-message-filters-4.3.7-np126py311hbc2a38a_13.conda + - conda: https://prefix.dev/robostack-staging/linux-64/ros-humble-nav-msgs-4.9.0-np126py311hbc2a38a_13.conda + - conda: https://prefix.dev/robostack-staging/linux-64/ros-humble-orocos-kdl-vendor-0.2.5-np126py311hbc2a38a_13.conda + - conda: https://prefix.dev/robostack-staging/linux-64/ros-humble-osrf-pycommon-2.1.6-np126py311hbc2a38a_13.conda + - conda: https://prefix.dev/robostack-staging/linux-64/ros-humble-pcl-conversions-2.4.5-np126py311hbc2a38a_13.conda + - conda: https://prefix.dev/robostack-staging/linux-64/ros-humble-pcl-msgs-1.0.0-np126py311hbc2a38a_13.conda + - conda: https://prefix.dev/robostack-staging/linux-64/ros-humble-pendulum-control-0.20.5-np126py311hbc2a38a_13.conda + - conda: https://prefix.dev/robostack-staging/linux-64/ros-humble-pendulum-msgs-0.20.5-np126py311hbc2a38a_13.conda + - conda: https://prefix.dev/robostack-staging/linux-64/ros-humble-pluginlib-5.1.0-np126py311hbc2a38a_13.conda + - conda: https://prefix.dev/robostack-staging/linux-64/ros-humble-pybind11-vendor-2.4.2-np126py311hbc2a38a_13.conda + - conda: https://prefix.dev/robostack-staging/linux-64/ros-humble-python-cmake-module-0.10.0-np126py311hbc2a38a_13.conda + - conda: https://prefix.dev/robostack-staging/linux-64/ros-humble-python-orocos-kdl-vendor-0.2.5-np126py311hbc2a38a_13.conda + - conda: https://prefix.dev/robostack-staging/linux-64/ros-humble-python-qt-binding-1.1.2-np126py311hbc2a38a_13.conda + - conda: https://prefix.dev/robostack-staging/linux-64/ros-humble-qt-dotgraph-2.2.4-np126py311hbc2a38a_13.conda + - conda: https://prefix.dev/robostack-staging/linux-64/ros-humble-qt-gui-2.2.4-np126py311hbc2a38a_13.conda + - conda: https://prefix.dev/robostack-staging/linux-64/ros-humble-qt-gui-cpp-2.2.4-np126py311hbc2a38a_13.conda + - conda: https://prefix.dev/robostack-staging/linux-64/ros-humble-qt-gui-py-common-2.2.4-np126py311hbc2a38a_13.conda + - conda: https://prefix.dev/robostack-staging/linux-64/ros-humble-quality-of-service-demo-cpp-0.20.5-np126py311hbc2a38a_13.conda + - conda: https://prefix.dev/robostack-staging/linux-64/ros-humble-quality-of-service-demo-py-0.20.5-np126py311hbc2a38a_13.conda + - conda: https://prefix.dev/robostack-staging/linux-64/ros-humble-rcl-5.3.9-np126py311hbc2a38a_13.conda + - conda: https://prefix.dev/robostack-staging/linux-64/ros-humble-rcl-action-5.3.9-np126py311hbc2a38a_13.conda + - conda: https://prefix.dev/robostack-staging/linux-64/ros-humble-rcl-interfaces-1.2.1-np126py311hbc2a38a_13.conda + - conda: https://prefix.dev/robostack-staging/linux-64/ros-humble-rcl-lifecycle-5.3.9-np126py311hbc2a38a_13.conda + - conda: https://prefix.dev/robostack-staging/linux-64/ros-humble-rcl-logging-interface-2.3.1-np126py311hbc2a38a_13.conda + - conda: https://prefix.dev/robostack-staging/linux-64/ros-humble-rcl-logging-spdlog-2.3.1-np126py311h11365e7_13.conda + - conda: https://prefix.dev/robostack-staging/linux-64/ros-humble-rcl-yaml-param-parser-5.3.9-np126py311hbc2a38a_13.conda + - conda: https://prefix.dev/robostack-staging/linux-64/ros-humble-rclcpp-16.0.13-np126py311hbc2a38a_13.conda + - conda: https://prefix.dev/robostack-staging/linux-64/ros-humble-rclcpp-action-16.0.13-np126py311hbc2a38a_13.conda + - conda: https://prefix.dev/robostack-staging/linux-64/ros-humble-rclcpp-components-16.0.13-np126py311hbc2a38a_13.conda + - conda: https://prefix.dev/robostack-staging/linux-64/ros-humble-rclcpp-lifecycle-16.0.13-np126py311hbc2a38a_13.conda + - conda: https://prefix.dev/robostack-staging/linux-64/ros-humble-rclpy-3.3.16-np126py311hbc2a38a_13.conda + - conda: https://prefix.dev/robostack-staging/linux-64/ros-humble-rcpputils-2.4.5-np126py311hbc2a38a_13.conda + - conda: https://prefix.dev/robostack-staging/linux-64/ros-humble-rcutils-5.1.6-np126py311hbc2a38a_13.conda + - conda: https://prefix.dev/robostack-staging/linux-64/ros-humble-resource-retriever-3.1.3-np126py311hbc2a38a_13.conda + - conda: https://prefix.dev/robostack-staging/linux-64/ros-humble-rmw-6.1.2-np126py311hbc2a38a_13.conda + - conda: https://prefix.dev/robostack-staging/linux-64/ros-humble-rmw-connextdds-0.11.3-np126py311hbc2a38a_13.conda + - conda: https://prefix.dev/robostack-staging/linux-64/ros-humble-rmw-connextdds-common-0.11.3-np126py311hbc2a38a_13.conda + - conda: https://prefix.dev/robostack-staging/linux-64/ros-humble-rmw-cyclonedds-cpp-1.3.4-np126py311hbc2a38a_13.conda + - conda: https://prefix.dev/robostack-staging/linux-64/ros-humble-rmw-dds-common-1.6.0-np126py311hbc2a38a_13.conda + - conda: https://prefix.dev/robostack-staging/linux-64/ros-humble-rmw-fastrtps-cpp-6.2.7-np126py311hbc2a38a_13.conda + - conda: https://prefix.dev/robostack-staging/linux-64/ros-humble-rmw-fastrtps-dynamic-cpp-6.2.7-np126py311hbc2a38a_13.conda + - conda: https://prefix.dev/robostack-staging/linux-64/ros-humble-rmw-fastrtps-shared-cpp-6.2.7-np126py311hbc2a38a_13.conda + - conda: https://prefix.dev/robostack-staging/linux-64/ros-humble-rmw-implementation-2.8.4-np126py311hbc2a38a_13.conda + - conda: https://prefix.dev/robostack-staging/linux-64/ros-humble-rmw-implementation-cmake-6.1.2-np126py311hbc2a38a_13.conda + - conda: https://prefix.dev/robostack-staging/linux-64/ros-humble-robot-state-publisher-3.0.3-np126py311hbc2a38a_13.conda + - conda: https://prefix.dev/robostack-staging/linux-64/ros-humble-ros-base-0.10.0-np126py311hbc2a38a_13.conda + - conda: https://prefix.dev/robostack-staging/linux-64/ros-humble-ros-core-0.10.0-np126py311hbc2a38a_13.conda + - conda: https://prefix.dev/robostack-staging/linux-64/ros-humble-ros-environment-3.2.2-np126py311hbc2a38a_13.conda + - conda: https://prefix.dev/robostack-staging/linux-64/ros-humble-ros-workspace-1.0.2-np126py311hbc2a38a_13.conda + - conda: https://prefix.dev/robostack-staging/linux-64/ros-humble-ros2action-0.18.12-np126py311hbc2a38a_13.conda + - conda: https://prefix.dev/robostack-staging/linux-64/ros-humble-ros2bag-0.15.14-np126py311hbc2a38a_13.conda + - conda: https://prefix.dev/robostack-staging/linux-64/ros-humble-ros2cli-0.18.12-np126py311hbc2a38a_13.conda + - conda: https://prefix.dev/robostack-staging/linux-64/ros-humble-ros2cli-common-extensions-0.1.1-np126py311hbc2a38a_13.conda + - conda: https://prefix.dev/robostack-staging/linux-64/ros-humble-ros2component-0.18.12-np126py311hbc2a38a_13.conda + - conda: https://prefix.dev/robostack-staging/linux-64/ros-humble-ros2doctor-0.18.12-np126py311hbc2a38a_13.conda + - conda: https://prefix.dev/robostack-staging/linux-64/ros-humble-ros2interface-0.18.12-np126py311hbc2a38a_13.conda + - conda: https://prefix.dev/robostack-staging/linux-64/ros-humble-ros2launch-0.19.10-np126py311hbc2a38a_13.conda + - conda: https://prefix.dev/robostack-staging/linux-64/ros-humble-ros2lifecycle-0.18.12-np126py311hbc2a38a_13.conda + - conda: https://prefix.dev/robostack-staging/linux-64/ros-humble-ros2multicast-0.18.12-np126py311hbc2a38a_13.conda + - conda: https://prefix.dev/robostack-staging/linux-64/ros-humble-ros2node-0.18.12-np126py311hbc2a38a_13.conda + - conda: https://prefix.dev/robostack-staging/linux-64/ros-humble-ros2param-0.18.12-np126py311hbc2a38a_13.conda + - conda: https://prefix.dev/robostack-staging/linux-64/ros-humble-ros2pkg-0.18.12-np126py311hbc2a38a_13.conda + - conda: https://prefix.dev/robostack-staging/linux-64/ros-humble-ros2run-0.18.12-np126py311hbc2a38a_13.conda + - conda: https://prefix.dev/robostack-staging/linux-64/ros-humble-ros2service-0.18.12-np126py311hbc2a38a_13.conda + - conda: https://prefix.dev/robostack-staging/linux-64/ros-humble-ros2topic-0.18.12-np126py311hbc2a38a_13.conda + - conda: https://prefix.dev/robostack-staging/linux-64/ros-humble-rosbag2-0.15.14-np126py311hbc2a38a_13.conda + - conda: https://prefix.dev/robostack-staging/linux-64/ros-humble-rosbag2-compression-0.15.14-np126py311hbc2a38a_13.conda + - conda: https://prefix.dev/robostack-staging/linux-64/ros-humble-rosbag2-compression-zstd-0.15.14-np126py311hbc2a38a_13.conda + - conda: https://prefix.dev/robostack-staging/linux-64/ros-humble-rosbag2-cpp-0.15.14-np126py311hbc2a38a_13.conda + - conda: https://prefix.dev/robostack-staging/linux-64/ros-humble-rosbag2-interfaces-0.15.14-np126py311hbc2a38a_13.conda + - conda: https://prefix.dev/robostack-staging/linux-64/ros-humble-rosbag2-py-0.15.14-np126py311hbc2a38a_13.conda + - conda: https://prefix.dev/robostack-staging/linux-64/ros-humble-rosbag2-storage-0.15.14-np126py311hbc2a38a_13.conda + - conda: https://prefix.dev/robostack-staging/linux-64/ros-humble-rosbag2-storage-default-plugins-0.15.14-np126py311hbc2a38a_13.conda + - conda: https://prefix.dev/robostack-staging/linux-64/ros-humble-rosbag2-transport-0.15.14-np126py311hbc2a38a_13.conda + - conda: https://prefix.dev/robostack-staging/linux-64/ros-humble-rosgraph-msgs-1.2.1-np126py311hbc2a38a_13.conda + - conda: https://prefix.dev/robostack-staging/linux-64/ros-humble-rosidl-adapter-3.1.6-np126py311hbc2a38a_13.conda + - conda: https://prefix.dev/robostack-staging/linux-64/ros-humble-rosidl-cli-3.1.6-np126py311hbc2a38a_13.conda + - conda: https://prefix.dev/robostack-staging/linux-64/ros-humble-rosidl-cmake-3.1.6-np126py311hbc2a38a_13.conda + - conda: https://prefix.dev/robostack-staging/linux-64/ros-humble-rosidl-default-generators-1.2.0-np126py311hbc2a38a_13.conda + - conda: https://prefix.dev/robostack-staging/linux-64/ros-humble-rosidl-default-runtime-1.2.0-np126py311hbc2a38a_13.conda + - conda: https://prefix.dev/robostack-staging/linux-64/ros-humble-rosidl-generator-c-3.1.6-np126py311hbc2a38a_13.conda + - conda: https://prefix.dev/robostack-staging/linux-64/ros-humble-rosidl-generator-cpp-3.1.6-np126py311hbc2a38a_13.conda + - conda: https://prefix.dev/robostack-staging/linux-64/ros-humble-rosidl-generator-py-0.14.4-np126py311hbc2a38a_13.conda + - conda: https://prefix.dev/robostack-staging/linux-64/ros-humble-rosidl-parser-3.1.6-np126py311hbc2a38a_13.conda + - conda: https://prefix.dev/robostack-staging/linux-64/ros-humble-rosidl-runtime-c-3.1.6-np126py311hbc2a38a_13.conda + - conda: https://prefix.dev/robostack-staging/linux-64/ros-humble-rosidl-runtime-cpp-3.1.6-np126py311hbc2a38a_13.conda + - conda: https://prefix.dev/robostack-staging/linux-64/ros-humble-rosidl-runtime-py-0.9.3-np126py311hbc2a38a_13.conda + - conda: https://prefix.dev/robostack-staging/linux-64/ros-humble-rosidl-typesupport-c-2.0.2-np126py311hbc2a38a_13.conda + - conda: https://prefix.dev/robostack-staging/linux-64/ros-humble-rosidl-typesupport-cpp-2.0.2-np126py311hbc2a38a_13.conda + - conda: https://prefix.dev/robostack-staging/linux-64/ros-humble-rosidl-typesupport-fastrtps-c-2.2.2-np126py311hbc2a38a_13.conda + - conda: https://prefix.dev/robostack-staging/linux-64/ros-humble-rosidl-typesupport-fastrtps-cpp-2.2.2-np126py311hbc2a38a_13.conda + - conda: https://prefix.dev/robostack-staging/linux-64/ros-humble-rosidl-typesupport-interface-3.1.6-np126py311hbc2a38a_13.conda + - conda: https://prefix.dev/robostack-staging/linux-64/ros-humble-rosidl-typesupport-introspection-c-3.1.6-np126py311hbc2a38a_13.conda + - conda: https://prefix.dev/robostack-staging/linux-64/ros-humble-rosidl-typesupport-introspection-cpp-3.1.6-np126py311hbc2a38a_13.conda + - conda: https://prefix.dev/robostack-staging/linux-64/ros-humble-rpyutils-0.2.1-np126py311hbc2a38a_13.conda + - conda: https://prefix.dev/robostack-staging/linux-64/ros-humble-rqt-action-2.0.1-np126py311hbc2a38a_13.conda + - conda: https://prefix.dev/robostack-staging/linux-64/ros-humble-rqt-bag-1.1.5-np126py311hbc2a38a_13.conda + - conda: https://prefix.dev/robostack-staging/linux-64/ros-humble-rqt-bag-plugins-1.1.5-np126py311hbc2a38a_13.conda + - conda: https://prefix.dev/robostack-staging/linux-64/ros-humble-rqt-common-plugins-1.2.0-np126py311hbc2a38a_13.conda + - conda: https://prefix.dev/robostack-staging/linux-64/ros-humble-rqt-console-2.0.3-np126py311hbc2a38a_13.conda + - conda: https://prefix.dev/robostack-staging/linux-64/ros-humble-rqt-graph-1.3.1-np126py311hbc2a38a_13.conda + - conda: https://prefix.dev/robostack-staging/linux-64/ros-humble-rqt-gui-1.1.7-np126py311hbc2a38a_13.conda + - conda: https://prefix.dev/robostack-staging/linux-64/ros-humble-rqt-gui-cpp-1.1.7-np126py311hbc2a38a_13.conda + - conda: https://prefix.dev/robostack-staging/linux-64/ros-humble-rqt-gui-py-1.1.7-np126py311hbc2a38a_13.conda + - conda: https://prefix.dev/robostack-staging/linux-64/ros-humble-rqt-image-view-1.2.0-np126py311hbc2a38a_13.conda + - conda: https://prefix.dev/robostack-staging/linux-64/ros-humble-rqt-msg-1.2.0-np126py311hbc2a38a_13.conda + - conda: https://prefix.dev/robostack-staging/linux-64/ros-humble-rqt-plot-1.1.5-np126py311hbc2a38a_13.conda + - conda: https://prefix.dev/robostack-staging/linux-64/ros-humble-rqt-publisher-1.5.0-np126py311hbc2a38a_13.conda + - conda: https://prefix.dev/robostack-staging/linux-64/ros-humble-rqt-py-common-1.1.7-np126py311hbc2a38a_13.conda + - conda: https://prefix.dev/robostack-staging/linux-64/ros-humble-rqt-py-console-1.0.2-np126py311hbc2a38a_13.conda + - conda: https://prefix.dev/robostack-staging/linux-64/ros-humble-rqt-reconfigure-1.1.2-np126py311hbc2a38a_13.conda + - conda: https://prefix.dev/robostack-staging/linux-64/ros-humble-rqt-service-caller-1.0.5-np126py311hbc2a38a_13.conda + - conda: https://prefix.dev/robostack-staging/linux-64/ros-humble-rqt-shell-1.0.2-np126py311hbc2a38a_13.conda + - conda: https://prefix.dev/robostack-staging/linux-64/ros-humble-rqt-srv-1.0.3-np126py311hbc2a38a_13.conda + - conda: https://prefix.dev/robostack-staging/linux-64/ros-humble-rqt-topic-1.5.0-np126py311hbc2a38a_13.conda + - conda: https://prefix.dev/robostack-staging/linux-64/ros-humble-rti-connext-dds-cmake-module-0.11.3-np126py311hbc2a38a_13.conda + - conda: https://prefix.dev/robostack-staging/linux-64/ros-humble-rttest-0.13.0-np126py311hbc2a38a_13.conda + - conda: https://prefix.dev/robostack-staging/linux-64/ros-humble-rviz-assimp-vendor-11.2.18-np126py311hbc2a38a_13.conda + - conda: https://prefix.dev/robostack-staging/linux-64/ros-humble-rviz-common-11.2.18-np126py311hbc2a38a_13.conda + - conda: https://prefix.dev/robostack-staging/linux-64/ros-humble-rviz-default-plugins-11.2.18-np126py311hbc2a38a_13.conda + - conda: https://prefix.dev/robostack-staging/linux-64/ros-humble-rviz-ogre-vendor-11.2.18-np126py311h0de9e34_13.conda + - conda: https://prefix.dev/robostack-staging/linux-64/ros-humble-rviz-rendering-11.2.18-np126py311hbc2a38a_13.conda + - conda: https://prefix.dev/robostack-staging/linux-64/ros-humble-rviz2-11.2.18-np126py311hbc2a38a_13.conda + - conda: https://prefix.dev/robostack-staging/linux-64/ros-humble-sdl2-vendor-3.3.0-np126py311hbc2a38a_13.conda + - conda: https://prefix.dev/robostack-staging/linux-64/ros-humble-sensor-msgs-4.9.0-np126py311hbc2a38a_13.conda + - conda: https://prefix.dev/robostack-staging/linux-64/ros-humble-sensor-msgs-py-4.9.0-np126py311hbc2a38a_13.conda + - conda: https://prefix.dev/robostack-staging/linux-64/ros-humble-shape-msgs-4.9.0-np126py311hbc2a38a_13.conda + - conda: https://prefix.dev/robostack-staging/linux-64/ros-humble-shared-queues-vendor-0.15.14-np126py311hbc2a38a_13.conda + - conda: https://prefix.dev/robostack-staging/linux-64/ros-humble-spdlog-vendor-1.3.1-np126py311h11365e7_13.conda + - conda: https://prefix.dev/robostack-staging/linux-64/ros-humble-sqlite3-vendor-0.15.14-np126py311hbc2a38a_13.conda + - conda: https://prefix.dev/robostack-staging/linux-64/ros-humble-sros2-0.10.6-np126py311hbc2a38a_13.conda + - conda: https://prefix.dev/robostack-staging/linux-64/ros-humble-sros2-cmake-0.10.6-np126py311hbc2a38a_13.conda + - conda: https://prefix.dev/robostack-staging/linux-64/ros-humble-statistics-msgs-1.2.1-np126py311hbc2a38a_13.conda + - conda: https://prefix.dev/robostack-staging/linux-64/ros-humble-std-msgs-4.9.0-np126py311hbc2a38a_13.conda + - conda: https://prefix.dev/robostack-staging/linux-64/ros-humble-std-srvs-4.9.0-np126py311hbc2a38a_13.conda + - conda: https://prefix.dev/robostack-staging/linux-64/ros-humble-stereo-msgs-4.9.0-np126py311hbc2a38a_13.conda + - conda: https://prefix.dev/robostack-staging/linux-64/ros-humble-tango-icons-vendor-0.1.1-np126py311hbc2a38a_13.conda + - conda: https://prefix.dev/robostack-staging/linux-64/ros-humble-teleop-twist-joy-2.4.7-np126py311hbc2a38a_13.conda + - conda: https://prefix.dev/robostack-staging/linux-64/ros-humble-teleop-twist-keyboard-2.4.0-np126py311hbc2a38a_13.conda + - conda: https://prefix.dev/robostack-staging/linux-64/ros-humble-tf2-0.25.14-np126py311hbc2a38a_13.conda + - conda: https://prefix.dev/robostack-staging/linux-64/ros-humble-tf2-bullet-0.25.14-np126py311hbc2a38a_13.conda + - conda: https://prefix.dev/robostack-staging/linux-64/ros-humble-tf2-eigen-0.25.14-np126py311hbc2a38a_13.conda + - conda: https://prefix.dev/robostack-staging/linux-64/ros-humble-tf2-eigen-kdl-0.25.14-np126py311hbc2a38a_13.conda + - conda: https://prefix.dev/robostack-staging/linux-64/ros-humble-tf2-geometry-msgs-0.25.14-np126py311hbc2a38a_13.conda + - conda: https://prefix.dev/robostack-staging/linux-64/ros-humble-tf2-kdl-0.25.14-np126py311hbc2a38a_13.conda + - conda: https://prefix.dev/robostack-staging/linux-64/ros-humble-tf2-msgs-0.25.14-np126py311hbc2a38a_13.conda + - conda: https://prefix.dev/robostack-staging/linux-64/ros-humble-tf2-py-0.25.14-np126py311hbc2a38a_13.conda + - conda: https://prefix.dev/robostack-staging/linux-64/ros-humble-tf2-ros-0.25.14-np126py311hbc2a38a_13.conda + - conda: https://prefix.dev/robostack-staging/linux-64/ros-humble-tf2-ros-py-0.25.14-np126py311hbc2a38a_13.conda + - conda: https://prefix.dev/robostack-staging/linux-64/ros-humble-tf2-sensor-msgs-0.25.14-np126py311hbc2a38a_13.conda + - conda: https://prefix.dev/robostack-staging/linux-64/ros-humble-tf2-tools-0.25.14-np126py311hbc2a38a_13.conda + - conda: https://prefix.dev/robostack-staging/linux-64/ros-humble-tinyxml-vendor-0.8.3-np126py311hbc2a38a_13.conda + - conda: https://prefix.dev/robostack-staging/linux-64/ros-humble-tinyxml2-vendor-0.7.6-np126py311hbc2a38a_13.conda + - conda: https://prefix.dev/robostack-staging/linux-64/ros-humble-tlsf-0.7.0-np126py311hbc2a38a_13.conda + - conda: https://prefix.dev/robostack-staging/linux-64/ros-humble-tlsf-cpp-0.13.0-np126py311hbc2a38a_13.conda + - conda: https://prefix.dev/robostack-staging/linux-64/ros-humble-topic-monitor-0.20.5-np126py311hbc2a38a_13.conda + - conda: https://prefix.dev/robostack-staging/linux-64/ros-humble-tracetools-4.1.1-np126py311hbc2a38a_13.conda + - conda: https://prefix.dev/robostack-staging/linux-64/ros-humble-trajectory-msgs-4.9.0-np126py311hbc2a38a_13.conda + - conda: https://prefix.dev/robostack-staging/linux-64/ros-humble-turtlesim-1.4.2-np126py311hbc2a38a_13.conda + - conda: https://prefix.dev/robostack-staging/linux-64/ros-humble-uncrustify-vendor-2.0.2-np126py311hbc2a38a_13.conda + - conda: https://prefix.dev/robostack-staging/linux-64/ros-humble-unique-identifier-msgs-2.2.1-np126py311hbc2a38a_13.conda + - conda: https://prefix.dev/robostack-staging/linux-64/ros-humble-urdf-2.6.1-np126py311hbc2a38a_13.conda + - conda: https://prefix.dev/robostack-staging/linux-64/ros-humble-urdf-parser-plugin-2.6.1-np126py311hbc2a38a_13.conda + - conda: https://prefix.dev/robostack-staging/linux-64/ros-humble-urdfdom-4.0.1-py311h82375c7_13.conda + - conda: https://prefix.dev/robostack-staging/linux-64/ros-humble-urdfdom-headers-1.0.6-py311h82375c7_13.conda + - conda: https://prefix.dev/robostack-staging/linux-64/ros-humble-visualization-msgs-4.9.0-np126py311hbc2a38a_13.conda + - conda: https://prefix.dev/robostack-staging/linux-64/ros-humble-yaml-cpp-vendor-8.0.2-np126py311hbc2a38a_13.conda + - conda: https://prefix.dev/robostack-staging/linux-64/ros-humble-zstd-vendor-0.15.14-np126py311hbc2a38a_13.conda + - conda: https://prefix.dev/robostack-staging/linux-64/ros2-distro-mutex-0.7.0-humble_13.conda + - conda: https://prefix.dev/conda-forge/noarch/rosdistro-1.0.1-pyhd8ed1ab_0.conda + - conda: https://prefix.dev/conda-forge/noarch/rospkg-1.6.0-pyhd8ed1ab_0.conda + - conda: https://prefix.dev/conda-forge/linux-64/sdl2-2.32.54-h3f2d84a_0.conda + - conda: https://prefix.dev/conda-forge/linux-64/sdl3-3.2.20-h68140b3_0.conda + - conda: https://prefix.dev/conda-forge/noarch/setuptools-80.9.0-pyhff2d567_0.conda + - conda: https://prefix.dev/conda-forge/linux-64/sip-6.10.0-py311hfdbb021_0.conda + - conda: https://prefix.dev/conda-forge/noarch/six-1.17.0-pyhe01879c_1.conda + - conda: https://prefix.dev/conda-forge/linux-64/snappy-1.2.2-h03e3b7b_0.conda + - conda: https://prefix.dev/conda-forge/noarch/snowballstemmer-3.0.1-pyhd8ed1ab_0.conda + - conda: https://prefix.dev/conda-forge/linux-64/spdlog-1.15.3-h6dc744f_1.conda + - conda: https://prefix.dev/conda-forge/linux-64/sqlite-3.50.4-hbc0de68_0.conda + - conda: https://prefix.dev/conda-forge/linux-64/svt-av1-3.0.2-h5888daf_0.conda + - conda: https://prefix.dev/conda-forge/linux-64/tbb-2022.2.0-hb60516a_1.conda + - conda: https://prefix.dev/conda-forge/linux-64/tbb-devel-2022.2.0-h74b38a2_1.conda + - conda: https://prefix.dev/conda-forge/linux-64/tinyxml-2.6.2-h4bd325d_2.tar.bz2 + - conda: https://prefix.dev/conda-forge/linux-64/tinyxml2-11.0.0-h3f2d84a_0.conda + - conda: https://prefix.dev/conda-forge/linux-64/tk-8.6.13-noxft_hd72426e_102.conda + - conda: https://prefix.dev/conda-forge/noarch/toml-0.10.2-pyhd8ed1ab_1.conda + - conda: https://prefix.dev/conda-forge/noarch/tomli-2.2.1-pyhe01879c_2.conda + - conda: https://prefix.dev/conda-forge/noarch/typing_extensions-4.14.1-pyhe01879c_0.conda + - conda: https://prefix.dev/conda-forge/noarch/tzdata-2025b-h78e105d_0.conda + - conda: https://prefix.dev/conda-forge/linux-64/uncrustify-0.81.0-h5888daf_0.conda + - conda: https://prefix.dev/conda-forge/linux-64/unicodedata2-16.0.0-py311h9ecbd09_0.conda + - conda: https://prefix.dev/conda-forge/linux-64/urdfdom-4.0.1-hae71d53_3.conda + - conda: https://prefix.dev/conda-forge/linux-64/urdfdom_headers-1.0.6-h924138e_2.tar.bz2 + - conda: https://prefix.dev/conda-forge/linux-64/utfcpp-4.0.6-h005c6e1_0.conda + - conda: https://prefix.dev/conda-forge/linux-64/vtk-9.4.2-he433b22_3.conda + - conda: https://prefix.dev/conda-forge/linux-64/vtk-base-9.4.2-py311hc26c8ec_1.conda + - conda: https://prefix.dev/conda-forge/linux-64/vtk-io-ffmpeg-9.4.2-h5554b43_1.conda + - conda: https://prefix.dev/conda-forge/linux-64/wayland-1.24.0-h3e06ad9_0.conda + - conda: https://prefix.dev/conda-forge/noarch/wayland-protocols-1.45-hd8ed1ab_0.conda + - conda: https://prefix.dev/conda-forge/noarch/wslink-2.4.0-pyhd8ed1ab_0.conda + - conda: https://prefix.dev/conda-forge/linux-64/x264-1!164.3095-h166bdaf_2.tar.bz2 + - conda: https://prefix.dev/conda-forge/linux-64/x265-3.5-h924138e_3.tar.bz2 + - conda: https://prefix.dev/conda-forge/linux-64/xcb-util-0.4.1-h4f16b4b_2.conda + - conda: https://prefix.dev/conda-forge/linux-64/xcb-util-cursor-0.1.5-hb9d3cd8_0.conda + - conda: https://prefix.dev/conda-forge/linux-64/xcb-util-image-0.4.0-hb711507_2.conda + - conda: https://prefix.dev/conda-forge/linux-64/xcb-util-keysyms-0.4.1-hb711507_0.conda + - conda: https://prefix.dev/conda-forge/linux-64/xcb-util-renderutil-0.3.10-hb711507_0.conda + - conda: https://prefix.dev/conda-forge/linux-64/xcb-util-wm-0.4.2-hb711507_0.conda + - conda: https://prefix.dev/conda-forge/linux-64/xkeyboard-config-2.45-hb9d3cd8_0.conda + - conda: https://prefix.dev/conda-forge/linux-64/xorg-libice-1.1.2-hb9d3cd8_0.conda + - conda: https://prefix.dev/conda-forge/linux-64/xorg-libsm-1.2.6-he73a12e_0.conda + - conda: https://prefix.dev/conda-forge/linux-64/xorg-libx11-1.8.12-h4f16b4b_0.conda + - conda: https://prefix.dev/conda-forge/linux-64/xorg-libxau-1.0.12-hb9d3cd8_0.conda + - conda: https://prefix.dev/conda-forge/linux-64/xorg-libxaw-1.0.16-hb9d3cd8_0.conda + - conda: https://prefix.dev/conda-forge/linux-64/xorg-libxcomposite-0.4.6-hb9d3cd8_2.conda + - conda: https://prefix.dev/conda-forge/linux-64/xorg-libxcursor-1.2.3-hb9d3cd8_0.conda + - conda: https://prefix.dev/conda-forge/linux-64/xorg-libxdamage-1.1.6-hb9d3cd8_0.conda + - conda: https://prefix.dev/conda-forge/linux-64/xorg-libxdmcp-1.1.5-hb9d3cd8_0.conda + - conda: https://prefix.dev/conda-forge/linux-64/xorg-libxext-1.3.6-hb9d3cd8_0.conda + - conda: https://prefix.dev/conda-forge/linux-64/xorg-libxfixes-6.0.1-hb9d3cd8_0.conda + - conda: https://prefix.dev/conda-forge/linux-64/xorg-libxi-1.8.2-hb9d3cd8_0.conda + - conda: https://prefix.dev/conda-forge/linux-64/xorg-libxinerama-1.1.5-h5888daf_1.conda + - conda: https://prefix.dev/conda-forge/linux-64/xorg-libxmu-1.2.1-hb9d3cd8_1.conda + - conda: https://prefix.dev/conda-forge/linux-64/xorg-libxpm-3.5.17-hb9d3cd8_1.conda + - conda: https://prefix.dev/conda-forge/linux-64/xorg-libxrandr-1.5.4-hb9d3cd8_0.conda + - conda: https://prefix.dev/conda-forge/linux-64/xorg-libxrender-0.9.12-hb9d3cd8_0.conda + - conda: https://prefix.dev/conda-forge/linux-64/xorg-libxscrnsaver-1.2.4-hb9d3cd8_0.conda + - conda: https://prefix.dev/conda-forge/linux-64/xorg-libxshmfence-1.3.3-hb9d3cd8_0.conda + - conda: https://prefix.dev/conda-forge/linux-64/xorg-libxt-1.3.1-hb9d3cd8_0.conda + - conda: https://prefix.dev/conda-forge/linux-64/xorg-libxtst-1.2.5-hb9d3cd8_3.conda + - conda: https://prefix.dev/conda-forge/linux-64/xorg-libxxf86vm-1.1.6-hb9d3cd8_0.conda + - conda: https://prefix.dev/conda-forge/linux-64/xorg-xorgproto-2024.1-hb9d3cd8_1.conda + - conda: https://prefix.dev/conda-forge/linux-64/yaml-0.2.5-h280c20c_3.conda + - conda: https://prefix.dev/conda-forge/linux-64/yaml-cpp-0.8.0-h3f2d84a_0.conda + - conda: https://prefix.dev/conda-forge/linux-64/yarl-1.20.1-py311h2dc5d0c_0.conda + - conda: https://prefix.dev/conda-forge/noarch/zipp-3.23.0-pyhd8ed1ab_0.conda + - conda: https://prefix.dev/conda-forge/linux-64/zlib-1.3.1-hb9d3cd8_2.conda + - conda: https://prefix.dev/conda-forge/linux-64/zstd-1.5.7-hb8e6e7a_2.conda + - conda: https://prefix.dev/conda-forge/linux-64/zziplib-0.13.69-he45264a_2.conda + - conda: src/navigator + subdir: linux-64 + - conda: src/navigator_py + subdir: linux-64 + - conda: src/talker-py + subdir: linux-64 + linux-aarch64: + - conda: https://prefix.dev/conda-forge/linux-aarch64/_openmp_mutex-4.5-2_gnu.tar.bz2 + - conda: https://prefix.dev/conda-forge/noarch/adwaita-icon-theme-48.1-unix_0.conda + - conda: https://prefix.dev/conda-forge/noarch/aiohappyeyeballs-2.6.1-pyhd8ed1ab_0.conda + - conda: https://prefix.dev/conda-forge/linux-aarch64/aiohttp-3.12.15-py311h164a683_0.conda + - conda: https://prefix.dev/conda-forge/noarch/aiosignal-1.4.0-pyhd8ed1ab_0.conda + - conda: https://prefix.dev/conda-forge/linux-aarch64/alsa-lib-1.2.14-h86ecc28_0.conda + - conda: https://prefix.dev/conda-forge/linux-aarch64/aom-3.9.1-hcccb83c_0.conda + - conda: https://prefix.dev/conda-forge/noarch/argcomplete-3.6.2-pyhd8ed1ab_0.conda + - conda: https://prefix.dev/conda-forge/linux-aarch64/assimp-5.4.3-hdc325bc_0.conda + - conda: https://prefix.dev/conda-forge/linux-aarch64/at-spi2-atk-2.38.0-h1f2db35_3.tar.bz2 + - conda: https://prefix.dev/conda-forge/linux-aarch64/at-spi2-core-2.40.3-h1f2db35_0.tar.bz2 + - conda: https://prefix.dev/conda-forge/linux-aarch64/atk-1.0-2.38.0-hedc4a1f_2.conda + - conda: https://prefix.dev/conda-forge/linux-aarch64/attr-2.5.1-h4e544f5_1.tar.bz2 + - conda: https://prefix.dev/conda-forge/noarch/attrs-25.3.0-pyh71513ae_0.conda + - conda: https://prefix.dev/conda-forge/linux-aarch64/blosc-1.21.6-hb4dfabd_1.conda + - conda: https://prefix.dev/conda-forge/linux-aarch64/brotli-1.1.0-h86ecc28_3.conda + - conda: https://prefix.dev/conda-forge/linux-aarch64/brotli-bin-1.1.0-h86ecc28_3.conda + - conda: https://prefix.dev/conda-forge/linux-aarch64/bullet-3.25-h58b41f2_4.conda + - conda: https://prefix.dev/conda-forge/linux-aarch64/bullet-cpp-3.25-py311h848c333_4.conda + - conda: https://prefix.dev/conda-forge/linux-aarch64/bzip2-1.0.8-h68df207_7.conda + - conda: https://prefix.dev/conda-forge/linux-aarch64/c-ares-1.34.5-h86ecc28_0.conda + - conda: https://prefix.dev/conda-forge/noarch/ca-certificates-2025.8.3-hbd8a1cb_0.conda + - conda: https://prefix.dev/conda-forge/linux-aarch64/cairo-1.18.4-h83712da_0.conda + - conda: https://prefix.dev/conda-forge/noarch/catkin_pkg-1.0.0-pyhd8ed1ab_1.conda + - conda: https://prefix.dev/conda-forge/linux-aarch64/cffi-1.17.1-py311h14e8bb7_0.conda + - conda: https://prefix.dev/conda-forge/linux-aarch64/cmake-4.1.0-hc9d863e_0.conda + - conda: https://prefix.dev/conda-forge/noarch/colorama-0.4.6-pyhd8ed1ab_1.conda + - conda: https://prefix.dev/conda-forge/linux-aarch64/console_bridge-1.0.2-hdd96247_1.tar.bz2 + - conda: https://prefix.dev/conda-forge/linux-aarch64/contourpy-1.3.3-py311hfca10b7_1.conda + - conda: https://prefix.dev/conda-forge/linux-aarch64/cppcheck-2.18.1-py311h8209a4f_0.conda + - conda: https://prefix.dev/conda-forge/linux-aarch64/cryptography-45.0.6-py311h2822d24_0.conda + - conda: https://prefix.dev/conda-forge/noarch/cycler-0.12.1-pyhd8ed1ab_1.conda + - conda: https://prefix.dev/conda-forge/linux-aarch64/cyrus-sasl-2.1.28-h6c5dea3_0.conda + - conda: https://prefix.dev/conda-forge/linux-aarch64/dav1d-1.2.1-h31becfc_0.conda + - conda: https://prefix.dev/conda-forge/linux-aarch64/dbus-1.16.2-heda779d_0.conda + - conda: https://prefix.dev/conda-forge/noarch/distro-1.9.0-pyhd8ed1ab_1.conda + - conda: https://prefix.dev/conda-forge/noarch/docutils-0.22-pyhd8ed1ab_0.conda + - conda: https://prefix.dev/conda-forge/linux-aarch64/double-conversion-3.3.1-h5ad3122_0.conda + - conda: https://prefix.dev/conda-forge/linux-aarch64/eigen-3.4.0-h2a328a1_0.conda + - conda: https://prefix.dev/conda-forge/noarch/empy-3.3.4-pyh9f0ad1d_1.tar.bz2 + - conda: https://prefix.dev/conda-forge/linux-aarch64/epoxy-1.5.10-h4e544f5_1.tar.bz2 + - conda: https://prefix.dev/conda-forge/noarch/exceptiongroup-1.3.0-pyhd8ed1ab_0.conda + - conda: https://prefix.dev/conda-forge/linux-aarch64/expat-2.7.1-hfae3067_0.conda + - conda: https://prefix.dev/conda-forge/linux-aarch64/ffmpeg-7.1.1-gpl_h30b7fc1_906.conda + - conda: https://prefix.dev/conda-forge/noarch/flake8-7.3.0-pyhd8ed1ab_0.conda + - conda: https://prefix.dev/conda-forge/linux-aarch64/flann-1.9.2-h8b5e525_5.conda + - conda: https://prefix.dev/conda-forge/linux-aarch64/fmt-11.2.0-h97e1849_0.conda + - conda: https://prefix.dev/conda-forge/noarch/font-ttf-dejavu-sans-mono-2.37-hab24e00_0.tar.bz2 + - conda: https://prefix.dev/conda-forge/noarch/font-ttf-inconsolata-3.000-h77eed37_0.tar.bz2 + - conda: https://prefix.dev/conda-forge/noarch/font-ttf-source-code-pro-2.038-h77eed37_0.tar.bz2 + - conda: https://prefix.dev/conda-forge/noarch/font-ttf-ubuntu-0.83-h77eed37_3.conda + - conda: https://prefix.dev/conda-forge/linux-aarch64/fontconfig-2.15.0-h8dda3cd_1.conda + - conda: https://prefix.dev/conda-forge/noarch/fonts-conda-ecosystem-1-0.tar.bz2 + - conda: https://prefix.dev/conda-forge/noarch/fonts-conda-forge-1-0.tar.bz2 + - conda: https://prefix.dev/conda-forge/linux-aarch64/fonttools-4.59.1-py311h164a683_0.conda + - conda: https://prefix.dev/conda-forge/linux-aarch64/foonathan-memory-0.7.3-h5ad3122_1.conda + - conda: https://prefix.dev/conda-forge/linux-aarch64/freeglut-3.2.2-h5eeb66e_3.conda + - conda: https://prefix.dev/conda-forge/linux-aarch64/freeimage-3.18.0-h6cb32c8_22.conda + - conda: https://prefix.dev/conda-forge/linux-aarch64/freetype-2.13.3-h8af1aa0_1.conda + - conda: https://prefix.dev/conda-forge/linux-aarch64/fribidi-1.0.10-hb9de7d4_0.tar.bz2 + - conda: https://prefix.dev/conda-forge/linux-aarch64/frozenlist-1.7.0-py311h91c1192_0.conda + - conda: https://prefix.dev/conda-forge/linux-aarch64/gdk-pixbuf-2.42.12-h90308e0_3.conda + - conda: https://prefix.dev/conda-forge/linux-aarch64/gettext-0.25.1-h5ad3122_0.conda + - conda: https://prefix.dev/conda-forge/linux-aarch64/gettext-tools-0.25.1-h5ad3122_0.conda + - conda: https://prefix.dev/conda-forge/linux-aarch64/gl2ps-1.4.2-hedfd65a_1.conda + - conda: https://prefix.dev/conda-forge/linux-aarch64/glew-2.1.0-h01db608_2.tar.bz2 + - conda: https://prefix.dev/conda-forge/linux-aarch64/glib-2.84.3-h701fa2e_0.conda + - conda: https://prefix.dev/conda-forge/linux-aarch64/glib-tools-2.84.3-hc87f4d4_0.conda + - conda: https://prefix.dev/conda-forge/linux-aarch64/gmock-1.17.0-h8af1aa0_1.conda + - conda: https://prefix.dev/conda-forge/linux-aarch64/gmp-6.3.0-h0a1ffab_2.conda + - conda: https://prefix.dev/conda-forge/linux-aarch64/graphite2-1.3.14-hfae3067_2.conda + - conda: https://prefix.dev/conda-forge/linux-aarch64/graphviz-12.2.1-h044d27a_1.conda + - conda: https://prefix.dev/conda-forge/linux-aarch64/gst-plugins-base-1.24.11-h83ffb7f_0.conda + - conda: https://prefix.dev/conda-forge/linux-aarch64/gstreamer-1.24.11-h17c303d_0.conda + - conda: https://prefix.dev/conda-forge/linux-aarch64/gtest-1.17.0-h17cf362_1.conda + - conda: https://prefix.dev/conda-forge/linux-aarch64/gtk3-3.24.43-hc7d089d_5.conda + - conda: https://prefix.dev/conda-forge/linux-aarch64/gts-0.7.6-he293c15_4.conda + - conda: https://prefix.dev/conda-forge/linux-aarch64/harfbuzz-11.4.2-he4899c9_0.conda + - conda: https://prefix.dev/conda-forge/linux-aarch64/hdf4-4.2.15-hb6ba311_7.conda + - conda: https://prefix.dev/conda-forge/linux-aarch64/hdf5-1.14.6-nompi_h587839b_103.conda + - conda: https://prefix.dev/conda-forge/linux-aarch64/hicolor-icon-theme-0.17-h8af1aa0_2.tar.bz2 + - conda: https://prefix.dev/conda-forge/linux-aarch64/icu-75.1-hf9b3779_0.conda + - conda: https://prefix.dev/conda-forge/noarch/idna-3.10-pyhd8ed1ab_1.conda + - conda: https://prefix.dev/conda-forge/linux-aarch64/imath-3.1.12-hf428078_0.conda + - conda: https://prefix.dev/conda-forge/noarch/importlib-metadata-8.7.0-pyhe01879c_1.conda + - conda: https://prefix.dev/conda-forge/noarch/importlib_resources-6.5.2-pyhd8ed1ab_0.conda + - conda: https://prefix.dev/conda-forge/noarch/iniconfig-2.0.0-pyhd8ed1ab_1.conda + - conda: https://prefix.dev/conda-forge/linux-aarch64/jasper-4.2.8-h27a9ab5_0.conda + - conda: https://prefix.dev/conda-forge/linux-aarch64/jsoncpp-1.9.6-h34915d9_1.conda + - conda: https://prefix.dev/conda-forge/linux-aarch64/jxrlib-1.1-h31becfc_3.conda + - conda: https://prefix.dev/conda-forge/linux-aarch64/keyutils-1.6.3-h86ecc28_0.conda + - conda: https://prefix.dev/conda-forge/linux-aarch64/kiwisolver-1.4.9-py311h229e7f7_0.conda + - conda: https://prefix.dev/conda-forge/linux-aarch64/krb5-1.21.3-h50a48e9_0.conda + - conda: https://prefix.dev/conda-forge/linux-aarch64/lame-3.100-h4e544f5_1003.tar.bz2 + - conda: https://prefix.dev/conda-forge/noarch/lark-parser-0.12.0-pyhd8ed1ab_1.conda + - conda: https://prefix.dev/conda-forge/linux-aarch64/lcms2-2.17-hc88f144_0.conda + - conda: https://prefix.dev/conda-forge/linux-aarch64/ld_impl_linux-aarch64-2.44-h5e2c951_1.conda + - conda: https://prefix.dev/conda-forge/linux-aarch64/lerc-4.0.0-hfdc4d58_1.conda + - conda: https://prefix.dev/conda-forge/linux-aarch64/libabseil-20250127.1-cxx17_h18dbdb1_0.conda + - conda: https://prefix.dev/conda-forge/linux-aarch64/libacl-2.3.2-h883460d_0.conda + - conda: https://prefix.dev/conda-forge/linux-aarch64/libaec-1.1.4-h1e66f74_0.conda + - conda: https://prefix.dev/conda-forge/linux-aarch64/libasprintf-0.25.1-h5e0f5ae_0.conda + - conda: https://prefix.dev/conda-forge/linux-aarch64/libasprintf-devel-0.25.1-h5e0f5ae_0.conda + - conda: https://prefix.dev/conda-forge/linux-aarch64/libass-0.17.3-h3c9f632_2.conda + - conda: https://prefix.dev/conda-forge/linux-aarch64/libavif16-1.3.0-hb72faec_0.conda + - conda: https://prefix.dev/conda-forge/linux-aarch64/libblas-3.9.0-34_h1a9f1db_openblas.conda + - conda: https://prefix.dev/conda-forge/linux-aarch64/libboost-1.86.0-h4d13611_3.conda + - conda: https://prefix.dev/conda-forge/linux-aarch64/libboost-devel-1.86.0-h37bb5a9_3.conda + - conda: https://prefix.dev/conda-forge/linux-aarch64/libboost-headers-1.86.0-h8af1aa0_3.conda + - conda: https://prefix.dev/conda-forge/linux-aarch64/libboost-python-1.86.0-py311hb9acf69_3.conda + - conda: https://prefix.dev/conda-forge/linux-aarch64/libbrotlicommon-1.1.0-h86ecc28_3.conda + - conda: https://prefix.dev/conda-forge/linux-aarch64/libbrotlidec-1.1.0-h86ecc28_3.conda + - conda: https://prefix.dev/conda-forge/linux-aarch64/libbrotlienc-1.1.0-h86ecc28_3.conda + - conda: https://prefix.dev/conda-forge/linux-aarch64/libcap-2.75-h51d75a7_0.conda + - conda: https://prefix.dev/conda-forge/linux-aarch64/libcblas-3.9.0-34_hab92f65_openblas.conda + - conda: https://prefix.dev/conda-forge/linux-aarch64/libclang-cpp20.1-20.1.8-default_hf07bfb7_0.conda + - conda: https://prefix.dev/conda-forge/linux-aarch64/libclang13-20.1.8-default_h173080d_0.conda + - conda: https://prefix.dev/conda-forge/linux-aarch64/libcups-2.3.3-h5cdc715_5.conda + - conda: https://prefix.dev/conda-forge/linux-aarch64/libcurl-8.14.1-h6702fde_0.conda + - conda: https://prefix.dev/conda-forge/linux-aarch64/libdeflate-1.24-he377734_0.conda + - conda: https://prefix.dev/conda-forge/linux-aarch64/libdrm-2.4.125-h86ecc28_0.conda + - conda: https://prefix.dev/conda-forge/linux-aarch64/libedit-3.1.20250104-pl5321h976ea20_0.conda + - conda: https://prefix.dev/conda-forge/linux-aarch64/libegl-1.7.0-hd24410f_2.conda + - conda: https://prefix.dev/conda-forge/linux-aarch64/libev-4.33-h31becfc_2.conda + - conda: https://prefix.dev/conda-forge/linux-aarch64/libevent-2.1.12-h4ba1bb4_1.conda + - conda: https://prefix.dev/conda-forge/linux-aarch64/libexpat-2.7.1-hfae3067_0.conda + - conda: https://prefix.dev/conda-forge/linux-aarch64/libffi-3.4.6-he21f813_1.conda + - conda: https://prefix.dev/conda-forge/linux-aarch64/libflac-1.4.3-h2f0025b_0.conda + - conda: https://prefix.dev/conda-forge/linux-aarch64/libfreetype-2.13.3-h8af1aa0_1.conda + - conda: https://prefix.dev/conda-forge/linux-aarch64/libfreetype6-2.13.3-he93130f_1.conda + - conda: https://prefix.dev/conda-forge/linux-aarch64/libgcc-15.1.0-he277a41_4.conda + - conda: https://prefix.dev/conda-forge/linux-aarch64/libgcc-ng-15.1.0-he9431aa_4.conda + - conda: https://prefix.dev/conda-forge/linux-aarch64/libgcrypt-lib-1.11.1-h86ecc28_0.conda + - conda: https://prefix.dev/conda-forge/linux-aarch64/libgd-2.3.3-hc8d7b1d_11.conda + - conda: https://prefix.dev/conda-forge/linux-aarch64/libgettextpo-0.25.1-h5ad3122_0.conda + - conda: https://prefix.dev/conda-forge/linux-aarch64/libgettextpo-devel-0.25.1-h5ad3122_0.conda + - conda: https://prefix.dev/conda-forge/linux-aarch64/libgfortran-15.1.0-he9431aa_4.conda + - conda: https://prefix.dev/conda-forge/linux-aarch64/libgfortran5-15.1.0-hbc25352_4.conda + - conda: https://prefix.dev/conda-forge/linux-aarch64/libgl-1.7.0-hd24410f_2.conda + - conda: https://prefix.dev/conda-forge/linux-aarch64/libgl-devel-1.7.0-hd24410f_2.conda + - conda: https://prefix.dev/conda-forge/linux-aarch64/libglib-2.84.3-h75d4a95_0.conda + - conda: https://prefix.dev/conda-forge/linux-aarch64/libglu-9.0.3-h5ad3122_1.conda + - conda: https://prefix.dev/conda-forge/linux-aarch64/libglvnd-1.7.0-hd24410f_2.conda + - conda: https://prefix.dev/conda-forge/linux-aarch64/libglx-1.7.0-hd24410f_2.conda + - conda: https://prefix.dev/conda-forge/linux-aarch64/libglx-devel-1.7.0-hd24410f_2.conda + - conda: https://prefix.dev/conda-forge/linux-aarch64/libgomp-15.1.0-he277a41_4.conda + - conda: https://prefix.dev/conda-forge/linux-aarch64/libgpg-error-1.55-h5ad3122_0.conda + - conda: https://prefix.dev/conda-forge/linux-aarch64/libhwloc-2.12.1-default_h6f258fa_1000.conda + - conda: https://prefix.dev/conda-forge/linux-aarch64/libiconv-1.18-h90929bb_2.conda + - conda: https://prefix.dev/conda-forge/linux-aarch64/libignition-cmake2-2.17.2-h0a1ffab_0.conda + - conda: https://prefix.dev/conda-forge/linux-aarch64/libignition-math6-6.15.1-py311h9dbc854_3.conda + - conda: https://prefix.dev/conda-forge/linux-aarch64/libjpeg-turbo-3.1.0-h86ecc28_0.conda + - conda: https://prefix.dev/conda-forge/linux-aarch64/liblapack-3.9.0-34_h411afd4_openblas.conda + - conda: https://prefix.dev/conda-forge/linux-aarch64/liblapacke-3.9.0-34_hc659ca5_openblas.conda + - conda: https://prefix.dev/conda-forge/linux-aarch64/libllvm20-20.1.8-h2b567e5_0.conda + - conda: https://prefix.dev/conda-forge/linux-aarch64/liblzma-5.8.1-h86ecc28_2.conda + - conda: https://prefix.dev/conda-forge/linux-aarch64/liblzma-devel-5.8.1-h86ecc28_2.conda + - conda: https://prefix.dev/conda-forge/linux-aarch64/libnetcdf-4.9.2-nompi_hb193ca5_118.conda + - conda: https://prefix.dev/conda-forge/linux-aarch64/libnghttp2-1.64.0-hc8609a4_0.conda + - conda: https://prefix.dev/conda-forge/linux-aarch64/libnsl-2.0.1-h86ecc28_1.conda + - conda: https://prefix.dev/conda-forge/linux-aarch64/libntlm-1.4-hf897c2e_1002.tar.bz2 + - conda: https://prefix.dev/conda-forge/linux-aarch64/libogg-1.3.5-h86ecc28_1.conda + - conda: https://prefix.dev/conda-forge/linux-aarch64/libopenblas-0.3.30-pthreads_h9d3fd7e_2.conda + - conda: https://prefix.dev/conda-forge/linux-aarch64/libopencv-4.11.0-qt6_py311h9691740_609.conda + - conda: https://prefix.dev/conda-forge/linux-aarch64/libopengl-1.7.0-hd24410f_2.conda + - conda: https://prefix.dev/conda-forge/linux-aarch64/libopengl-devel-1.7.0-hd24410f_2.conda + - conda: https://prefix.dev/conda-forge/linux-aarch64/libopenvino-2025.0.0-hd63d6c0_3.conda + - conda: https://prefix.dev/conda-forge/linux-aarch64/libopenvino-arm-cpu-plugin-2025.0.0-hd63d6c0_3.conda + - conda: https://prefix.dev/conda-forge/linux-aarch64/libopenvino-auto-batch-plugin-2025.0.0-hf15766e_3.conda + - conda: https://prefix.dev/conda-forge/linux-aarch64/libopenvino-auto-plugin-2025.0.0-hf15766e_3.conda + - conda: https://prefix.dev/conda-forge/linux-aarch64/libopenvino-hetero-plugin-2025.0.0-ha8e9e04_3.conda + - conda: https://prefix.dev/conda-forge/linux-aarch64/libopenvino-ir-frontend-2025.0.0-ha8e9e04_3.conda + - conda: https://prefix.dev/conda-forge/linux-aarch64/libopenvino-onnx-frontend-2025.0.0-hd8f0270_3.conda + - conda: https://prefix.dev/conda-forge/linux-aarch64/libopenvino-paddle-frontend-2025.0.0-hd8f0270_3.conda + - conda: https://prefix.dev/conda-forge/linux-aarch64/libopenvino-pytorch-frontend-2025.0.0-h5ad3122_3.conda + - conda: https://prefix.dev/conda-forge/linux-aarch64/libopenvino-tensorflow-frontend-2025.0.0-h33e842c_3.conda + - conda: https://prefix.dev/conda-forge/linux-aarch64/libopenvino-tensorflow-lite-frontend-2025.0.0-h5ad3122_3.conda + - conda: https://prefix.dev/conda-forge/linux-aarch64/libopus-1.5.2-h86ecc28_0.conda + - conda: https://prefix.dev/conda-forge/linux-aarch64/libpciaccess-0.18-h86ecc28_0.conda + - conda: https://prefix.dev/conda-forge/linux-aarch64/libpng-1.6.50-h1abf092_1.conda + - conda: https://prefix.dev/conda-forge/linux-aarch64/libpq-17.6-hb4b1422_0.conda + - conda: https://prefix.dev/conda-forge/linux-aarch64/libprotobuf-5.29.3-h9267e96_2.conda + - conda: https://prefix.dev/conda-forge/linux-aarch64/libraw-0.21.4-h74ffddf_0.conda + - conda: https://prefix.dev/conda-forge/linux-aarch64/librsvg-2.58.4-h3ac5bce_3.conda + - conda: https://prefix.dev/conda-forge/linux-aarch64/libsndfile-1.2.2-h79657aa_1.conda + - conda: https://prefix.dev/conda-forge/linux-aarch64/libsqlite-3.50.4-h022381a_0.conda + - conda: https://prefix.dev/conda-forge/linux-aarch64/libssh2-1.11.1-h18c354c_0.conda + - conda: https://prefix.dev/conda-forge/linux-aarch64/libstdcxx-15.1.0-h3f4de04_4.conda + - conda: https://prefix.dev/conda-forge/linux-aarch64/libstdcxx-ng-15.1.0-hf1166c9_4.conda + - conda: https://prefix.dev/conda-forge/linux-aarch64/libsystemd0-257.7-h2bb824b_0.conda + - conda: https://prefix.dev/conda-forge/linux-aarch64/libtheora-1.1.1-h68df207_1006.conda + - conda: https://prefix.dev/conda-forge/linux-aarch64/libtiff-4.7.0-h7a57436_6.conda + - conda: https://prefix.dev/conda-forge/linux-aarch64/libudev1-257.7-h7b9e449_0.conda + - conda: https://prefix.dev/conda-forge/linux-aarch64/libunwind-1.8.2-h9e2cd2c_0.conda + - conda: https://prefix.dev/conda-forge/linux-aarch64/liburing-2.11-h17cf362_0.conda + - conda: https://prefix.dev/conda-forge/linux-aarch64/libusb-1.0.29-h06eaf92_0.conda + - conda: https://prefix.dev/conda-forge/linux-aarch64/libuuid-2.38.1-hb4cce97_0.conda + - conda: https://prefix.dev/conda-forge/linux-aarch64/libuv-1.51.0-he30d5cf_1.conda + - conda: https://prefix.dev/conda-forge/linux-aarch64/libvorbis-1.3.7-h7ac5ae9_2.conda + - conda: https://prefix.dev/conda-forge/linux-aarch64/libvpx-1.14.1-h0a1ffab_0.conda + - conda: https://prefix.dev/conda-forge/linux-aarch64/libwebp-base-1.6.0-ha2e29f5_0.conda + - conda: https://prefix.dev/conda-forge/linux-aarch64/libxcb-1.17.0-h262b8f6_0.conda + - conda: https://prefix.dev/conda-forge/linux-aarch64/libxcrypt-4.4.36-h31becfc_1.conda + - conda: https://prefix.dev/conda-forge/linux-aarch64/libxkbcommon-1.11.0-h95ca766_0.conda + - conda: https://prefix.dev/conda-forge/linux-aarch64/libxml2-2.13.8-he58860d_1.conda + - conda: https://prefix.dev/conda-forge/linux-aarch64/libxslt-1.1.43-h4552c8e_0.conda + - conda: https://prefix.dev/conda-forge/linux-aarch64/libzip-1.11.2-h3e8f909_0.conda + - conda: https://prefix.dev/conda-forge/linux-aarch64/libzlib-1.3.1-h86ecc28_2.conda + - conda: https://prefix.dev/conda-forge/noarch/loguru-0.7.3-pyh707e725_0.conda + - conda: https://prefix.dev/conda-forge/linux-aarch64/lxml-6.0.0-py311h3bfafd0_0.conda + - conda: https://prefix.dev/conda-forge/linux-aarch64/lz4-c-1.10.0-h5ad3122_1.conda + - conda: https://prefix.dev/conda-forge/linux-aarch64/matplotlib-base-3.10.5-py311hb9c6b48_0.conda + - conda: https://prefix.dev/conda-forge/noarch/mccabe-0.7.0-pyhd8ed1ab_1.conda + - conda: https://prefix.dev/conda-forge/linux-aarch64/mpg123-1.32.9-h65af167_0.conda + - conda: https://prefix.dev/conda-forge/linux-aarch64/msgpack-python-1.1.1-py311hc07b1fb_0.conda + - conda: https://prefix.dev/conda-forge/linux-aarch64/multidict-6.6.3-py311h58d527c_0.conda + - conda: https://prefix.dev/conda-forge/noarch/munkres-1.1.4-pyhd8ed1ab_1.conda + - conda: https://prefix.dev/conda-forge/linux-aarch64/ncurses-6.5-ha32ae93_3.conda + - conda: https://prefix.dev/conda-forge/linux-aarch64/netifaces-0.11.0-py311ha879c10_3.conda + - conda: https://prefix.dev/conda-forge/linux-aarch64/nlohmann_json-3.12.0-h5ad3122_0.conda + - conda: https://prefix.dev/conda-forge/linux-aarch64/nspr-4.37-h3ad9384_0.conda + - conda: https://prefix.dev/conda-forge/linux-aarch64/nss-3.115-h85c1b32_0.conda + - conda: https://prefix.dev/conda-forge/linux-aarch64/numpy-1.26.4-py311h69ead2a_0.conda + - conda: https://prefix.dev/conda-forge/linux-aarch64/openexr-3.3.5-h1fc2f77_0.conda + - conda: https://prefix.dev/conda-forge/linux-aarch64/openh264-2.6.0-h0564a2a_0.conda + - conda: https://prefix.dev/conda-forge/linux-aarch64/openjpeg-2.5.3-h5da879a_1.conda + - conda: https://prefix.dev/conda-forge/linux-aarch64/openldap-2.6.10-h30c48ee_0.conda + - conda: https://prefix.dev/conda-forge/linux-aarch64/openssl-3.5.2-h8e36d6e_0.conda + - conda: https://prefix.dev/conda-forge/linux-aarch64/orocos-kdl-1.5.1-h5ad3122_8.conda + - conda: https://prefix.dev/conda-forge/noarch/packaging-25.0-pyh29332c3_1.conda + - conda: https://prefix.dev/conda-forge/linux-aarch64/pango-1.56.4-he55ef5b_0.conda + - conda: https://prefix.dev/conda-forge/linux-aarch64/pcl-1.15.0-h462c444_2.conda + - conda: https://prefix.dev/conda-forge/linux-aarch64/pcre-8.45-h01db608_0.tar.bz2 + - conda: https://prefix.dev/conda-forge/linux-aarch64/pcre2-10.45-hf4ec17f_0.conda + - conda: https://prefix.dev/conda-forge/noarch/pep517-0.13.0-pyhd8ed1ab_0.tar.bz2 + - conda: https://prefix.dev/conda-forge/linux-aarch64/pillow-11.3.0-py311ha4eaa5e_0.conda + - conda: https://prefix.dev/conda-forge/linux-aarch64/pixman-0.46.4-h7ac5ae9_1.conda + - conda: https://prefix.dev/conda-forge/linux-aarch64/pkg-config-0.29.2-hce167ba_1009.conda + - conda: https://prefix.dev/conda-forge/noarch/pluggy-1.6.0-pyhd8ed1ab_0.conda + - conda: https://prefix.dev/conda-forge/noarch/ply-3.11-pyhd8ed1ab_3.conda + - conda: https://prefix.dev/conda-forge/linux-aarch64/proj-9.6.2-h561be74_2.conda + - conda: https://prefix.dev/conda-forge/linux-aarch64/propcache-0.3.1-py311h58d527c_0.conda + - conda: https://prefix.dev/conda-forge/linux-aarch64/psutil-7.0.0-py311h19352d5_1.conda + - conda: https://prefix.dev/conda-forge/linux-aarch64/pthread-stubs-0.4-h86ecc28_1002.conda + - conda: https://prefix.dev/conda-forge/linux-aarch64/pugixml-1.15-h6ef32b0_0.conda + - conda: https://prefix.dev/conda-forge/linux-aarch64/pulseaudio-client-17.0-h2f84921_1.conda + - conda: https://prefix.dev/conda-forge/linux-aarch64/py-opencv-4.11.0-qt6_py311h01b6c42_609.conda + - conda: https://prefix.dev/conda-forge/noarch/pybind11-3.0.0-pyh9380348_1.conda + - conda: https://prefix.dev/conda-forge/noarch/pybind11-abi-11-hc364b38_1.conda + - conda: https://prefix.dev/conda-forge/noarch/pybind11-global-3.0.0-pyhf748d72_1.conda + - conda: https://prefix.dev/conda-forge/linux-aarch64/pybullet-3.25-py311h7b00dee_4.conda + - conda: https://prefix.dev/conda-forge/linux-aarch64/pycairo-1.28.0-py311h0c1bbf2_0.conda + - conda: https://prefix.dev/conda-forge/noarch/pycodestyle-2.14.0-pyhd8ed1ab_0.conda + - conda: https://prefix.dev/conda-forge/noarch/pycparser-2.22-pyh29332c3_1.conda + - conda: https://prefix.dev/conda-forge/noarch/pydocstyle-6.3.0-pyhd8ed1ab_1.conda + - conda: https://prefix.dev/conda-forge/linux-aarch64/pydot-4.0.1-py311hec3470c_0.conda + - conda: https://prefix.dev/conda-forge/noarch/pyflakes-3.4.0-pyhd8ed1ab_0.conda + - conda: https://prefix.dev/conda-forge/noarch/pygments-2.19.2-pyhd8ed1ab_0.conda + - conda: https://prefix.dev/conda-forge/noarch/pyparsing-3.2.3-pyhe01879c_2.conda + - conda: https://prefix.dev/conda-forge/linux-aarch64/pyqt-5.15.11-py311h70a6756_1.conda + - conda: https://prefix.dev/conda-forge/noarch/pyqt-builder-1.15.4-pyhd8ed1ab_1.conda + - conda: https://prefix.dev/conda-forge/linux-aarch64/pyqt5-sip-12.17.0-py311h89d996e_1.conda + - conda: https://prefix.dev/conda-forge/noarch/pytest-8.4.1-pyhd8ed1ab_0.conda + - conda: https://prefix.dev/conda-forge/linux-aarch64/python-3.11.13-h1683364_0_cpython.conda + - conda: https://prefix.dev/conda-forge/noarch/python-dateutil-2.9.0.post0-pyhe01879c_2.conda + - conda: https://prefix.dev/conda-forge/linux-aarch64/python-orocos-kdl-1.5.1-py311h89d996e_8.conda + - conda: https://prefix.dev/conda-forge/noarch/python_abi-3.11-8_cp311.conda + - conda: https://prefix.dev/conda-forge/linux-aarch64/pyyaml-6.0.2-py311h58d527c_2.conda + - conda: https://prefix.dev/conda-forge/linux-aarch64/qhull-2020.2-h70be974_5.conda + - conda: https://prefix.dev/conda-forge/linux-aarch64/qt-main-5.15.15-hf34aa0b_4.conda + - conda: https://prefix.dev/conda-forge/linux-aarch64/qt6-main-6.9.1-haa40e84_2.conda + - conda: https://prefix.dev/conda-forge/linux-aarch64/rav1e-0.7.1-ha3529ed_3.conda + - conda: https://prefix.dev/conda-forge/linux-aarch64/readline-8.2-h8382b9d_2.conda + - conda: https://prefix.dev/conda-forge/linux-aarch64/rhash-1.4.6-h86ecc28_1.conda + - conda: https://prefix.dev/robostack-staging/linux-aarch64/ros-humble-action-msgs-1.2.1-np126py311hbdd918e_13.conda + - conda: https://prefix.dev/robostack-staging/linux-aarch64/ros-humble-action-tutorials-cpp-0.20.5-np126py311hbdd918e_13.conda + - conda: https://prefix.dev/robostack-staging/linux-aarch64/ros-humble-action-tutorials-interfaces-0.20.5-np126py311hbdd918e_13.conda + - conda: https://prefix.dev/robostack-staging/linux-aarch64/ros-humble-action-tutorials-py-0.20.5-np126py311hbdd918e_13.conda + - conda: https://prefix.dev/robostack-staging/linux-aarch64/ros-humble-actionlib-msgs-4.9.0-np126py311hbdd918e_13.conda + - conda: https://prefix.dev/robostack-staging/linux-aarch64/ros-humble-ament-cmake-1.3.12-np126py311hbdd918e_13.conda + - conda: https://prefix.dev/robostack-staging/linux-aarch64/ros-humble-ament-cmake-auto-1.3.12-np126py311hbdd918e_13.conda + - conda: https://prefix.dev/robostack-staging/linux-aarch64/ros-humble-ament-cmake-copyright-0.12.12-np126py311hbdd918e_13.conda + - conda: https://prefix.dev/robostack-staging/linux-aarch64/ros-humble-ament-cmake-core-1.3.12-np126py311hbdd918e_13.conda + - conda: https://prefix.dev/robostack-staging/linux-aarch64/ros-humble-ament-cmake-cppcheck-0.12.12-np126py311hbdd918e_13.conda + - conda: https://prefix.dev/robostack-staging/linux-aarch64/ros-humble-ament-cmake-cpplint-0.12.12-np126py311hbdd918e_13.conda + - conda: https://prefix.dev/robostack-staging/linux-aarch64/ros-humble-ament-cmake-export-definitions-1.3.12-np126py311hbdd918e_13.conda + - conda: https://prefix.dev/robostack-staging/linux-aarch64/ros-humble-ament-cmake-export-dependencies-1.3.12-np126py311hbdd918e_13.conda + - conda: https://prefix.dev/robostack-staging/linux-aarch64/ros-humble-ament-cmake-export-include-directories-1.3.12-np126py311hbdd918e_13.conda + - conda: https://prefix.dev/robostack-staging/linux-aarch64/ros-humble-ament-cmake-export-interfaces-1.3.12-np126py311hbdd918e_13.conda + - conda: https://prefix.dev/robostack-staging/linux-aarch64/ros-humble-ament-cmake-export-libraries-1.3.12-np126py311hbdd918e_13.conda + - conda: https://prefix.dev/robostack-staging/linux-aarch64/ros-humble-ament-cmake-export-link-flags-1.3.12-np126py311hbdd918e_13.conda + - conda: https://prefix.dev/robostack-staging/linux-aarch64/ros-humble-ament-cmake-export-targets-1.3.12-np126py311hbdd918e_13.conda + - conda: https://prefix.dev/robostack-staging/linux-aarch64/ros-humble-ament-cmake-flake8-0.12.12-np126py311hbdd918e_13.conda + - conda: https://prefix.dev/robostack-staging/linux-aarch64/ros-humble-ament-cmake-gen-version-h-1.3.12-np126py311hbdd918e_13.conda + - conda: https://prefix.dev/robostack-staging/linux-aarch64/ros-humble-ament-cmake-gmock-1.3.12-np126py311hbdd918e_13.conda + - conda: https://prefix.dev/robostack-staging/linux-aarch64/ros-humble-ament-cmake-gtest-1.3.12-np126py311hbdd918e_13.conda + - conda: https://prefix.dev/robostack-staging/linux-aarch64/ros-humble-ament-cmake-include-directories-1.3.12-np126py311hbdd918e_13.conda + - conda: https://prefix.dev/robostack-staging/linux-aarch64/ros-humble-ament-cmake-libraries-1.3.12-np126py311hbdd918e_13.conda + - conda: https://prefix.dev/robostack-staging/linux-aarch64/ros-humble-ament-cmake-lint-cmake-0.12.12-np126py311hbdd918e_13.conda + - conda: https://prefix.dev/robostack-staging/linux-aarch64/ros-humble-ament-cmake-pep257-0.12.12-np126py311hbdd918e_13.conda + - conda: https://prefix.dev/robostack-staging/linux-aarch64/ros-humble-ament-cmake-pytest-1.3.12-np126py311hbdd918e_13.conda + - conda: https://prefix.dev/robostack-staging/linux-aarch64/ros-humble-ament-cmake-python-1.3.12-np126py311hbdd918e_13.conda + - conda: https://prefix.dev/robostack-staging/linux-aarch64/ros-humble-ament-cmake-ros-0.10.0-np126py311hbdd918e_13.conda + - conda: https://prefix.dev/robostack-staging/linux-aarch64/ros-humble-ament-cmake-target-dependencies-1.3.12-np126py311hbdd918e_13.conda + - conda: https://prefix.dev/robostack-staging/linux-aarch64/ros-humble-ament-cmake-test-1.3.12-np126py311hbdd918e_13.conda + - conda: https://prefix.dev/robostack-staging/linux-aarch64/ros-humble-ament-cmake-uncrustify-0.12.12-np126py311hbdd918e_13.conda + - conda: https://prefix.dev/robostack-staging/linux-aarch64/ros-humble-ament-cmake-version-1.3.12-np126py311hbdd918e_13.conda + - conda: https://prefix.dev/robostack-staging/linux-aarch64/ros-humble-ament-cmake-xmllint-0.12.12-np126py311hbdd918e_13.conda + - conda: https://prefix.dev/robostack-staging/linux-aarch64/ros-humble-ament-copyright-0.12.12-np126py311hbdd918e_13.conda + - conda: https://prefix.dev/robostack-staging/linux-aarch64/ros-humble-ament-cppcheck-0.12.12-np126py311hbdd918e_13.conda + - conda: https://prefix.dev/robostack-staging/linux-aarch64/ros-humble-ament-cpplint-0.12.12-np126py311hbdd918e_13.conda + - conda: https://prefix.dev/robostack-staging/linux-aarch64/ros-humble-ament-flake8-0.12.12-np126py311hbdd918e_13.conda + - conda: https://prefix.dev/robostack-staging/linux-aarch64/ros-humble-ament-index-cpp-1.4.0-np126py311hbdd918e_13.conda + - conda: https://prefix.dev/robostack-staging/linux-aarch64/ros-humble-ament-index-python-1.4.0-np126py311hbdd918e_13.conda + - conda: https://prefix.dev/robostack-staging/linux-aarch64/ros-humble-ament-lint-0.12.12-np126py311hbdd918e_13.conda + - conda: https://prefix.dev/robostack-staging/linux-aarch64/ros-humble-ament-lint-auto-0.12.12-np126py311hbdd918e_13.conda + - conda: https://prefix.dev/robostack-staging/linux-aarch64/ros-humble-ament-lint-cmake-0.12.12-np126py311hbdd918e_13.conda + - conda: https://prefix.dev/robostack-staging/linux-aarch64/ros-humble-ament-lint-common-0.12.12-np126py311hbdd918e_13.conda + - conda: https://prefix.dev/robostack-staging/linux-aarch64/ros-humble-ament-package-0.14.1-np126py311hbdd918e_13.conda + - conda: https://prefix.dev/robostack-staging/linux-aarch64/ros-humble-ament-pep257-0.12.12-np126py311hbdd918e_13.conda + - conda: https://prefix.dev/robostack-staging/linux-aarch64/ros-humble-ament-uncrustify-0.12.12-np126py311hbdd918e_13.conda + - conda: https://prefix.dev/robostack-staging/linux-aarch64/ros-humble-ament-xmllint-0.12.12-np126py311hbdd918e_13.conda + - conda: https://prefix.dev/robostack-staging/linux-aarch64/ros-humble-angles-1.15.0-np126py311hbdd918e_13.conda + - conda: https://prefix.dev/robostack-staging/linux-aarch64/ros-humble-builtin-interfaces-1.2.1-np126py311hbdd918e_13.conda + - conda: https://prefix.dev/robostack-staging/linux-aarch64/ros-humble-class-loader-2.2.0-np126py311hbdd918e_13.conda + - conda: https://prefix.dev/robostack-staging/linux-aarch64/ros-humble-common-interfaces-4.9.0-np126py311hbdd918e_13.conda + - conda: https://prefix.dev/robostack-staging/linux-aarch64/ros-humble-composition-0.20.5-np126py311hbdd918e_13.conda + - conda: https://prefix.dev/robostack-staging/linux-aarch64/ros-humble-composition-interfaces-1.2.1-np126py311hbdd918e_13.conda + - conda: https://prefix.dev/robostack-staging/linux-aarch64/ros-humble-console-bridge-vendor-1.4.1-np126py311hbdd918e_13.conda + - conda: https://prefix.dev/robostack-staging/linux-aarch64/ros-humble-cv-bridge-3.2.1-np126py311hcce1eb7_13.conda + - conda: https://prefix.dev/robostack-staging/linux-aarch64/ros-humble-cyclonedds-0.10.5-np126py311hbdd918e_13.conda + - conda: https://prefix.dev/robostack-staging/linux-aarch64/ros-humble-demo-nodes-cpp-0.20.5-np126py311hbdd918e_13.conda + - conda: https://prefix.dev/robostack-staging/linux-aarch64/ros-humble-demo-nodes-cpp-native-0.20.5-np126py311hbdd918e_13.conda + - conda: https://prefix.dev/robostack-staging/linux-aarch64/ros-humble-demo-nodes-py-0.20.5-np126py311hbdd918e_13.conda + - conda: https://prefix.dev/robostack-staging/linux-aarch64/ros-humble-depthimage-to-laserscan-2.5.1-np126py311hcce1eb7_13.conda + - conda: https://prefix.dev/robostack-staging/linux-aarch64/ros-humble-desktop-0.10.0-np126py311hbdd918e_13.conda + - conda: https://prefix.dev/robostack-staging/linux-aarch64/ros-humble-diagnostic-msgs-4.9.0-np126py311hbdd918e_13.conda + - conda: https://prefix.dev/robostack-staging/linux-aarch64/ros-humble-domain-coordinator-0.10.0-np126py311hbdd918e_13.conda + - conda: https://prefix.dev/robostack-staging/linux-aarch64/ros-humble-dummy-map-server-0.20.5-np126py311hbdd918e_13.conda + - conda: https://prefix.dev/robostack-staging/linux-aarch64/ros-humble-dummy-robot-bringup-0.20.5-np126py311hbdd918e_13.conda + - conda: https://prefix.dev/robostack-staging/linux-aarch64/ros-humble-dummy-sensors-0.20.5-np126py311hbdd918e_13.conda + - conda: https://prefix.dev/robostack-staging/linux-aarch64/ros-humble-eigen3-cmake-module-0.1.1-np126py311hbdd918e_13.conda + - conda: https://prefix.dev/robostack-staging/linux-aarch64/ros-humble-example-interfaces-0.9.3-np126py311hbdd918e_13.conda + - conda: https://prefix.dev/robostack-staging/linux-aarch64/ros-humble-examples-rclcpp-minimal-action-client-0.15.3-np126py311hbdd918e_13.conda + - conda: https://prefix.dev/robostack-staging/linux-aarch64/ros-humble-examples-rclcpp-minimal-action-server-0.15.3-np126py311hbdd918e_13.conda + - conda: https://prefix.dev/robostack-staging/linux-aarch64/ros-humble-examples-rclcpp-minimal-client-0.15.3-np126py311hbdd918e_13.conda + - conda: https://prefix.dev/robostack-staging/linux-aarch64/ros-humble-examples-rclcpp-minimal-composition-0.15.3-np126py311hbdd918e_13.conda + - conda: https://prefix.dev/robostack-staging/linux-aarch64/ros-humble-examples-rclcpp-minimal-publisher-0.15.3-np126py311hbdd918e_13.conda + - conda: https://prefix.dev/robostack-staging/linux-aarch64/ros-humble-examples-rclcpp-minimal-service-0.15.3-np126py311hbdd918e_13.conda + - conda: https://prefix.dev/robostack-staging/linux-aarch64/ros-humble-examples-rclcpp-minimal-subscriber-0.15.3-np126py311hbdd918e_13.conda + - conda: https://prefix.dev/robostack-staging/linux-aarch64/ros-humble-examples-rclcpp-minimal-timer-0.15.3-np126py311hbdd918e_13.conda + - conda: https://prefix.dev/robostack-staging/linux-aarch64/ros-humble-examples-rclcpp-multithreaded-executor-0.15.3-np126py311hbdd918e_13.conda + - conda: https://prefix.dev/robostack-staging/linux-aarch64/ros-humble-examples-rclpy-executors-0.15.3-np126py311hbdd918e_13.conda + - conda: https://prefix.dev/robostack-staging/linux-aarch64/ros-humble-examples-rclpy-minimal-action-client-0.15.3-np126py311hbdd918e_13.conda + - conda: https://prefix.dev/robostack-staging/linux-aarch64/ros-humble-examples-rclpy-minimal-action-server-0.15.3-np126py311hbdd918e_13.conda + - conda: https://prefix.dev/robostack-staging/linux-aarch64/ros-humble-examples-rclpy-minimal-client-0.15.3-np126py311hbdd918e_13.conda + - conda: https://prefix.dev/robostack-staging/linux-aarch64/ros-humble-examples-rclpy-minimal-publisher-0.15.3-np126py311hbdd918e_13.conda + - conda: https://prefix.dev/robostack-staging/linux-aarch64/ros-humble-examples-rclpy-minimal-service-0.15.3-np126py311hbdd918e_13.conda + - conda: https://prefix.dev/robostack-staging/linux-aarch64/ros-humble-examples-rclpy-minimal-subscriber-0.15.3-np126py311hbdd918e_13.conda + - conda: https://prefix.dev/robostack-staging/linux-aarch64/ros-humble-fastcdr-1.0.24-np126py311hbdd918e_13.conda + - conda: https://prefix.dev/robostack-staging/linux-aarch64/ros-humble-fastrtps-2.6.10-np126py311hbdd918e_13.conda + - conda: https://prefix.dev/robostack-staging/linux-aarch64/ros-humble-fastrtps-cmake-module-2.2.2-np126py311hbdd918e_13.conda + - conda: https://prefix.dev/robostack-staging/linux-aarch64/ros-humble-foonathan-memory-vendor-1.2.0-np126py311hbdd918e_13.conda + - conda: https://prefix.dev/robostack-staging/linux-aarch64/ros-humble-geometry-msgs-4.9.0-np126py311hbdd918e_13.conda + - conda: https://prefix.dev/robostack-staging/linux-aarch64/ros-humble-geometry2-0.25.14-np126py311hbdd918e_13.conda + - conda: https://prefix.dev/robostack-staging/linux-aarch64/ros-humble-gmock-vendor-1.10.9006-np126py311hbdd918e_13.conda + - conda: https://prefix.dev/robostack-staging/linux-aarch64/ros-humble-gtest-vendor-1.10.9006-np126py311hbdd918e_13.conda + - conda: https://prefix.dev/robostack-staging/linux-aarch64/ros-humble-iceoryx-binding-c-2.0.5-np126py311hbdd918e_13.conda + - conda: https://prefix.dev/robostack-staging/linux-aarch64/ros-humble-iceoryx-hoofs-2.0.5-np126py311hbdd918e_13.conda + - conda: https://prefix.dev/robostack-staging/linux-aarch64/ros-humble-iceoryx-posh-2.0.5-np126py311hbdd918e_13.conda + - conda: https://prefix.dev/robostack-staging/linux-aarch64/ros-humble-ignition-cmake2-vendor-0.0.2-np126py311hfe9da55_13.conda + - conda: https://prefix.dev/robostack-staging/linux-aarch64/ros-humble-ignition-math6-vendor-0.0.2-np126py311hbdd918e_13.conda + - conda: https://prefix.dev/robostack-staging/linux-aarch64/ros-humble-image-geometry-3.2.1-np126py311hcce1eb7_13.conda + - conda: https://prefix.dev/robostack-staging/linux-aarch64/ros-humble-image-tools-0.20.5-np126py311hcce1eb7_13.conda + - conda: https://prefix.dev/robostack-staging/linux-aarch64/ros-humble-image-transport-3.1.12-np126py311hbdd918e_13.conda + - conda: https://prefix.dev/robostack-staging/linux-aarch64/ros-humble-interactive-markers-2.3.2-np126py311hbdd918e_13.conda + - conda: https://prefix.dev/robostack-staging/linux-aarch64/ros-humble-intra-process-demo-0.20.5-np126py311hcce1eb7_13.conda + - conda: https://prefix.dev/robostack-staging/linux-aarch64/ros-humble-joy-3.3.0-np126py311hbdd918e_13.conda + - conda: https://prefix.dev/robostack-staging/linux-aarch64/ros-humble-kdl-parser-2.6.4-np126py311hbdd918e_13.conda + - conda: https://prefix.dev/robostack-staging/linux-aarch64/ros-humble-keyboard-handler-0.0.5-np126py311hbdd918e_13.conda + - conda: https://prefix.dev/robostack-staging/linux-aarch64/ros-humble-laser-geometry-2.4.0-np126py311hbdd918e_13.conda + - conda: https://prefix.dev/robostack-staging/linux-aarch64/ros-humble-launch-1.0.9-np126py311hbdd918e_13.conda + - conda: https://prefix.dev/robostack-staging/linux-aarch64/ros-humble-launch-ros-0.19.10-np126py311hbdd918e_13.conda + - conda: https://prefix.dev/robostack-staging/linux-aarch64/ros-humble-launch-testing-1.0.9-np126py311hbdd918e_13.conda + - conda: https://prefix.dev/robostack-staging/linux-aarch64/ros-humble-launch-testing-ament-cmake-1.0.9-np126py311hbdd918e_13.conda + - conda: https://prefix.dev/robostack-staging/linux-aarch64/ros-humble-launch-testing-ros-0.19.10-np126py311hbdd918e_13.conda + - conda: https://prefix.dev/robostack-staging/linux-aarch64/ros-humble-launch-xml-1.0.9-np126py311hbdd918e_13.conda + - conda: https://prefix.dev/robostack-staging/linux-aarch64/ros-humble-launch-yaml-1.0.9-np126py311hbdd918e_13.conda + - conda: https://prefix.dev/robostack-staging/linux-aarch64/ros-humble-libcurl-vendor-3.1.3-np126py311hbdd918e_13.conda + - conda: https://prefix.dev/robostack-staging/linux-aarch64/ros-humble-libstatistics-collector-1.3.4-np126py311hbdd918e_13.conda + - conda: https://prefix.dev/robostack-staging/linux-aarch64/ros-humble-libyaml-vendor-1.2.2-np126py311hbdd918e_13.conda + - conda: https://prefix.dev/robostack-staging/linux-aarch64/ros-humble-lifecycle-0.20.5-np126py311hbdd918e_13.conda + - conda: https://prefix.dev/robostack-staging/linux-aarch64/ros-humble-lifecycle-msgs-1.2.1-np126py311hbdd918e_13.conda + - conda: https://prefix.dev/robostack-staging/linux-aarch64/ros-humble-logging-demo-0.20.5-np126py311hbdd918e_13.conda + - conda: https://prefix.dev/robostack-staging/linux-aarch64/ros-humble-map-msgs-2.1.0-np126py311hbdd918e_13.conda + - conda: https://prefix.dev/robostack-staging/linux-aarch64/ros-humble-message-filters-4.3.7-np126py311hbdd918e_13.conda + - conda: https://prefix.dev/robostack-staging/linux-aarch64/ros-humble-nav-msgs-4.9.0-np126py311hbdd918e_13.conda + - conda: https://prefix.dev/robostack-staging/linux-aarch64/ros-humble-orocos-kdl-vendor-0.2.5-np126py311hbdd918e_13.conda + - conda: https://prefix.dev/robostack-staging/linux-aarch64/ros-humble-osrf-pycommon-2.1.6-np126py311hbdd918e_13.conda + - conda: https://prefix.dev/robostack-staging/linux-aarch64/ros-humble-pcl-conversions-2.4.5-np126py311hbdd918e_13.conda + - conda: https://prefix.dev/robostack-staging/linux-aarch64/ros-humble-pcl-msgs-1.0.0-np126py311hbdd918e_13.conda + - conda: https://prefix.dev/robostack-staging/linux-aarch64/ros-humble-pendulum-control-0.20.5-np126py311hbdd918e_13.conda + - conda: https://prefix.dev/robostack-staging/linux-aarch64/ros-humble-pendulum-msgs-0.20.5-np126py311hbdd918e_13.conda + - conda: https://prefix.dev/robostack-staging/linux-aarch64/ros-humble-pluginlib-5.1.0-np126py311hbdd918e_13.conda + - conda: https://prefix.dev/robostack-staging/linux-aarch64/ros-humble-pybind11-vendor-2.4.2-np126py311hbdd918e_13.conda + - conda: https://prefix.dev/robostack-staging/linux-aarch64/ros-humble-python-cmake-module-0.10.0-np126py311hbdd918e_13.conda + - conda: https://prefix.dev/robostack-staging/linux-aarch64/ros-humble-python-orocos-kdl-vendor-0.2.5-np126py311hbdd918e_13.conda + - conda: https://prefix.dev/robostack-staging/linux-aarch64/ros-humble-python-qt-binding-1.1.2-np126py311hbdd918e_13.conda + - conda: https://prefix.dev/robostack-staging/linux-aarch64/ros-humble-qt-dotgraph-2.2.4-np126py311hbdd918e_13.conda + - conda: https://prefix.dev/robostack-staging/linux-aarch64/ros-humble-qt-gui-2.2.4-np126py311hbdd918e_13.conda + - conda: https://prefix.dev/robostack-staging/linux-aarch64/ros-humble-qt-gui-cpp-2.2.4-np126py311hbdd918e_13.conda + - conda: https://prefix.dev/robostack-staging/linux-aarch64/ros-humble-qt-gui-py-common-2.2.4-np126py311hbdd918e_13.conda + - conda: https://prefix.dev/robostack-staging/linux-aarch64/ros-humble-quality-of-service-demo-cpp-0.20.5-np126py311hbdd918e_13.conda + - conda: https://prefix.dev/robostack-staging/linux-aarch64/ros-humble-quality-of-service-demo-py-0.20.5-np126py311hbdd918e_13.conda + - conda: https://prefix.dev/robostack-staging/linux-aarch64/ros-humble-rcl-5.3.9-np126py311hbdd918e_13.conda + - conda: https://prefix.dev/robostack-staging/linux-aarch64/ros-humble-rcl-action-5.3.9-np126py311hbdd918e_13.conda + - conda: https://prefix.dev/robostack-staging/linux-aarch64/ros-humble-rcl-interfaces-1.2.1-np126py311hbdd918e_13.conda + - conda: https://prefix.dev/robostack-staging/linux-aarch64/ros-humble-rcl-lifecycle-5.3.9-np126py311hbdd918e_13.conda + - conda: https://prefix.dev/robostack-staging/linux-aarch64/ros-humble-rcl-logging-interface-2.3.1-np126py311hbdd918e_13.conda + - conda: https://prefix.dev/robostack-staging/linux-aarch64/ros-humble-rcl-logging-spdlog-2.3.1-np126py311h5f8052a_13.conda + - conda: https://prefix.dev/robostack-staging/linux-aarch64/ros-humble-rcl-yaml-param-parser-5.3.9-np126py311hbdd918e_13.conda + - conda: https://prefix.dev/robostack-staging/linux-aarch64/ros-humble-rclcpp-16.0.13-np126py311hbdd918e_13.conda + - conda: https://prefix.dev/robostack-staging/linux-aarch64/ros-humble-rclcpp-action-16.0.13-np126py311hbdd918e_13.conda + - conda: https://prefix.dev/robostack-staging/linux-aarch64/ros-humble-rclcpp-components-16.0.13-np126py311hbdd918e_13.conda + - conda: https://prefix.dev/robostack-staging/linux-aarch64/ros-humble-rclcpp-lifecycle-16.0.13-np126py311hbdd918e_13.conda + - conda: https://prefix.dev/robostack-staging/linux-aarch64/ros-humble-rclpy-3.3.16-np126py311hbdd918e_13.conda + - conda: https://prefix.dev/robostack-staging/linux-aarch64/ros-humble-rcpputils-2.4.5-np126py311hbdd918e_13.conda + - conda: https://prefix.dev/robostack-staging/linux-aarch64/ros-humble-rcutils-5.1.6-np126py311hbdd918e_13.conda + - conda: https://prefix.dev/robostack-staging/linux-aarch64/ros-humble-resource-retriever-3.1.3-np126py311hbdd918e_13.conda + - conda: https://prefix.dev/robostack-staging/linux-aarch64/ros-humble-rmw-6.1.2-np126py311hbdd918e_13.conda + - conda: https://prefix.dev/robostack-staging/linux-aarch64/ros-humble-rmw-connextdds-0.11.3-np126py311hbdd918e_13.conda + - conda: https://prefix.dev/robostack-staging/linux-aarch64/ros-humble-rmw-connextdds-common-0.11.3-np126py311hbdd918e_13.conda + - conda: https://prefix.dev/robostack-staging/linux-aarch64/ros-humble-rmw-cyclonedds-cpp-1.3.4-np126py311hbdd918e_13.conda + - conda: https://prefix.dev/robostack-staging/linux-aarch64/ros-humble-rmw-dds-common-1.6.0-np126py311hbdd918e_13.conda + - conda: https://prefix.dev/robostack-staging/linux-aarch64/ros-humble-rmw-fastrtps-cpp-6.2.7-np126py311hbdd918e_13.conda + - conda: https://prefix.dev/robostack-staging/linux-aarch64/ros-humble-rmw-fastrtps-dynamic-cpp-6.2.7-np126py311hbdd918e_13.conda + - conda: https://prefix.dev/robostack-staging/linux-aarch64/ros-humble-rmw-fastrtps-shared-cpp-6.2.7-np126py311hbdd918e_13.conda + - conda: https://prefix.dev/robostack-staging/linux-aarch64/ros-humble-rmw-implementation-2.8.4-np126py311hbdd918e_13.conda + - conda: https://prefix.dev/robostack-staging/linux-aarch64/ros-humble-rmw-implementation-cmake-6.1.2-np126py311hbdd918e_13.conda + - conda: https://prefix.dev/robostack-staging/linux-aarch64/ros-humble-robot-state-publisher-3.0.3-np126py311hbdd918e_13.conda + - conda: https://prefix.dev/robostack-staging/linux-aarch64/ros-humble-ros-base-0.10.0-np126py311hbdd918e_13.conda + - conda: https://prefix.dev/robostack-staging/linux-aarch64/ros-humble-ros-core-0.10.0-np126py311hbdd918e_13.conda + - conda: https://prefix.dev/robostack-staging/linux-aarch64/ros-humble-ros-environment-3.2.2-np126py311hbdd918e_13.conda + - conda: https://prefix.dev/robostack-staging/linux-aarch64/ros-humble-ros-workspace-1.0.2-np126py311hbdd918e_13.conda + - conda: https://prefix.dev/robostack-staging/linux-aarch64/ros-humble-ros2action-0.18.12-np126py311hbdd918e_13.conda + - conda: https://prefix.dev/robostack-staging/linux-aarch64/ros-humble-ros2bag-0.15.14-np126py311hbdd918e_13.conda + - conda: https://prefix.dev/robostack-staging/linux-aarch64/ros-humble-ros2cli-0.18.12-np126py311hbdd918e_13.conda + - conda: https://prefix.dev/robostack-staging/linux-aarch64/ros-humble-ros2cli-common-extensions-0.1.1-np126py311hbdd918e_13.conda + - conda: https://prefix.dev/robostack-staging/linux-aarch64/ros-humble-ros2component-0.18.12-np126py311hbdd918e_13.conda + - conda: https://prefix.dev/robostack-staging/linux-aarch64/ros-humble-ros2doctor-0.18.12-np126py311hbdd918e_13.conda + - conda: https://prefix.dev/robostack-staging/linux-aarch64/ros-humble-ros2interface-0.18.12-np126py311hbdd918e_13.conda + - conda: https://prefix.dev/robostack-staging/linux-aarch64/ros-humble-ros2launch-0.19.10-np126py311hbdd918e_13.conda + - conda: https://prefix.dev/robostack-staging/linux-aarch64/ros-humble-ros2lifecycle-0.18.12-np126py311hbdd918e_13.conda + - conda: https://prefix.dev/robostack-staging/linux-aarch64/ros-humble-ros2multicast-0.18.12-np126py311hbdd918e_13.conda + - conda: https://prefix.dev/robostack-staging/linux-aarch64/ros-humble-ros2node-0.18.12-np126py311hbdd918e_13.conda + - conda: https://prefix.dev/robostack-staging/linux-aarch64/ros-humble-ros2param-0.18.12-np126py311hbdd918e_13.conda + - conda: https://prefix.dev/robostack-staging/linux-aarch64/ros-humble-ros2pkg-0.18.12-np126py311hbdd918e_13.conda + - conda: https://prefix.dev/robostack-staging/linux-aarch64/ros-humble-ros2run-0.18.12-np126py311hbdd918e_13.conda + - conda: https://prefix.dev/robostack-staging/linux-aarch64/ros-humble-ros2service-0.18.12-np126py311hbdd918e_13.conda + - conda: https://prefix.dev/robostack-staging/linux-aarch64/ros-humble-ros2topic-0.18.12-np126py311hbdd918e_13.conda + - conda: https://prefix.dev/robostack-staging/linux-aarch64/ros-humble-rosbag2-0.15.14-np126py311hbdd918e_13.conda + - conda: https://prefix.dev/robostack-staging/linux-aarch64/ros-humble-rosbag2-compression-0.15.14-np126py311hbdd918e_13.conda + - conda: https://prefix.dev/robostack-staging/linux-aarch64/ros-humble-rosbag2-compression-zstd-0.15.14-np126py311hbdd918e_13.conda + - conda: https://prefix.dev/robostack-staging/linux-aarch64/ros-humble-rosbag2-cpp-0.15.14-np126py311hbdd918e_13.conda + - conda: https://prefix.dev/robostack-staging/linux-aarch64/ros-humble-rosbag2-interfaces-0.15.14-np126py311hbdd918e_13.conda + - conda: https://prefix.dev/robostack-staging/linux-aarch64/ros-humble-rosbag2-py-0.15.14-np126py311hbdd918e_13.conda + - conda: https://prefix.dev/robostack-staging/linux-aarch64/ros-humble-rosbag2-storage-0.15.14-np126py311hbdd918e_13.conda + - conda: https://prefix.dev/robostack-staging/linux-aarch64/ros-humble-rosbag2-storage-default-plugins-0.15.14-np126py311hbdd918e_13.conda + - conda: https://prefix.dev/robostack-staging/linux-aarch64/ros-humble-rosbag2-transport-0.15.14-np126py311hbdd918e_13.conda + - conda: https://prefix.dev/robostack-staging/linux-aarch64/ros-humble-rosgraph-msgs-1.2.1-np126py311hbdd918e_13.conda + - conda: https://prefix.dev/robostack-staging/linux-aarch64/ros-humble-rosidl-adapter-3.1.6-np126py311hbdd918e_13.conda + - conda: https://prefix.dev/robostack-staging/linux-aarch64/ros-humble-rosidl-cli-3.1.6-np126py311hbdd918e_13.conda + - conda: https://prefix.dev/robostack-staging/linux-aarch64/ros-humble-rosidl-cmake-3.1.6-np126py311hbdd918e_13.conda + - conda: https://prefix.dev/robostack-staging/linux-aarch64/ros-humble-rosidl-default-generators-1.2.0-np126py311hbdd918e_13.conda + - conda: https://prefix.dev/robostack-staging/linux-aarch64/ros-humble-rosidl-default-runtime-1.2.0-np126py311hbdd918e_13.conda + - conda: https://prefix.dev/robostack-staging/linux-aarch64/ros-humble-rosidl-generator-c-3.1.6-np126py311hbdd918e_13.conda + - conda: https://prefix.dev/robostack-staging/linux-aarch64/ros-humble-rosidl-generator-cpp-3.1.6-np126py311hbdd918e_13.conda + - conda: https://prefix.dev/robostack-staging/linux-aarch64/ros-humble-rosidl-generator-py-0.14.4-np126py311hbdd918e_13.conda + - conda: https://prefix.dev/robostack-staging/linux-aarch64/ros-humble-rosidl-parser-3.1.6-np126py311hbdd918e_13.conda + - conda: https://prefix.dev/robostack-staging/linux-aarch64/ros-humble-rosidl-runtime-c-3.1.6-np126py311hbdd918e_13.conda + - conda: https://prefix.dev/robostack-staging/linux-aarch64/ros-humble-rosidl-runtime-cpp-3.1.6-np126py311hbdd918e_13.conda + - conda: https://prefix.dev/robostack-staging/linux-aarch64/ros-humble-rosidl-runtime-py-0.9.3-np126py311hbdd918e_13.conda + - conda: https://prefix.dev/robostack-staging/linux-aarch64/ros-humble-rosidl-typesupport-c-2.0.2-np126py311hbdd918e_13.conda + - conda: https://prefix.dev/robostack-staging/linux-aarch64/ros-humble-rosidl-typesupport-cpp-2.0.2-np126py311hbdd918e_13.conda + - conda: https://prefix.dev/robostack-staging/linux-aarch64/ros-humble-rosidl-typesupport-fastrtps-c-2.2.2-np126py311hbdd918e_13.conda + - conda: https://prefix.dev/robostack-staging/linux-aarch64/ros-humble-rosidl-typesupport-fastrtps-cpp-2.2.2-np126py311hbdd918e_13.conda + - conda: https://prefix.dev/robostack-staging/linux-aarch64/ros-humble-rosidl-typesupport-interface-3.1.6-np126py311hbdd918e_13.conda + - conda: https://prefix.dev/robostack-staging/linux-aarch64/ros-humble-rosidl-typesupport-introspection-c-3.1.6-np126py311hbdd918e_13.conda + - conda: https://prefix.dev/robostack-staging/linux-aarch64/ros-humble-rosidl-typesupport-introspection-cpp-3.1.6-np126py311hbdd918e_13.conda + - conda: https://prefix.dev/robostack-staging/linux-aarch64/ros-humble-rpyutils-0.2.1-np126py311hbdd918e_13.conda + - conda: https://prefix.dev/robostack-staging/linux-aarch64/ros-humble-rqt-action-2.0.1-np126py311hbdd918e_13.conda + - conda: https://prefix.dev/robostack-staging/linux-aarch64/ros-humble-rqt-bag-1.1.5-np126py311hbdd918e_13.conda + - conda: https://prefix.dev/robostack-staging/linux-aarch64/ros-humble-rqt-bag-plugins-1.1.5-np126py311hbdd918e_13.conda + - conda: https://prefix.dev/robostack-staging/linux-aarch64/ros-humble-rqt-common-plugins-1.2.0-np126py311hbdd918e_13.conda + - conda: https://prefix.dev/robostack-staging/linux-aarch64/ros-humble-rqt-console-2.0.3-np126py311hbdd918e_13.conda + - conda: https://prefix.dev/robostack-staging/linux-aarch64/ros-humble-rqt-graph-1.3.1-np126py311hbdd918e_13.conda + - conda: https://prefix.dev/robostack-staging/linux-aarch64/ros-humble-rqt-gui-1.1.7-np126py311hbdd918e_13.conda + - conda: https://prefix.dev/robostack-staging/linux-aarch64/ros-humble-rqt-gui-cpp-1.1.7-np126py311hbdd918e_13.conda + - conda: https://prefix.dev/robostack-staging/linux-aarch64/ros-humble-rqt-gui-py-1.1.7-np126py311hbdd918e_13.conda + - conda: https://prefix.dev/robostack-staging/linux-aarch64/ros-humble-rqt-image-view-1.2.0-np126py311hbdd918e_13.conda + - conda: https://prefix.dev/robostack-staging/linux-aarch64/ros-humble-rqt-msg-1.2.0-np126py311hbdd918e_13.conda + - conda: https://prefix.dev/robostack-staging/linux-aarch64/ros-humble-rqt-plot-1.1.5-np126py311hbdd918e_13.conda + - conda: https://prefix.dev/robostack-staging/linux-aarch64/ros-humble-rqt-publisher-1.5.0-np126py311hbdd918e_13.conda + - conda: https://prefix.dev/robostack-staging/linux-aarch64/ros-humble-rqt-py-common-1.1.7-np126py311hbdd918e_13.conda + - conda: https://prefix.dev/robostack-staging/linux-aarch64/ros-humble-rqt-py-console-1.0.2-np126py311hbdd918e_13.conda + - conda: https://prefix.dev/robostack-staging/linux-aarch64/ros-humble-rqt-reconfigure-1.1.2-np126py311hbdd918e_13.conda + - conda: https://prefix.dev/robostack-staging/linux-aarch64/ros-humble-rqt-service-caller-1.0.5-np126py311hbdd918e_13.conda + - conda: https://prefix.dev/robostack-staging/linux-aarch64/ros-humble-rqt-shell-1.0.2-np126py311hbdd918e_13.conda + - conda: https://prefix.dev/robostack-staging/linux-aarch64/ros-humble-rqt-srv-1.0.3-np126py311hbdd918e_13.conda + - conda: https://prefix.dev/robostack-staging/linux-aarch64/ros-humble-rqt-topic-1.5.0-np126py311hbdd918e_13.conda + - conda: https://prefix.dev/robostack-staging/linux-aarch64/ros-humble-rti-connext-dds-cmake-module-0.11.3-np126py311hbdd918e_13.conda + - conda: https://prefix.dev/robostack-staging/linux-aarch64/ros-humble-rttest-0.13.0-np126py311hbdd918e_13.conda + - conda: https://prefix.dev/robostack-staging/linux-aarch64/ros-humble-rviz-assimp-vendor-11.2.18-np126py311hbdd918e_13.conda + - conda: https://prefix.dev/robostack-staging/linux-aarch64/ros-humble-rviz-common-11.2.18-np126py311hbdd918e_13.conda + - conda: https://prefix.dev/robostack-staging/linux-aarch64/ros-humble-rviz-default-plugins-11.2.18-np126py311hbdd918e_13.conda + - conda: https://prefix.dev/robostack-staging/linux-aarch64/ros-humble-rviz-ogre-vendor-11.2.18-np126py311ha9b9805_13.conda + - conda: https://prefix.dev/robostack-staging/linux-aarch64/ros-humble-rviz-rendering-11.2.18-np126py311hbdd918e_13.conda + - conda: https://prefix.dev/robostack-staging/linux-aarch64/ros-humble-rviz2-11.2.18-np126py311hbdd918e_13.conda + - conda: https://prefix.dev/robostack-staging/linux-aarch64/ros-humble-sdl2-vendor-3.3.0-np126py311hbdd918e_13.conda + - conda: https://prefix.dev/robostack-staging/linux-aarch64/ros-humble-sensor-msgs-4.9.0-np126py311hbdd918e_13.conda + - conda: https://prefix.dev/robostack-staging/linux-aarch64/ros-humble-sensor-msgs-py-4.9.0-np126py311hbdd918e_13.conda + - conda: https://prefix.dev/robostack-staging/linux-aarch64/ros-humble-shape-msgs-4.9.0-np126py311hbdd918e_13.conda + - conda: https://prefix.dev/robostack-staging/linux-aarch64/ros-humble-shared-queues-vendor-0.15.14-np126py311hbdd918e_13.conda + - conda: https://prefix.dev/robostack-staging/linux-aarch64/ros-humble-spdlog-vendor-1.3.1-np126py311h5f8052a_13.conda + - conda: https://prefix.dev/robostack-staging/linux-aarch64/ros-humble-sqlite3-vendor-0.15.14-np126py311hbdd918e_13.conda + - conda: https://prefix.dev/robostack-staging/linux-aarch64/ros-humble-sros2-0.10.6-np126py311hbdd918e_13.conda + - conda: https://prefix.dev/robostack-staging/linux-aarch64/ros-humble-sros2-cmake-0.10.6-np126py311hbdd918e_13.conda + - conda: https://prefix.dev/robostack-staging/linux-aarch64/ros-humble-statistics-msgs-1.2.1-np126py311hbdd918e_13.conda + - conda: https://prefix.dev/robostack-staging/linux-aarch64/ros-humble-std-msgs-4.9.0-np126py311hbdd918e_13.conda + - conda: https://prefix.dev/robostack-staging/linux-aarch64/ros-humble-std-srvs-4.9.0-np126py311hbdd918e_13.conda + - conda: https://prefix.dev/robostack-staging/linux-aarch64/ros-humble-stereo-msgs-4.9.0-np126py311hbdd918e_13.conda + - conda: https://prefix.dev/robostack-staging/linux-aarch64/ros-humble-tango-icons-vendor-0.1.1-np126py311hbdd918e_13.conda + - conda: https://prefix.dev/robostack-staging/linux-aarch64/ros-humble-teleop-twist-joy-2.4.7-np126py311hbdd918e_13.conda + - conda: https://prefix.dev/robostack-staging/linux-aarch64/ros-humble-teleop-twist-keyboard-2.4.0-np126py311hbdd918e_13.conda + - conda: https://prefix.dev/robostack-staging/linux-aarch64/ros-humble-tf2-0.25.14-np126py311hbdd918e_13.conda + - conda: https://prefix.dev/robostack-staging/linux-aarch64/ros-humble-tf2-bullet-0.25.14-np126py311hbdd918e_13.conda + - conda: https://prefix.dev/robostack-staging/linux-aarch64/ros-humble-tf2-eigen-0.25.14-np126py311hbdd918e_13.conda + - conda: https://prefix.dev/robostack-staging/linux-aarch64/ros-humble-tf2-eigen-kdl-0.25.14-np126py311hbdd918e_13.conda + - conda: https://prefix.dev/robostack-staging/linux-aarch64/ros-humble-tf2-geometry-msgs-0.25.14-np126py311hbdd918e_13.conda + - conda: https://prefix.dev/robostack-staging/linux-aarch64/ros-humble-tf2-kdl-0.25.14-np126py311hbdd918e_13.conda + - conda: https://prefix.dev/robostack-staging/linux-aarch64/ros-humble-tf2-msgs-0.25.14-np126py311hbdd918e_13.conda + - conda: https://prefix.dev/robostack-staging/linux-aarch64/ros-humble-tf2-py-0.25.14-np126py311hbdd918e_13.conda + - conda: https://prefix.dev/robostack-staging/linux-aarch64/ros-humble-tf2-ros-0.25.14-np126py311hbdd918e_13.conda + - conda: https://prefix.dev/robostack-staging/linux-aarch64/ros-humble-tf2-ros-py-0.25.14-np126py311hbdd918e_13.conda + - conda: https://prefix.dev/robostack-staging/linux-aarch64/ros-humble-tf2-sensor-msgs-0.25.14-np126py311hbdd918e_13.conda + - conda: https://prefix.dev/robostack-staging/linux-aarch64/ros-humble-tf2-tools-0.25.14-np126py311hbdd918e_13.conda + - conda: https://prefix.dev/robostack-staging/linux-aarch64/ros-humble-tinyxml-vendor-0.8.3-np126py311hbdd918e_13.conda + - conda: https://prefix.dev/robostack-staging/linux-aarch64/ros-humble-tinyxml2-vendor-0.7.6-np126py311hbdd918e_13.conda + - conda: https://prefix.dev/robostack-staging/linux-aarch64/ros-humble-tlsf-0.7.0-np126py311hbdd918e_13.conda + - conda: https://prefix.dev/robostack-staging/linux-aarch64/ros-humble-tlsf-cpp-0.13.0-np126py311hbdd918e_13.conda + - conda: https://prefix.dev/robostack-staging/linux-aarch64/ros-humble-topic-monitor-0.20.5-np126py311hbdd918e_13.conda + - conda: https://prefix.dev/robostack-staging/linux-aarch64/ros-humble-tracetools-4.1.1-np126py311hbdd918e_13.conda + - conda: https://prefix.dev/robostack-staging/linux-aarch64/ros-humble-trajectory-msgs-4.9.0-np126py311hbdd918e_13.conda + - conda: https://prefix.dev/robostack-staging/linux-aarch64/ros-humble-turtlesim-1.4.2-np126py311hbdd918e_13.conda + - conda: https://prefix.dev/robostack-staging/linux-aarch64/ros-humble-uncrustify-vendor-2.0.2-np126py311hbdd918e_13.conda + - conda: https://prefix.dev/robostack-staging/linux-aarch64/ros-humble-unique-identifier-msgs-2.2.1-np126py311hbdd918e_13.conda + - conda: https://prefix.dev/robostack-staging/linux-aarch64/ros-humble-urdf-2.6.1-np126py311hbdd918e_13.conda + - conda: https://prefix.dev/robostack-staging/linux-aarch64/ros-humble-urdf-parser-plugin-2.6.1-np126py311hbdd918e_13.conda + - conda: https://prefix.dev/robostack-staging/linux-aarch64/ros-humble-urdfdom-4.0.1-py311h7a77afc_13.conda + - conda: https://prefix.dev/robostack-staging/linux-aarch64/ros-humble-urdfdom-headers-1.0.6-py311h7a77afc_13.conda + - conda: https://prefix.dev/robostack-staging/linux-aarch64/ros-humble-visualization-msgs-4.9.0-np126py311hbdd918e_13.conda + - conda: https://prefix.dev/robostack-staging/linux-aarch64/ros-humble-yaml-cpp-vendor-8.0.2-np126py311hbdd918e_13.conda + - conda: https://prefix.dev/robostack-staging/linux-aarch64/ros-humble-zstd-vendor-0.15.14-np126py311hbdd918e_13.conda + - conda: https://prefix.dev/robostack-staging/linux-aarch64/ros2-distro-mutex-0.7.0-humble_13.conda + - conda: https://prefix.dev/conda-forge/noarch/rosdistro-1.0.1-pyhd8ed1ab_0.conda + - conda: https://prefix.dev/conda-forge/noarch/rospkg-1.6.0-pyhd8ed1ab_0.conda + - conda: https://prefix.dev/conda-forge/linux-aarch64/sdl2-2.32.54-h5ad3122_0.conda + - conda: https://prefix.dev/conda-forge/linux-aarch64/sdl3-3.2.20-h506f210_0.conda + - conda: https://prefix.dev/conda-forge/noarch/setuptools-80.9.0-pyhff2d567_0.conda + - conda: https://prefix.dev/conda-forge/linux-aarch64/sip-6.12.0-py311h2e0833b_0.conda + - conda: https://prefix.dev/conda-forge/noarch/six-1.17.0-pyhe01879c_1.conda + - conda: https://prefix.dev/conda-forge/linux-aarch64/snappy-1.2.2-he774c54_0.conda + - conda: https://prefix.dev/conda-forge/noarch/snowballstemmer-3.0.1-pyhd8ed1ab_0.conda + - conda: https://prefix.dev/conda-forge/linux-aarch64/spdlog-1.15.3-h881af89_1.conda + - conda: https://prefix.dev/conda-forge/linux-aarch64/sqlite-3.50.4-he8854b5_0.conda + - conda: https://prefix.dev/conda-forge/linux-aarch64/svt-av1-3.0.2-h5ad3122_0.conda + - conda: https://prefix.dev/conda-forge/linux-aarch64/tbb-2022.2.0-h8f856e4_1.conda + - conda: https://prefix.dev/conda-forge/linux-aarch64/tbb-devel-2022.2.0-h828ce58_1.conda + - conda: https://prefix.dev/conda-forge/linux-aarch64/tinyxml-2.6.2-hd62202e_2.tar.bz2 + - conda: https://prefix.dev/conda-forge/linux-aarch64/tinyxml2-11.0.0-h5ad3122_0.conda + - conda: https://prefix.dev/conda-forge/linux-aarch64/tk-8.6.13-noxft_h5688188_102.conda + - conda: https://prefix.dev/conda-forge/noarch/toml-0.10.2-pyhd8ed1ab_1.conda + - conda: https://prefix.dev/conda-forge/noarch/tomli-2.2.1-pyhe01879c_2.conda + - conda: https://prefix.dev/conda-forge/noarch/typing_extensions-4.14.1-pyhe01879c_0.conda + - conda: https://prefix.dev/conda-forge/noarch/tzdata-2025b-h78e105d_0.conda + - conda: https://prefix.dev/conda-forge/linux-aarch64/uncrustify-0.81.0-h5ad3122_0.conda + - conda: https://prefix.dev/conda-forge/linux-aarch64/unicodedata2-16.0.0-py311ha879c10_0.conda + - conda: https://prefix.dev/conda-forge/linux-aarch64/urdfdom-4.0.1-hdac3a21_3.conda + - conda: https://prefix.dev/conda-forge/linux-aarch64/urdfdom_headers-1.0.6-hdd96247_2.tar.bz2 + - conda: https://prefix.dev/conda-forge/linux-aarch64/utfcpp-4.0.6-h01cc221_0.conda + - conda: https://prefix.dev/conda-forge/linux-aarch64/vtk-9.4.2-h24e8a0a_3.conda + - conda: https://prefix.dev/conda-forge/linux-aarch64/vtk-base-9.4.2-py311h06be8d0_1.conda + - conda: https://prefix.dev/conda-forge/linux-aarch64/vtk-io-ffmpeg-9.4.2-hc80fd1f_1.conda + - conda: https://prefix.dev/conda-forge/linux-aarch64/wayland-1.24.0-h698ed42_0.conda + - conda: https://prefix.dev/conda-forge/noarch/wslink-2.4.0-pyhd8ed1ab_0.conda + - conda: https://prefix.dev/conda-forge/linux-aarch64/x264-1!164.3095-h4e544f5_2.tar.bz2 + - conda: https://prefix.dev/conda-forge/linux-aarch64/x265-3.5-hdd96247_3.tar.bz2 + - conda: https://prefix.dev/conda-forge/linux-aarch64/xcb-util-0.4.1-hca56bd8_2.conda + - conda: https://prefix.dev/conda-forge/linux-aarch64/xcb-util-cursor-0.1.5-h86ecc28_0.conda + - conda: https://prefix.dev/conda-forge/linux-aarch64/xcb-util-image-0.4.0-h5c728e9_2.conda + - conda: https://prefix.dev/conda-forge/linux-aarch64/xcb-util-keysyms-0.4.1-h5c728e9_0.conda + - conda: https://prefix.dev/conda-forge/linux-aarch64/xcb-util-renderutil-0.3.10-h5c728e9_0.conda + - conda: https://prefix.dev/conda-forge/linux-aarch64/xcb-util-wm-0.4.2-h5c728e9_0.conda + - conda: https://prefix.dev/conda-forge/linux-aarch64/xkeyboard-config-2.45-h86ecc28_0.conda + - conda: https://prefix.dev/conda-forge/linux-aarch64/xorg-libice-1.1.2-h86ecc28_0.conda + - conda: https://prefix.dev/conda-forge/linux-aarch64/xorg-libsm-1.2.6-h0808dbd_0.conda + - conda: https://prefix.dev/conda-forge/linux-aarch64/xorg-libx11-1.8.12-hca56bd8_0.conda + - conda: https://prefix.dev/conda-forge/linux-aarch64/xorg-libxau-1.0.12-h86ecc28_0.conda + - conda: https://prefix.dev/conda-forge/linux-aarch64/xorg-libxaw-1.0.16-h86ecc28_0.conda + - conda: https://prefix.dev/conda-forge/linux-aarch64/xorg-libxcomposite-0.4.6-h86ecc28_2.conda + - conda: https://prefix.dev/conda-forge/linux-aarch64/xorg-libxcursor-1.2.3-h86ecc28_0.conda + - conda: https://prefix.dev/conda-forge/linux-aarch64/xorg-libxdamage-1.1.6-h86ecc28_0.conda + - conda: https://prefix.dev/conda-forge/linux-aarch64/xorg-libxdmcp-1.1.5-h57736b2_0.conda + - conda: https://prefix.dev/conda-forge/linux-aarch64/xorg-libxext-1.3.6-h57736b2_0.conda + - conda: https://prefix.dev/conda-forge/linux-aarch64/xorg-libxfixes-6.0.1-h57736b2_0.conda + - conda: https://prefix.dev/conda-forge/linux-aarch64/xorg-libxi-1.8.2-h57736b2_0.conda + - conda: https://prefix.dev/conda-forge/linux-aarch64/xorg-libxinerama-1.1.5-h5ad3122_1.conda + - conda: https://prefix.dev/conda-forge/linux-aarch64/xorg-libxmu-1.2.1-h57736b2_1.conda + - conda: https://prefix.dev/conda-forge/linux-aarch64/xorg-libxpm-3.5.17-h86ecc28_1.conda + - conda: https://prefix.dev/conda-forge/linux-aarch64/xorg-libxrandr-1.5.4-h86ecc28_0.conda + - conda: https://prefix.dev/conda-forge/linux-aarch64/xorg-libxrender-0.9.12-h86ecc28_0.conda + - conda: https://prefix.dev/conda-forge/linux-aarch64/xorg-libxshmfence-1.3.3-h86ecc28_0.conda + - conda: https://prefix.dev/conda-forge/linux-aarch64/xorg-libxt-1.3.1-h57736b2_0.conda + - conda: https://prefix.dev/conda-forge/linux-aarch64/xorg-libxtst-1.2.5-h57736b2_3.conda + - conda: https://prefix.dev/conda-forge/linux-aarch64/xorg-libxxf86vm-1.1.6-h86ecc28_0.conda + - conda: https://prefix.dev/conda-forge/linux-aarch64/xorg-xorgproto-2024.1-h86ecc28_1.conda + - conda: https://prefix.dev/conda-forge/linux-aarch64/yaml-0.2.5-h80f16a2_3.conda + - conda: https://prefix.dev/conda-forge/linux-aarch64/yaml-cpp-0.8.0-h5ad3122_0.conda + - conda: https://prefix.dev/conda-forge/linux-aarch64/yarl-1.20.1-py311h58d527c_0.conda + - conda: https://prefix.dev/conda-forge/noarch/zipp-3.23.0-pyhd8ed1ab_0.conda + - conda: https://prefix.dev/conda-forge/linux-aarch64/zlib-1.3.1-h86ecc28_2.conda + - conda: https://prefix.dev/conda-forge/linux-aarch64/zstd-1.5.7-hbcf94c1_2.conda + - conda: https://prefix.dev/conda-forge/linux-aarch64/zziplib-0.13.69-h650d8d0_2.conda + - conda: src/navigator + subdir: linux-aarch64 + - conda: src/navigator_py + subdir: linux-aarch64 + - conda: src/talker-py + subdir: linux-aarch64 + osx-arm64: + - conda: https://prefix.dev/conda-forge/noarch/adwaita-icon-theme-48.1-unix_0.conda + - conda: https://prefix.dev/conda-forge/noarch/aiohappyeyeballs-2.6.1-pyhd8ed1ab_0.conda + - conda: https://prefix.dev/conda-forge/osx-arm64/aiohttp-3.12.15-py311h2fe624c_0.conda + - conda: https://prefix.dev/conda-forge/noarch/aiosignal-1.4.0-pyhd8ed1ab_0.conda + - conda: https://prefix.dev/conda-forge/osx-arm64/aom-3.9.1-h7bae524_0.conda + - conda: https://prefix.dev/conda-forge/noarch/argcomplete-3.6.2-pyhd8ed1ab_0.conda + - conda: https://prefix.dev/conda-forge/osx-arm64/assimp-5.4.3-ha9c0b8d_0.conda + - conda: https://prefix.dev/conda-forge/osx-arm64/atk-1.0-2.38.0-hd03087b_2.conda + - conda: https://prefix.dev/conda-forge/noarch/attrs-25.3.0-pyh71513ae_0.conda + - conda: https://prefix.dev/conda-forge/osx-arm64/blosc-1.21.6-h7dd00d9_1.conda + - conda: https://prefix.dev/conda-forge/osx-arm64/brotli-1.1.0-h5505292_3.conda + - conda: https://prefix.dev/conda-forge/osx-arm64/brotli-bin-1.1.0-h5505292_3.conda + - conda: https://prefix.dev/conda-forge/osx-arm64/bullet-3.25-h35c05fe_4.conda + - conda: https://prefix.dev/conda-forge/osx-arm64/bullet-cpp-3.25-py311hca32420_4.conda + - conda: https://prefix.dev/conda-forge/osx-arm64/bzip2-1.0.8-h99b78c6_7.conda + - conda: https://prefix.dev/conda-forge/osx-arm64/c-ares-1.34.5-h5505292_0.conda + - conda: https://prefix.dev/conda-forge/noarch/ca-certificates-2025.8.3-hbd8a1cb_0.conda + - conda: https://prefix.dev/conda-forge/osx-arm64/cairo-1.18.4-h6a3b0d2_0.conda + - conda: https://prefix.dev/conda-forge/noarch/catkin_pkg-1.0.0-pyhd8ed1ab_1.conda + - conda: https://prefix.dev/conda-forge/osx-arm64/cffi-1.17.1-py311h3a79f62_0.conda + - conda: https://prefix.dev/conda-forge/osx-arm64/cmake-4.1.0-hae74ae4_0.conda + - conda: https://prefix.dev/conda-forge/noarch/colorama-0.4.6-pyhd8ed1ab_1.conda + - conda: https://prefix.dev/conda-forge/osx-arm64/console_bridge-1.0.2-h3e96240_1.tar.bz2 + - conda: https://prefix.dev/conda-forge/osx-arm64/contourpy-1.3.3-py311h57a9ea7_1.conda + - conda: https://prefix.dev/conda-forge/osx-arm64/cppcheck-2.18.1-py311h936f1a6_0.conda + - conda: https://prefix.dev/conda-forge/osx-arm64/cryptography-45.0.6-py311h0107818_0.conda + - conda: https://prefix.dev/conda-forge/noarch/cycler-0.12.1-pyhd8ed1ab_1.conda + - conda: https://prefix.dev/conda-forge/osx-arm64/cyrus-sasl-2.1.28-ha1cbb27_0.conda + - conda: https://prefix.dev/conda-forge/osx-arm64/dav1d-1.2.1-hb547adb_0.conda + - conda: https://prefix.dev/conda-forge/osx-arm64/dbus-1.16.2-hda038a8_0.conda + - conda: https://prefix.dev/conda-forge/noarch/distro-1.9.0-pyhd8ed1ab_1.conda + - conda: https://prefix.dev/conda-forge/noarch/docutils-0.22-pyhd8ed1ab_0.conda + - conda: https://prefix.dev/conda-forge/osx-arm64/double-conversion-3.3.1-h286801f_0.conda + - conda: https://prefix.dev/conda-forge/osx-arm64/eigen-3.4.0-h1995070_0.conda + - conda: https://prefix.dev/conda-forge/noarch/empy-3.3.4-pyh9f0ad1d_1.tar.bz2 + - conda: https://prefix.dev/conda-forge/osx-arm64/epoxy-1.5.10-h1c322ee_1.tar.bz2 + - conda: https://prefix.dev/conda-forge/noarch/exceptiongroup-1.3.0-pyhd8ed1ab_0.conda + - conda: https://prefix.dev/conda-forge/osx-arm64/expat-2.7.1-hec049ff_0.conda + - conda: https://prefix.dev/conda-forge/osx-arm64/ffmpeg-7.1.1-gpl_h20db955_106.conda + - conda: https://prefix.dev/conda-forge/noarch/flake8-7.3.0-pyhd8ed1ab_0.conda + - conda: https://prefix.dev/conda-forge/osx-arm64/flann-1.9.2-hb343761_5.conda + - conda: https://prefix.dev/conda-forge/osx-arm64/fmt-11.2.0-h440487c_0.conda + - conda: https://prefix.dev/conda-forge/noarch/font-ttf-dejavu-sans-mono-2.37-hab24e00_0.tar.bz2 + - conda: https://prefix.dev/conda-forge/noarch/font-ttf-inconsolata-3.000-h77eed37_0.tar.bz2 + - conda: https://prefix.dev/conda-forge/noarch/font-ttf-source-code-pro-2.038-h77eed37_0.tar.bz2 + - conda: https://prefix.dev/conda-forge/noarch/font-ttf-ubuntu-0.83-h77eed37_3.conda + - conda: https://prefix.dev/conda-forge/osx-arm64/fontconfig-2.15.0-h1383a14_1.conda + - conda: https://prefix.dev/conda-forge/noarch/fonts-conda-ecosystem-1-0.tar.bz2 + - conda: https://prefix.dev/conda-forge/noarch/fonts-conda-forge-1-0.tar.bz2 + - conda: https://prefix.dev/conda-forge/osx-arm64/fonttools-4.59.1-py311h2fe624c_0.conda + - conda: https://prefix.dev/conda-forge/osx-arm64/foonathan-memory-0.7.3-h286801f_1.conda + - conda: https://prefix.dev/conda-forge/osx-arm64/freeimage-3.18.0-h2e169f6_22.conda + - conda: https://prefix.dev/conda-forge/osx-arm64/freetype-2.13.3-hce30654_1.conda + - conda: https://prefix.dev/conda-forge/osx-arm64/fribidi-1.0.10-h27ca646_0.tar.bz2 + - conda: https://prefix.dev/conda-forge/osx-arm64/frozenlist-1.7.0-py311h8740443_0.conda + - conda: https://prefix.dev/conda-forge/osx-arm64/gdk-pixbuf-2.42.12-h7af3d76_3.conda + - conda: https://prefix.dev/conda-forge/osx-arm64/gettext-0.25.1-h3dcc1bd_0.conda + - conda: https://prefix.dev/conda-forge/osx-arm64/gettext-tools-0.25.1-h493aca8_0.conda + - conda: https://prefix.dev/conda-forge/osx-arm64/glew-2.1.0-h9f76cd9_2.tar.bz2 + - conda: https://prefix.dev/conda-forge/osx-arm64/glib-2.84.3-hef37679_0.conda + - conda: https://prefix.dev/conda-forge/osx-arm64/glib-tools-2.84.3-h857b2e6_0.conda + - conda: https://prefix.dev/conda-forge/osx-arm64/gmock-1.17.0-hce30654_1.conda + - conda: https://prefix.dev/conda-forge/osx-arm64/gmp-6.3.0-h7bae524_2.conda + - conda: https://prefix.dev/conda-forge/osx-arm64/graphite2-1.3.14-hec049ff_2.conda + - conda: https://prefix.dev/conda-forge/osx-arm64/graphviz-12.2.1-hff64154_1.conda + - conda: https://prefix.dev/conda-forge/osx-arm64/gst-plugins-base-1.24.11-h3c5c1d0_0.conda + - conda: https://prefix.dev/conda-forge/osx-arm64/gstreamer-1.24.11-hfe24232_0.conda + - conda: https://prefix.dev/conda-forge/osx-arm64/gtest-1.17.0-ha393de7_1.conda + - conda: https://prefix.dev/conda-forge/osx-arm64/gtk3-3.24.43-h07173f4_5.conda + - conda: https://prefix.dev/conda-forge/osx-arm64/gts-0.7.6-he42f4ea_4.conda + - conda: https://prefix.dev/conda-forge/osx-arm64/harfbuzz-11.4.2-hf4e55d4_0.conda + - conda: https://prefix.dev/conda-forge/osx-arm64/hdf4-4.2.15-h2ee6834_7.conda + - conda: https://prefix.dev/conda-forge/osx-arm64/hdf5-1.14.6-nompi_he65715a_103.conda + - conda: https://prefix.dev/conda-forge/osx-arm64/hicolor-icon-theme-0.17-hce30654_2.tar.bz2 + - conda: https://prefix.dev/conda-forge/osx-arm64/icu-75.1-hfee45f7_0.conda + - conda: https://prefix.dev/conda-forge/noarch/idna-3.10-pyhd8ed1ab_1.conda + - conda: https://prefix.dev/conda-forge/osx-arm64/imath-3.1.12-h025cafa_0.conda + - conda: https://prefix.dev/conda-forge/noarch/importlib-metadata-8.7.0-pyhe01879c_1.conda + - conda: https://prefix.dev/conda-forge/noarch/importlib_resources-6.5.2-pyhd8ed1ab_0.conda + - conda: https://prefix.dev/conda-forge/noarch/iniconfig-2.0.0-pyhd8ed1ab_1.conda + - conda: https://prefix.dev/conda-forge/osx-arm64/jasper-4.2.8-hc0e5025_0.conda + - conda: https://prefix.dev/conda-forge/osx-arm64/jsoncpp-1.9.6-h726d253_1.conda + - conda: https://prefix.dev/conda-forge/osx-arm64/jxrlib-1.1-h93a5062_3.conda + - conda: https://prefix.dev/conda-forge/osx-arm64/kiwisolver-1.4.9-py311h63e5c0c_0.conda + - conda: https://prefix.dev/conda-forge/osx-arm64/krb5-1.21.3-h237132a_0.conda + - conda: https://prefix.dev/conda-forge/osx-arm64/lame-3.100-h1a8c8d9_1003.tar.bz2 + - conda: https://prefix.dev/conda-forge/noarch/lark-parser-0.12.0-pyhd8ed1ab_1.conda + - conda: https://prefix.dev/conda-forge/osx-arm64/lcms2-2.17-h7eeda09_0.conda + - conda: https://prefix.dev/conda-forge/osx-arm64/lerc-4.0.0-hd64df32_1.conda + - conda: https://prefix.dev/conda-forge/osx-arm64/libabseil-20250127.1-cxx17_h07bc746_0.conda + - conda: https://prefix.dev/conda-forge/osx-arm64/libaec-1.1.4-h51d1e36_0.conda + - conda: https://prefix.dev/conda-forge/osx-arm64/libasprintf-0.25.1-h493aca8_0.conda + - conda: https://prefix.dev/conda-forge/osx-arm64/libasprintf-devel-0.25.1-h493aca8_0.conda + - conda: https://prefix.dev/conda-forge/osx-arm64/libass-0.17.3-h68e5b86_2.conda + - conda: https://prefix.dev/conda-forge/osx-arm64/libavif16-1.3.0-hf1e31eb_0.conda + - conda: https://prefix.dev/conda-forge/osx-arm64/libblas-3.9.0-34_h10e41b3_openblas.conda + - conda: https://prefix.dev/conda-forge/osx-arm64/libboost-1.86.0-hc9fb7c5_3.conda + - conda: https://prefix.dev/conda-forge/osx-arm64/libboost-devel-1.86.0-hf450f58_3.conda + - conda: https://prefix.dev/conda-forge/osx-arm64/libboost-headers-1.86.0-hce30654_3.conda + - conda: https://prefix.dev/conda-forge/osx-arm64/libboost-python-1.86.0-py311h8fc16d6_3.conda + - conda: https://prefix.dev/conda-forge/osx-arm64/libbrotlicommon-1.1.0-h5505292_3.conda + - conda: https://prefix.dev/conda-forge/osx-arm64/libbrotlidec-1.1.0-h5505292_3.conda + - conda: https://prefix.dev/conda-forge/osx-arm64/libbrotlienc-1.1.0-h5505292_3.conda + - conda: https://prefix.dev/conda-forge/osx-arm64/libcblas-3.9.0-34_hb3479ef_openblas.conda + - conda: https://prefix.dev/conda-forge/osx-arm64/libclang-cpp17-17.0.6-default_hf90f093_8.conda + - conda: https://prefix.dev/conda-forge/osx-arm64/libclang-cpp19.1-19.1.7-default_hf90f093_3.conda + - conda: https://prefix.dev/conda-forge/osx-arm64/libclang13-20.1.8-default_h91d7d2a_0.conda + - conda: https://prefix.dev/conda-forge/osx-arm64/libcurl-8.14.1-h73640d1_0.conda + - conda: https://prefix.dev/conda-forge/osx-arm64/libcxx-21.1.0-hf598326_1.conda + - conda: https://prefix.dev/conda-forge/osx-arm64/libdeflate-1.24-h5773f1b_0.conda + - conda: https://prefix.dev/conda-forge/osx-arm64/libedit-3.1.20250104-pl5321hafb1f1b_0.conda + - conda: https://prefix.dev/conda-forge/osx-arm64/libev-4.33-h93a5062_2.conda + - conda: https://prefix.dev/conda-forge/osx-arm64/libexpat-2.7.1-hec049ff_0.conda + - conda: https://prefix.dev/conda-forge/osx-arm64/libffi-3.4.6-h1da3d7d_1.conda + - conda: https://prefix.dev/conda-forge/osx-arm64/libfreetype-2.13.3-hce30654_1.conda + - conda: https://prefix.dev/conda-forge/osx-arm64/libfreetype6-2.13.3-h1d14073_1.conda + - conda: https://prefix.dev/conda-forge/osx-arm64/libgd-2.3.3-hb2c3a21_11.conda + - conda: https://prefix.dev/conda-forge/osx-arm64/libgettextpo-0.25.1-h493aca8_0.conda + - conda: https://prefix.dev/conda-forge/osx-arm64/libgettextpo-devel-0.25.1-h493aca8_0.conda + - conda: https://prefix.dev/conda-forge/osx-arm64/libgfortran-15.1.0-hfdf1602_0.conda + - conda: https://prefix.dev/conda-forge/osx-arm64/libgfortran5-15.1.0-hb74de2c_0.conda + - conda: https://prefix.dev/conda-forge/osx-arm64/libglib-2.84.3-h587fa63_0.conda + - conda: https://prefix.dev/conda-forge/osx-arm64/libhwloc-2.12.1-default_h88f92a7_1000.conda + - conda: https://prefix.dev/conda-forge/osx-arm64/libiconv-1.18-h23cfdf5_2.conda + - conda: https://prefix.dev/conda-forge/osx-arm64/libignition-cmake2-2.17.2-h00cdb27_0.conda + - conda: https://prefix.dev/conda-forge/osx-arm64/libignition-math6-6.15.1-py311ha445fe1_3.conda + - conda: https://prefix.dev/conda-forge/osx-arm64/libintl-0.25.1-h493aca8_0.conda + - conda: https://prefix.dev/conda-forge/osx-arm64/libintl-devel-0.25.1-h493aca8_0.conda + - conda: https://prefix.dev/conda-forge/osx-arm64/libjpeg-turbo-3.1.0-h5505292_0.conda + - conda: https://prefix.dev/conda-forge/osx-arm64/liblapack-3.9.0-34_hc9a63f6_openblas.conda + - conda: https://prefix.dev/conda-forge/osx-arm64/liblapacke-3.9.0-34_hbb7bcf8_openblas.conda + - conda: https://prefix.dev/conda-forge/osx-arm64/libllvm17-17.0.6-hc4b4ae8_3.conda + - conda: https://prefix.dev/conda-forge/osx-arm64/libllvm19-19.1.7-hc4b4ae8_1.conda + - conda: https://prefix.dev/conda-forge/osx-arm64/libllvm20-20.1.8-h846d351_0.conda + - conda: https://prefix.dev/conda-forge/osx-arm64/liblzma-5.8.1-h39f12f2_2.conda + - conda: https://prefix.dev/conda-forge/osx-arm64/liblzma-devel-5.8.1-h39f12f2_2.conda + - conda: https://prefix.dev/conda-forge/osx-arm64/libnetcdf-4.9.2-nompi_h2d3d5cf_118.conda + - conda: https://prefix.dev/conda-forge/osx-arm64/libnghttp2-1.64.0-h6d7220d_0.conda + - conda: https://prefix.dev/conda-forge/osx-arm64/libntlm-1.8-h5505292_0.conda + - conda: https://prefix.dev/conda-forge/osx-arm64/libogg-1.3.5-h48c0fde_1.conda + - conda: https://prefix.dev/conda-forge/osx-arm64/libopenblas-0.3.30-openmp_h60d53f8_2.conda + - conda: https://prefix.dev/conda-forge/osx-arm64/libopencv-4.11.0-qt6_py311haa5a432_609.conda + - conda: https://prefix.dev/conda-forge/osx-arm64/libopenvino-2025.0.0-h3f17238_3.conda + - conda: https://prefix.dev/conda-forge/osx-arm64/libopenvino-arm-cpu-plugin-2025.0.0-h3f17238_3.conda + - conda: https://prefix.dev/conda-forge/osx-arm64/libopenvino-auto-batch-plugin-2025.0.0-h7f72211_3.conda + - conda: https://prefix.dev/conda-forge/osx-arm64/libopenvino-auto-plugin-2025.0.0-h7f72211_3.conda + - conda: https://prefix.dev/conda-forge/osx-arm64/libopenvino-hetero-plugin-2025.0.0-h718ad69_3.conda + - conda: https://prefix.dev/conda-forge/osx-arm64/libopenvino-ir-frontend-2025.0.0-h718ad69_3.conda + - conda: https://prefix.dev/conda-forge/osx-arm64/libopenvino-onnx-frontend-2025.0.0-h1ae5b81_3.conda + - conda: https://prefix.dev/conda-forge/osx-arm64/libopenvino-paddle-frontend-2025.0.0-h1ae5b81_3.conda + - conda: https://prefix.dev/conda-forge/osx-arm64/libopenvino-pytorch-frontend-2025.0.0-h286801f_3.conda + - conda: https://prefix.dev/conda-forge/osx-arm64/libopenvino-tensorflow-frontend-2025.0.0-heb6e3e1_3.conda + - conda: https://prefix.dev/conda-forge/osx-arm64/libopenvino-tensorflow-lite-frontend-2025.0.0-h286801f_3.conda + - conda: https://prefix.dev/conda-forge/osx-arm64/libopus-1.5.2-h48c0fde_0.conda + - conda: https://prefix.dev/conda-forge/osx-arm64/libpng-1.6.50-h280e0eb_1.conda + - conda: https://prefix.dev/conda-forge/osx-arm64/libpq-17.6-h6846fd6_0.conda + - conda: https://prefix.dev/conda-forge/osx-arm64/libprotobuf-5.29.3-h6c9c1dd_2.conda + - conda: https://prefix.dev/conda-forge/osx-arm64/libraw-0.21.4-h62a31ad_0.conda + - conda: https://prefix.dev/conda-forge/osx-arm64/librsvg-2.58.4-h266df6f_3.conda + - conda: https://prefix.dev/conda-forge/osx-arm64/libsqlite-3.50.4-h4237e3c_0.conda + - conda: https://prefix.dev/conda-forge/osx-arm64/libssh2-1.11.1-h1590b86_0.conda + - conda: https://prefix.dev/conda-forge/osx-arm64/libtheora-1.1.1-h99b78c6_1006.conda + - conda: https://prefix.dev/conda-forge/osx-arm64/libtiff-4.7.0-h025e3ab_6.conda + - conda: https://prefix.dev/conda-forge/osx-arm64/libusb-1.0.29-hbc156a2_0.conda + - conda: https://prefix.dev/conda-forge/osx-arm64/libuv-1.51.0-h6caf38d_1.conda + - conda: https://prefix.dev/conda-forge/osx-arm64/libvorbis-1.3.7-h81086ad_2.conda + - conda: https://prefix.dev/conda-forge/osx-arm64/libvpx-1.14.1-h7bae524_0.conda + - conda: https://prefix.dev/conda-forge/osx-arm64/libwebp-base-1.6.0-h07db88b_0.conda + - conda: https://prefix.dev/conda-forge/osx-arm64/libxcb-1.17.0-hdb1d25a_0.conda + - conda: https://prefix.dev/conda-forge/osx-arm64/libxml2-2.13.8-h4a9ca0c_1.conda + - conda: https://prefix.dev/conda-forge/osx-arm64/libxslt-1.1.43-h429d6fd_0.conda + - conda: https://prefix.dev/conda-forge/osx-arm64/libzip-1.11.2-h1336266_0.conda + - conda: https://prefix.dev/conda-forge/osx-arm64/libzlib-1.3.1-h8359307_2.conda + - conda: https://prefix.dev/conda-forge/osx-arm64/llvm-openmp-20.1.8-hbb9b287_1.conda + - conda: https://prefix.dev/conda-forge/noarch/loguru-0.7.3-pyh707e725_0.conda + - conda: https://prefix.dev/conda-forge/osx-arm64/lxml-6.0.0-py311hfcb965d_0.conda + - conda: https://prefix.dev/conda-forge/osx-arm64/lz4-c-1.10.0-h286801f_1.conda + - conda: https://prefix.dev/conda-forge/osx-arm64/matplotlib-base-3.10.5-py311h66dac5a_0.conda + - conda: https://prefix.dev/conda-forge/noarch/mccabe-0.7.0-pyhd8ed1ab_1.conda + - conda: https://prefix.dev/conda-forge/osx-arm64/msgpack-python-1.1.1-py311h210dab8_0.conda + - conda: https://prefix.dev/conda-forge/osx-arm64/multidict-6.6.3-py311h30e7462_0.conda + - conda: https://prefix.dev/conda-forge/noarch/munkres-1.1.4-pyhd8ed1ab_1.conda + - conda: https://prefix.dev/conda-forge/osx-arm64/ncurses-6.5-h5e97a16_3.conda + - conda: https://prefix.dev/conda-forge/osx-arm64/netifaces-0.11.0-py311h460d6c5_3.conda + - conda: https://prefix.dev/conda-forge/osx-arm64/nlohmann_json-3.12.0-ha1acc90_0.conda + - conda: https://prefix.dev/conda-forge/osx-arm64/nspr-4.37-h31e89c2_0.conda + - conda: https://prefix.dev/conda-forge/osx-arm64/nss-3.115-h5efccd4_0.conda + - conda: https://prefix.dev/conda-forge/osx-arm64/numpy-1.26.4-py311h7125741_0.conda + - conda: https://prefix.dev/conda-forge/osx-arm64/openexr-3.3.5-haaeed0a_0.conda + - conda: https://prefix.dev/conda-forge/osx-arm64/openh264-2.6.0-hb5b2745_0.conda + - conda: https://prefix.dev/conda-forge/osx-arm64/openjpeg-2.5.3-h889cd5d_1.conda + - conda: https://prefix.dev/conda-forge/osx-arm64/openldap-2.6.10-hbe55e7a_0.conda + - conda: https://prefix.dev/conda-forge/osx-arm64/openssl-3.5.2-he92f556_0.conda + - conda: https://prefix.dev/conda-forge/osx-arm64/orocos-kdl-1.5.1-h5833ebf_8.conda + - conda: https://prefix.dev/conda-forge/noarch/packaging-25.0-pyh29332c3_1.conda + - conda: https://prefix.dev/conda-forge/osx-arm64/pango-1.56.4-h875632e_0.conda + - conda: https://prefix.dev/conda-forge/osx-arm64/pcl-1.15.0-hae97317_2.conda + - conda: https://prefix.dev/conda-forge/osx-arm64/pcre-8.45-hbdafb3b_0.tar.bz2 + - conda: https://prefix.dev/conda-forge/osx-arm64/pcre2-10.45-ha881caa_0.conda + - conda: https://prefix.dev/conda-forge/noarch/pep517-0.13.0-pyhd8ed1ab_0.tar.bz2 + - conda: https://prefix.dev/conda-forge/osx-arm64/pillow-11.3.0-py311hb9ba9e9_0.conda + - conda: https://prefix.dev/conda-forge/osx-arm64/pixman-0.46.4-h81086ad_1.conda + - conda: https://prefix.dev/conda-forge/osx-arm64/pkg-config-0.29.2-hde07d2e_1009.conda + - conda: https://prefix.dev/conda-forge/noarch/pluggy-1.6.0-pyhd8ed1ab_0.conda + - conda: https://prefix.dev/conda-forge/noarch/ply-3.11-pyhd8ed1ab_3.conda + - conda: https://prefix.dev/conda-forge/osx-arm64/proj-9.6.2-hdbeaa80_2.conda + - conda: https://prefix.dev/conda-forge/osx-arm64/propcache-0.3.1-py311h4921393_0.conda + - conda: https://prefix.dev/conda-forge/osx-arm64/psutil-7.0.0-py311h3696347_1.conda + - conda: https://prefix.dev/conda-forge/osx-arm64/pthread-stubs-0.4-hd74edd7_1002.conda + - conda: https://prefix.dev/conda-forge/osx-arm64/pugixml-1.15-hd3d436d_0.conda + - conda: https://prefix.dev/conda-forge/osx-arm64/py-opencv-4.11.0-qt6_py311h28af0ab_609.conda + - conda: https://prefix.dev/conda-forge/noarch/pybind11-3.0.0-pyh9380348_1.conda + - conda: https://prefix.dev/conda-forge/noarch/pybind11-abi-11-hc364b38_1.conda + - conda: https://prefix.dev/conda-forge/noarch/pybind11-global-3.0.0-pyhf748d72_1.conda + - conda: https://prefix.dev/conda-forge/osx-arm64/pybullet-3.25-py311he9eb210_4.conda + - conda: https://prefix.dev/conda-forge/osx-arm64/pycairo-1.28.0-py311h8a0deb1_0.conda + - conda: https://prefix.dev/conda-forge/noarch/pycodestyle-2.14.0-pyhd8ed1ab_0.conda + - conda: https://prefix.dev/conda-forge/noarch/pycparser-2.22-pyh29332c3_1.conda + - conda: https://prefix.dev/conda-forge/noarch/pydocstyle-6.3.0-pyhd8ed1ab_1.conda + - conda: https://prefix.dev/conda-forge/osx-arm64/pydot-4.0.1-py311h267d04e_0.conda + - conda: https://prefix.dev/conda-forge/noarch/pyflakes-3.4.0-pyhd8ed1ab_0.conda + - conda: https://prefix.dev/conda-forge/noarch/pygments-2.19.2-pyhd8ed1ab_0.conda + - conda: https://prefix.dev/conda-forge/noarch/pyparsing-3.2.3-pyhe01879c_2.conda + - conda: https://prefix.dev/conda-forge/osx-arm64/pyqt-5.15.11-py311h2146069_1.conda + - conda: https://prefix.dev/conda-forge/noarch/pyqt-builder-1.15.4-pyhd8ed1ab_1.conda + - conda: https://prefix.dev/conda-forge/osx-arm64/pyqt5-sip-12.17.0-py311h155a34a_1.conda + - conda: https://prefix.dev/conda-forge/noarch/pytest-8.4.1-pyhd8ed1ab_0.conda + - conda: https://prefix.dev/conda-forge/osx-arm64/python-3.11.13-hc22306f_0_cpython.conda + - conda: https://prefix.dev/conda-forge/noarch/python-dateutil-2.9.0.post0-pyhe01879c_2.conda + - conda: https://prefix.dev/conda-forge/osx-arm64/python-orocos-kdl-1.5.1-py311h6885ffc_8.conda + - conda: https://prefix.dev/conda-forge/noarch/python_abi-3.11-8_cp311.conda + - conda: https://prefix.dev/conda-forge/osx-arm64/pyyaml-6.0.2-py311h4921393_2.conda + - conda: https://prefix.dev/conda-forge/osx-arm64/qhull-2020.2-h420ef59_5.conda + - conda: https://prefix.dev/conda-forge/osx-arm64/qt-main-5.15.15-h67564f6_4.conda + - conda: https://prefix.dev/conda-forge/osx-arm64/qt6-main-6.9.1-h81d968c_2.conda + - conda: https://prefix.dev/conda-forge/osx-arm64/rav1e-0.7.1-h0716509_3.conda + - conda: https://prefix.dev/conda-forge/osx-arm64/readline-8.2-h1d1bf99_2.conda + - conda: https://prefix.dev/conda-forge/osx-arm64/rhash-1.4.6-h5505292_1.conda + - conda: https://prefix.dev/robostack-staging/osx-arm64/ros-humble-action-msgs-1.2.1-np126py311h2a51a2c_13.conda + - conda: https://prefix.dev/robostack-staging/osx-arm64/ros-humble-action-tutorials-cpp-0.20.5-np126py311h2a51a2c_13.conda + - conda: https://prefix.dev/robostack-staging/osx-arm64/ros-humble-action-tutorials-interfaces-0.20.5-np126py311h2a51a2c_13.conda + - conda: https://prefix.dev/robostack-staging/osx-arm64/ros-humble-action-tutorials-py-0.20.5-np126py311h2a51a2c_13.conda + - conda: https://prefix.dev/robostack-staging/osx-arm64/ros-humble-actionlib-msgs-4.9.0-np126py311h2a51a2c_13.conda + - conda: https://prefix.dev/robostack-staging/osx-arm64/ros-humble-ament-cmake-1.3.12-np126py311h2a51a2c_13.conda + - conda: https://prefix.dev/robostack-staging/osx-arm64/ros-humble-ament-cmake-auto-1.3.12-np126py311h2a51a2c_13.conda + - conda: https://prefix.dev/robostack-staging/osx-arm64/ros-humble-ament-cmake-copyright-0.12.12-np126py311h2a51a2c_13.conda + - conda: https://prefix.dev/robostack-staging/osx-arm64/ros-humble-ament-cmake-core-1.3.12-np126py311h2a51a2c_13.conda + - conda: https://prefix.dev/robostack-staging/osx-arm64/ros-humble-ament-cmake-cppcheck-0.12.12-np126py311h2a51a2c_13.conda + - conda: https://prefix.dev/robostack-staging/osx-arm64/ros-humble-ament-cmake-cpplint-0.12.12-np126py311h2a51a2c_13.conda + - conda: https://prefix.dev/robostack-staging/osx-arm64/ros-humble-ament-cmake-export-definitions-1.3.12-np126py311h2a51a2c_13.conda + - conda: https://prefix.dev/robostack-staging/osx-arm64/ros-humble-ament-cmake-export-dependencies-1.3.12-np126py311h2a51a2c_13.conda + - conda: https://prefix.dev/robostack-staging/osx-arm64/ros-humble-ament-cmake-export-include-directories-1.3.12-np126py311h2a51a2c_13.conda + - conda: https://prefix.dev/robostack-staging/osx-arm64/ros-humble-ament-cmake-export-interfaces-1.3.12-np126py311h2a51a2c_13.conda + - conda: https://prefix.dev/robostack-staging/osx-arm64/ros-humble-ament-cmake-export-libraries-1.3.12-np126py311h2a51a2c_13.conda + - conda: https://prefix.dev/robostack-staging/osx-arm64/ros-humble-ament-cmake-export-link-flags-1.3.12-np126py311h2a51a2c_13.conda + - conda: https://prefix.dev/robostack-staging/osx-arm64/ros-humble-ament-cmake-export-targets-1.3.12-np126py311h2a51a2c_13.conda + - conda: https://prefix.dev/robostack-staging/osx-arm64/ros-humble-ament-cmake-flake8-0.12.12-np126py311h2a51a2c_13.conda + - conda: https://prefix.dev/robostack-staging/osx-arm64/ros-humble-ament-cmake-gen-version-h-1.3.12-np126py311h2a51a2c_13.conda + - conda: https://prefix.dev/robostack-staging/osx-arm64/ros-humble-ament-cmake-gmock-1.3.12-np126py311h2a51a2c_13.conda + - conda: https://prefix.dev/robostack-staging/osx-arm64/ros-humble-ament-cmake-gtest-1.3.12-np126py311h2a51a2c_13.conda + - conda: https://prefix.dev/robostack-staging/osx-arm64/ros-humble-ament-cmake-include-directories-1.3.12-np126py311h2a51a2c_13.conda + - conda: https://prefix.dev/robostack-staging/osx-arm64/ros-humble-ament-cmake-libraries-1.3.12-np126py311h2a51a2c_13.conda + - conda: https://prefix.dev/robostack-staging/osx-arm64/ros-humble-ament-cmake-lint-cmake-0.12.12-np126py311h2a51a2c_13.conda + - conda: https://prefix.dev/robostack-staging/osx-arm64/ros-humble-ament-cmake-pep257-0.12.12-np126py311h2a51a2c_13.conda + - conda: https://prefix.dev/robostack-staging/osx-arm64/ros-humble-ament-cmake-pytest-1.3.12-np126py311h2a51a2c_13.conda + - conda: https://prefix.dev/robostack-staging/osx-arm64/ros-humble-ament-cmake-python-1.3.12-np126py311h2a51a2c_13.conda + - conda: https://prefix.dev/robostack-staging/osx-arm64/ros-humble-ament-cmake-ros-0.10.0-np126py311h2a51a2c_13.conda + - conda: https://prefix.dev/robostack-staging/osx-arm64/ros-humble-ament-cmake-target-dependencies-1.3.12-np126py311h2a51a2c_13.conda + - conda: https://prefix.dev/robostack-staging/osx-arm64/ros-humble-ament-cmake-test-1.3.12-np126py311h2a51a2c_13.conda + - conda: https://prefix.dev/robostack-staging/osx-arm64/ros-humble-ament-cmake-uncrustify-0.12.12-np126py311h2a51a2c_13.conda + - conda: https://prefix.dev/robostack-staging/osx-arm64/ros-humble-ament-cmake-version-1.3.12-np126py311h2a51a2c_13.conda + - conda: https://prefix.dev/robostack-staging/osx-arm64/ros-humble-ament-cmake-xmllint-0.12.12-np126py311h2a51a2c_13.conda + - conda: https://prefix.dev/robostack-staging/osx-arm64/ros-humble-ament-copyright-0.12.12-np126py311h2a51a2c_13.conda + - conda: https://prefix.dev/robostack-staging/osx-arm64/ros-humble-ament-cppcheck-0.12.12-np126py311h2a51a2c_13.conda + - conda: https://prefix.dev/robostack-staging/osx-arm64/ros-humble-ament-cpplint-0.12.12-np126py311h2a51a2c_13.conda + - conda: https://prefix.dev/robostack-staging/osx-arm64/ros-humble-ament-flake8-0.12.12-np126py311h2a51a2c_13.conda + - conda: https://prefix.dev/robostack-staging/osx-arm64/ros-humble-ament-index-cpp-1.4.0-np126py311h2a51a2c_13.conda + - conda: https://prefix.dev/robostack-staging/osx-arm64/ros-humble-ament-index-python-1.4.0-np126py311h2a51a2c_13.conda + - conda: https://prefix.dev/robostack-staging/osx-arm64/ros-humble-ament-lint-0.12.12-np126py311h2a51a2c_13.conda + - conda: https://prefix.dev/robostack-staging/osx-arm64/ros-humble-ament-lint-auto-0.12.12-np126py311h2a51a2c_13.conda + - conda: https://prefix.dev/robostack-staging/osx-arm64/ros-humble-ament-lint-cmake-0.12.12-np126py311h2a51a2c_13.conda + - conda: https://prefix.dev/robostack-staging/osx-arm64/ros-humble-ament-lint-common-0.12.12-np126py311h2a51a2c_13.conda + - conda: https://prefix.dev/robostack-staging/osx-arm64/ros-humble-ament-package-0.14.1-np126py311h2a51a2c_13.conda + - conda: https://prefix.dev/robostack-staging/osx-arm64/ros-humble-ament-pep257-0.12.12-np126py311h2a51a2c_13.conda + - conda: https://prefix.dev/robostack-staging/osx-arm64/ros-humble-ament-uncrustify-0.12.12-np126py311h2a51a2c_13.conda + - conda: https://prefix.dev/robostack-staging/osx-arm64/ros-humble-ament-xmllint-0.12.12-np126py311h2a51a2c_13.conda + - conda: https://prefix.dev/robostack-staging/osx-arm64/ros-humble-angles-1.15.0-np126py311h2a51a2c_13.conda + - conda: https://prefix.dev/robostack-staging/osx-arm64/ros-humble-builtin-interfaces-1.2.1-np126py311h2a51a2c_13.conda + - conda: https://prefix.dev/robostack-staging/osx-arm64/ros-humble-class-loader-2.2.0-np126py311h2a51a2c_13.conda + - conda: https://prefix.dev/robostack-staging/osx-arm64/ros-humble-common-interfaces-4.9.0-np126py311h2a51a2c_13.conda + - conda: https://prefix.dev/robostack-staging/osx-arm64/ros-humble-composition-0.20.5-np126py311h2a51a2c_13.conda + - conda: https://prefix.dev/robostack-staging/osx-arm64/ros-humble-composition-interfaces-1.2.1-np126py311h2a51a2c_13.conda + - conda: https://prefix.dev/robostack-staging/osx-arm64/ros-humble-console-bridge-vendor-1.4.1-np126py311h2a51a2c_13.conda + - conda: https://prefix.dev/robostack-staging/osx-arm64/ros-humble-cv-bridge-3.2.1-np126py311h3f06965_13.conda + - conda: https://prefix.dev/robostack-staging/osx-arm64/ros-humble-cyclonedds-0.10.5-np126py311h2a51a2c_13.conda + - conda: https://prefix.dev/robostack-staging/osx-arm64/ros-humble-demo-nodes-cpp-0.20.5-np126py311h2a51a2c_13.conda + - conda: https://prefix.dev/robostack-staging/osx-arm64/ros-humble-demo-nodes-cpp-native-0.20.5-np126py311h2a51a2c_13.conda + - conda: https://prefix.dev/robostack-staging/osx-arm64/ros-humble-demo-nodes-py-0.20.5-np126py311h2a51a2c_13.conda + - conda: https://prefix.dev/robostack-staging/osx-arm64/ros-humble-depthimage-to-laserscan-2.5.1-np126py311h3f06965_13.conda + - conda: https://prefix.dev/robostack-staging/osx-arm64/ros-humble-desktop-0.10.0-np126py311h2a51a2c_13.conda + - conda: https://prefix.dev/robostack-staging/osx-arm64/ros-humble-diagnostic-msgs-4.9.0-np126py311h2a51a2c_13.conda + - conda: https://prefix.dev/robostack-staging/osx-arm64/ros-humble-domain-coordinator-0.10.0-np126py311h2a51a2c_13.conda + - conda: https://prefix.dev/robostack-staging/osx-arm64/ros-humble-dummy-map-server-0.20.5-np126py311h2a51a2c_13.conda + - conda: https://prefix.dev/robostack-staging/osx-arm64/ros-humble-dummy-robot-bringup-0.20.5-np126py311h2a51a2c_13.conda + - conda: https://prefix.dev/robostack-staging/osx-arm64/ros-humble-dummy-sensors-0.20.5-np126py311h2a51a2c_13.conda + - conda: https://prefix.dev/robostack-staging/osx-arm64/ros-humble-eigen3-cmake-module-0.1.1-np126py311h2a51a2c_13.conda + - conda: https://prefix.dev/robostack-staging/osx-arm64/ros-humble-example-interfaces-0.9.3-np126py311h2a51a2c_13.conda + - conda: https://prefix.dev/robostack-staging/osx-arm64/ros-humble-examples-rclcpp-minimal-action-client-0.15.3-np126py311h2a51a2c_13.conda + - conda: https://prefix.dev/robostack-staging/osx-arm64/ros-humble-examples-rclcpp-minimal-action-server-0.15.3-np126py311h2a51a2c_13.conda + - conda: https://prefix.dev/robostack-staging/osx-arm64/ros-humble-examples-rclcpp-minimal-client-0.15.3-np126py311h2a51a2c_13.conda + - conda: https://prefix.dev/robostack-staging/osx-arm64/ros-humble-examples-rclcpp-minimal-composition-0.15.3-np126py311h2a51a2c_13.conda + - conda: https://prefix.dev/robostack-staging/osx-arm64/ros-humble-examples-rclcpp-minimal-publisher-0.15.3-np126py311h2a51a2c_13.conda + - conda: https://prefix.dev/robostack-staging/osx-arm64/ros-humble-examples-rclcpp-minimal-service-0.15.3-np126py311h2a51a2c_13.conda + - conda: https://prefix.dev/robostack-staging/osx-arm64/ros-humble-examples-rclcpp-minimal-subscriber-0.15.3-np126py311h2a51a2c_13.conda + - conda: https://prefix.dev/robostack-staging/osx-arm64/ros-humble-examples-rclcpp-minimal-timer-0.15.3-np126py311h2a51a2c_13.conda + - conda: https://prefix.dev/robostack-staging/osx-arm64/ros-humble-examples-rclcpp-multithreaded-executor-0.15.3-np126py311h2a51a2c_13.conda + - conda: https://prefix.dev/robostack-staging/osx-arm64/ros-humble-examples-rclpy-executors-0.15.3-np126py311h2a51a2c_13.conda + - conda: https://prefix.dev/robostack-staging/osx-arm64/ros-humble-examples-rclpy-minimal-action-client-0.15.3-np126py311h2a51a2c_13.conda + - conda: https://prefix.dev/robostack-staging/osx-arm64/ros-humble-examples-rclpy-minimal-action-server-0.15.3-np126py311h2a51a2c_13.conda + - conda: https://prefix.dev/robostack-staging/osx-arm64/ros-humble-examples-rclpy-minimal-client-0.15.3-np126py311h2a51a2c_13.conda + - conda: https://prefix.dev/robostack-staging/osx-arm64/ros-humble-examples-rclpy-minimal-publisher-0.15.3-np126py311h2a51a2c_13.conda + - conda: https://prefix.dev/robostack-staging/osx-arm64/ros-humble-examples-rclpy-minimal-service-0.15.3-np126py311h2a51a2c_13.conda + - conda: https://prefix.dev/robostack-staging/osx-arm64/ros-humble-examples-rclpy-minimal-subscriber-0.15.3-np126py311h2a51a2c_13.conda + - conda: https://prefix.dev/robostack-staging/osx-arm64/ros-humble-fastcdr-1.0.24-np126py311h2a51a2c_13.conda + - conda: https://prefix.dev/robostack-staging/osx-arm64/ros-humble-fastrtps-2.6.10-np126py311h2a51a2c_13.conda + - conda: https://prefix.dev/robostack-staging/osx-arm64/ros-humble-fastrtps-cmake-module-2.2.2-np126py311h2a51a2c_13.conda + - conda: https://prefix.dev/robostack-staging/osx-arm64/ros-humble-foonathan-memory-vendor-1.2.0-np126py311h2a51a2c_13.conda + - conda: https://prefix.dev/robostack-staging/osx-arm64/ros-humble-geometry-msgs-4.9.0-np126py311h2a51a2c_13.conda + - conda: https://prefix.dev/robostack-staging/osx-arm64/ros-humble-geometry2-0.25.14-np126py311h2a51a2c_13.conda + - conda: https://prefix.dev/robostack-staging/osx-arm64/ros-humble-gmock-vendor-1.10.9006-np126py311h2a51a2c_13.conda + - conda: https://prefix.dev/robostack-staging/osx-arm64/ros-humble-gtest-vendor-1.10.9006-np126py311h2a51a2c_13.conda + - conda: https://prefix.dev/robostack-staging/osx-arm64/ros-humble-iceoryx-binding-c-2.0.5-np126py311h2a51a2c_13.conda + - conda: https://prefix.dev/robostack-staging/osx-arm64/ros-humble-iceoryx-hoofs-2.0.5-np126py311h2a51a2c_13.conda + - conda: https://prefix.dev/robostack-staging/osx-arm64/ros-humble-iceoryx-posh-2.0.5-np126py311h2a51a2c_13.conda + - conda: https://prefix.dev/robostack-staging/osx-arm64/ros-humble-ignition-cmake2-vendor-0.0.2-np126py311h26a17a2_13.conda + - conda: https://prefix.dev/robostack-staging/osx-arm64/ros-humble-ignition-math6-vendor-0.0.2-np126py311h2a51a2c_13.conda + - conda: https://prefix.dev/robostack-staging/osx-arm64/ros-humble-image-geometry-3.2.1-np126py311h3f06965_13.conda + - conda: https://prefix.dev/robostack-staging/osx-arm64/ros-humble-image-tools-0.20.5-np126py311h3f06965_13.conda + - conda: https://prefix.dev/robostack-staging/osx-arm64/ros-humble-image-transport-3.1.12-np126py311h2a51a2c_13.conda + - conda: https://prefix.dev/robostack-staging/osx-arm64/ros-humble-interactive-markers-2.3.2-np126py311h2a51a2c_13.conda + - conda: https://prefix.dev/robostack-staging/osx-arm64/ros-humble-intra-process-demo-0.20.5-np126py311h3f06965_13.conda + - conda: https://prefix.dev/robostack-staging/osx-arm64/ros-humble-joy-3.3.0-np126py311h2a51a2c_13.conda + - conda: https://prefix.dev/robostack-staging/osx-arm64/ros-humble-kdl-parser-2.6.4-np126py311h2a51a2c_13.conda + - conda: https://prefix.dev/robostack-staging/osx-arm64/ros-humble-keyboard-handler-0.0.5-np126py311h2a51a2c_13.conda + - conda: https://prefix.dev/robostack-staging/osx-arm64/ros-humble-laser-geometry-2.4.0-np126py311h2a51a2c_13.conda + - conda: https://prefix.dev/robostack-staging/osx-arm64/ros-humble-launch-1.0.9-np126py311h2a51a2c_13.conda + - conda: https://prefix.dev/robostack-staging/osx-arm64/ros-humble-launch-ros-0.19.10-np126py311h2a51a2c_13.conda + - conda: https://prefix.dev/robostack-staging/osx-arm64/ros-humble-launch-testing-1.0.9-np126py311h2a51a2c_13.conda + - conda: https://prefix.dev/robostack-staging/osx-arm64/ros-humble-launch-testing-ament-cmake-1.0.9-np126py311h2a51a2c_13.conda + - conda: https://prefix.dev/robostack-staging/osx-arm64/ros-humble-launch-testing-ros-0.19.10-np126py311h2a51a2c_13.conda + - conda: https://prefix.dev/robostack-staging/osx-arm64/ros-humble-launch-xml-1.0.9-np126py311h2a51a2c_13.conda + - conda: https://prefix.dev/robostack-staging/osx-arm64/ros-humble-launch-yaml-1.0.9-np126py311h2a51a2c_13.conda + - conda: https://prefix.dev/robostack-staging/osx-arm64/ros-humble-libcurl-vendor-3.1.3-np126py311h2a51a2c_13.conda + - conda: https://prefix.dev/robostack-staging/osx-arm64/ros-humble-libstatistics-collector-1.3.4-np126py311h2a51a2c_13.conda + - conda: https://prefix.dev/robostack-staging/osx-arm64/ros-humble-libyaml-vendor-1.2.2-np126py311h2a51a2c_13.conda + - conda: https://prefix.dev/robostack-staging/osx-arm64/ros-humble-lifecycle-0.20.5-np126py311h2a51a2c_13.conda + - conda: https://prefix.dev/robostack-staging/osx-arm64/ros-humble-lifecycle-msgs-1.2.1-np126py311h2a51a2c_13.conda + - conda: https://prefix.dev/robostack-staging/osx-arm64/ros-humble-logging-demo-0.20.5-np126py311h2a51a2c_13.conda + - conda: https://prefix.dev/robostack-staging/osx-arm64/ros-humble-map-msgs-2.1.0-np126py311h2a51a2c_13.conda + - conda: https://prefix.dev/robostack-staging/osx-arm64/ros-humble-message-filters-4.3.7-np126py311h2a51a2c_13.conda + - conda: https://prefix.dev/robostack-staging/osx-arm64/ros-humble-nav-msgs-4.9.0-np126py311h2a51a2c_13.conda + - conda: https://prefix.dev/robostack-staging/osx-arm64/ros-humble-orocos-kdl-vendor-0.2.5-np126py311h2a51a2c_13.conda + - conda: https://prefix.dev/robostack-staging/osx-arm64/ros-humble-osrf-pycommon-2.1.6-np126py311h2a51a2c_13.conda + - conda: https://prefix.dev/robostack-staging/osx-arm64/ros-humble-pcl-conversions-2.4.5-np126py311h2a51a2c_13.conda + - conda: https://prefix.dev/robostack-staging/osx-arm64/ros-humble-pcl-msgs-1.0.0-np126py311h2a51a2c_13.conda + - conda: https://prefix.dev/robostack-staging/osx-arm64/ros-humble-pendulum-msgs-0.20.5-np126py311h2a51a2c_13.conda + - conda: https://prefix.dev/robostack-staging/osx-arm64/ros-humble-pluginlib-5.1.0-np126py311h2a51a2c_13.conda + - conda: https://prefix.dev/robostack-staging/osx-arm64/ros-humble-pybind11-vendor-2.4.2-np126py311h2a51a2c_13.conda + - conda: https://prefix.dev/robostack-staging/osx-arm64/ros-humble-python-cmake-module-0.10.0-np126py311h2a51a2c_13.conda + - conda: https://prefix.dev/robostack-staging/osx-arm64/ros-humble-python-orocos-kdl-vendor-0.2.5-np126py311h2a51a2c_13.conda + - conda: https://prefix.dev/robostack-staging/osx-arm64/ros-humble-python-qt-binding-1.1.2-np126py311h2a51a2c_13.conda + - conda: https://prefix.dev/robostack-staging/osx-arm64/ros-humble-qt-dotgraph-2.2.4-np126py311h2a51a2c_13.conda + - conda: https://prefix.dev/robostack-staging/osx-arm64/ros-humble-qt-gui-2.2.4-np126py311h2a51a2c_13.conda + - conda: https://prefix.dev/robostack-staging/osx-arm64/ros-humble-qt-gui-cpp-2.2.4-np126py311h2a51a2c_13.conda + - conda: https://prefix.dev/robostack-staging/osx-arm64/ros-humble-qt-gui-py-common-2.2.4-np126py311h2a51a2c_13.conda + - conda: https://prefix.dev/robostack-staging/osx-arm64/ros-humble-quality-of-service-demo-cpp-0.20.5-np126py311h2a51a2c_13.conda + - conda: https://prefix.dev/robostack-staging/osx-arm64/ros-humble-quality-of-service-demo-py-0.20.5-np126py311h2a51a2c_13.conda + - conda: https://prefix.dev/robostack-staging/osx-arm64/ros-humble-rcl-5.3.9-np126py311h2a51a2c_13.conda + - conda: https://prefix.dev/robostack-staging/osx-arm64/ros-humble-rcl-action-5.3.9-np126py311h2a51a2c_13.conda + - conda: https://prefix.dev/robostack-staging/osx-arm64/ros-humble-rcl-interfaces-1.2.1-np126py311h2a51a2c_13.conda + - conda: https://prefix.dev/robostack-staging/osx-arm64/ros-humble-rcl-lifecycle-5.3.9-np126py311h2a51a2c_13.conda + - conda: https://prefix.dev/robostack-staging/osx-arm64/ros-humble-rcl-logging-interface-2.3.1-np126py311h2a51a2c_13.conda + - conda: https://prefix.dev/robostack-staging/osx-arm64/ros-humble-rcl-logging-spdlog-2.3.1-np126py311h6932ae0_13.conda + - conda: https://prefix.dev/robostack-staging/osx-arm64/ros-humble-rcl-yaml-param-parser-5.3.9-np126py311h2a51a2c_13.conda + - conda: https://prefix.dev/robostack-staging/osx-arm64/ros-humble-rclcpp-16.0.13-np126py311h2a51a2c_13.conda + - conda: https://prefix.dev/robostack-staging/osx-arm64/ros-humble-rclcpp-action-16.0.13-np126py311h2a51a2c_13.conda + - conda: https://prefix.dev/robostack-staging/osx-arm64/ros-humble-rclcpp-components-16.0.13-np126py311h2a51a2c_13.conda + - conda: https://prefix.dev/robostack-staging/osx-arm64/ros-humble-rclcpp-lifecycle-16.0.13-np126py311h2a51a2c_13.conda + - conda: https://prefix.dev/robostack-staging/osx-arm64/ros-humble-rclpy-3.3.16-np126py311h2a51a2c_13.conda + - conda: https://prefix.dev/robostack-staging/osx-arm64/ros-humble-rcpputils-2.4.5-np126py311h2a51a2c_13.conda + - conda: https://prefix.dev/robostack-staging/osx-arm64/ros-humble-rcutils-5.1.6-np126py311h2a51a2c_13.conda + - conda: https://prefix.dev/robostack-staging/osx-arm64/ros-humble-resource-retriever-3.1.3-np126py311h2a51a2c_13.conda + - conda: https://prefix.dev/robostack-staging/osx-arm64/ros-humble-rmw-6.1.2-np126py311h2a51a2c_13.conda + - conda: https://prefix.dev/robostack-staging/osx-arm64/ros-humble-rmw-connextdds-0.11.3-np126py311h2a51a2c_13.conda + - conda: https://prefix.dev/robostack-staging/osx-arm64/ros-humble-rmw-connextdds-common-0.11.3-np126py311h2a51a2c_13.conda + - conda: https://prefix.dev/robostack-staging/osx-arm64/ros-humble-rmw-cyclonedds-cpp-1.3.4-np126py311h2a51a2c_13.conda + - conda: https://prefix.dev/robostack-staging/osx-arm64/ros-humble-rmw-dds-common-1.6.0-np126py311h2a51a2c_13.conda + - conda: https://prefix.dev/robostack-staging/osx-arm64/ros-humble-rmw-fastrtps-cpp-6.2.7-np126py311h2a51a2c_13.conda + - conda: https://prefix.dev/robostack-staging/osx-arm64/ros-humble-rmw-fastrtps-dynamic-cpp-6.2.7-np126py311h2a51a2c_13.conda + - conda: https://prefix.dev/robostack-staging/osx-arm64/ros-humble-rmw-fastrtps-shared-cpp-6.2.7-np126py311h2a51a2c_13.conda + - conda: https://prefix.dev/robostack-staging/osx-arm64/ros-humble-rmw-implementation-2.8.4-np126py311h2a51a2c_13.conda + - conda: https://prefix.dev/robostack-staging/osx-arm64/ros-humble-rmw-implementation-cmake-6.1.2-np126py311h2a51a2c_13.conda + - conda: https://prefix.dev/robostack-staging/osx-arm64/ros-humble-robot-state-publisher-3.0.3-np126py311h2a51a2c_13.conda + - conda: https://prefix.dev/robostack-staging/osx-arm64/ros-humble-ros-base-0.10.0-np126py311h2a51a2c_13.conda + - conda: https://prefix.dev/robostack-staging/osx-arm64/ros-humble-ros-core-0.10.0-np126py311h2a51a2c_13.conda + - conda: https://prefix.dev/robostack-staging/osx-arm64/ros-humble-ros-environment-3.2.2-np126py311h2a51a2c_13.conda + - conda: https://prefix.dev/robostack-staging/osx-arm64/ros-humble-ros-workspace-1.0.2-np126py311h2a51a2c_13.conda + - conda: https://prefix.dev/robostack-staging/osx-arm64/ros-humble-ros2action-0.18.12-np126py311h2a51a2c_13.conda + - conda: https://prefix.dev/robostack-staging/osx-arm64/ros-humble-ros2bag-0.15.14-np126py311h2a51a2c_13.conda + - conda: https://prefix.dev/robostack-staging/osx-arm64/ros-humble-ros2cli-0.18.12-np126py311h2a51a2c_13.conda + - conda: https://prefix.dev/robostack-staging/osx-arm64/ros-humble-ros2cli-common-extensions-0.1.1-np126py311h2a51a2c_13.conda + - conda: https://prefix.dev/robostack-staging/osx-arm64/ros-humble-ros2component-0.18.12-np126py311h2a51a2c_13.conda + - conda: https://prefix.dev/robostack-staging/osx-arm64/ros-humble-ros2doctor-0.18.12-np126py311h2a51a2c_13.conda + - conda: https://prefix.dev/robostack-staging/osx-arm64/ros-humble-ros2interface-0.18.12-np126py311h2a51a2c_13.conda + - conda: https://prefix.dev/robostack-staging/osx-arm64/ros-humble-ros2launch-0.19.10-np126py311h2a51a2c_13.conda + - conda: https://prefix.dev/robostack-staging/osx-arm64/ros-humble-ros2lifecycle-0.18.12-np126py311h2a51a2c_13.conda + - conda: https://prefix.dev/robostack-staging/osx-arm64/ros-humble-ros2multicast-0.18.12-np126py311h2a51a2c_13.conda + - conda: https://prefix.dev/robostack-staging/osx-arm64/ros-humble-ros2node-0.18.12-np126py311h2a51a2c_13.conda + - conda: https://prefix.dev/robostack-staging/osx-arm64/ros-humble-ros2param-0.18.12-np126py311h2a51a2c_13.conda + - conda: https://prefix.dev/robostack-staging/osx-arm64/ros-humble-ros2pkg-0.18.12-np126py311h2a51a2c_13.conda + - conda: https://prefix.dev/robostack-staging/osx-arm64/ros-humble-ros2run-0.18.12-np126py311h2a51a2c_13.conda + - conda: https://prefix.dev/robostack-staging/osx-arm64/ros-humble-ros2service-0.18.12-np126py311h2a51a2c_13.conda + - conda: https://prefix.dev/robostack-staging/osx-arm64/ros-humble-ros2topic-0.18.12-np126py311h2a51a2c_13.conda + - conda: https://prefix.dev/robostack-staging/osx-arm64/ros-humble-rosbag2-0.15.14-np126py311h2a51a2c_13.conda + - conda: https://prefix.dev/robostack-staging/osx-arm64/ros-humble-rosbag2-compression-0.15.14-np126py311h2a51a2c_13.conda + - conda: https://prefix.dev/robostack-staging/osx-arm64/ros-humble-rosbag2-compression-zstd-0.15.14-np126py311h2a51a2c_13.conda + - conda: https://prefix.dev/robostack-staging/osx-arm64/ros-humble-rosbag2-cpp-0.15.14-np126py311h2a51a2c_13.conda + - conda: https://prefix.dev/robostack-staging/osx-arm64/ros-humble-rosbag2-interfaces-0.15.14-np126py311h2a51a2c_13.conda + - conda: https://prefix.dev/robostack-staging/osx-arm64/ros-humble-rosbag2-py-0.15.14-np126py311h2a51a2c_13.conda + - conda: https://prefix.dev/robostack-staging/osx-arm64/ros-humble-rosbag2-storage-0.15.14-np126py311h2a51a2c_13.conda + - conda: https://prefix.dev/robostack-staging/osx-arm64/ros-humble-rosbag2-storage-default-plugins-0.15.14-np126py311h2a51a2c_13.conda + - conda: https://prefix.dev/robostack-staging/osx-arm64/ros-humble-rosbag2-transport-0.15.14-np126py311h2a51a2c_13.conda + - conda: https://prefix.dev/robostack-staging/osx-arm64/ros-humble-rosgraph-msgs-1.2.1-np126py311h2a51a2c_13.conda + - conda: https://prefix.dev/robostack-staging/osx-arm64/ros-humble-rosidl-adapter-3.1.6-np126py311h2a51a2c_13.conda + - conda: https://prefix.dev/robostack-staging/osx-arm64/ros-humble-rosidl-cli-3.1.6-np126py311h2a51a2c_13.conda + - conda: https://prefix.dev/robostack-staging/osx-arm64/ros-humble-rosidl-cmake-3.1.6-np126py311h2a51a2c_13.conda + - conda: https://prefix.dev/robostack-staging/osx-arm64/ros-humble-rosidl-default-generators-1.2.0-np126py311h2a51a2c_13.conda + - conda: https://prefix.dev/robostack-staging/osx-arm64/ros-humble-rosidl-default-runtime-1.2.0-np126py311h2a51a2c_13.conda + - conda: https://prefix.dev/robostack-staging/osx-arm64/ros-humble-rosidl-generator-c-3.1.6-np126py311h2a51a2c_13.conda + - conda: https://prefix.dev/robostack-staging/osx-arm64/ros-humble-rosidl-generator-cpp-3.1.6-np126py311h2a51a2c_13.conda + - conda: https://prefix.dev/robostack-staging/osx-arm64/ros-humble-rosidl-generator-py-0.14.4-np126py311h2a51a2c_13.conda + - conda: https://prefix.dev/robostack-staging/osx-arm64/ros-humble-rosidl-parser-3.1.6-np126py311h2a51a2c_13.conda + - conda: https://prefix.dev/robostack-staging/osx-arm64/ros-humble-rosidl-runtime-c-3.1.6-np126py311h2a51a2c_13.conda + - conda: https://prefix.dev/robostack-staging/osx-arm64/ros-humble-rosidl-runtime-cpp-3.1.6-np126py311h2a51a2c_13.conda + - conda: https://prefix.dev/robostack-staging/osx-arm64/ros-humble-rosidl-runtime-py-0.9.3-np126py311h2a51a2c_13.conda + - conda: https://prefix.dev/robostack-staging/osx-arm64/ros-humble-rosidl-typesupport-c-2.0.2-np126py311h2a51a2c_13.conda + - conda: https://prefix.dev/robostack-staging/osx-arm64/ros-humble-rosidl-typesupport-cpp-2.0.2-np126py311h2a51a2c_13.conda + - conda: https://prefix.dev/robostack-staging/osx-arm64/ros-humble-rosidl-typesupport-fastrtps-c-2.2.2-np126py311h2a51a2c_13.conda + - conda: https://prefix.dev/robostack-staging/osx-arm64/ros-humble-rosidl-typesupport-fastrtps-cpp-2.2.2-np126py311h2a51a2c_13.conda + - conda: https://prefix.dev/robostack-staging/osx-arm64/ros-humble-rosidl-typesupport-interface-3.1.6-np126py311h2a51a2c_13.conda + - conda: https://prefix.dev/robostack-staging/osx-arm64/ros-humble-rosidl-typesupport-introspection-c-3.1.6-np126py311h2a51a2c_13.conda + - conda: https://prefix.dev/robostack-staging/osx-arm64/ros-humble-rosidl-typesupport-introspection-cpp-3.1.6-np126py311h2a51a2c_13.conda + - conda: https://prefix.dev/robostack-staging/osx-arm64/ros-humble-rpyutils-0.2.1-np126py311h2a51a2c_13.conda + - conda: https://prefix.dev/robostack-staging/osx-arm64/ros-humble-rqt-action-2.0.1-np126py311h2a51a2c_13.conda + - conda: https://prefix.dev/robostack-staging/osx-arm64/ros-humble-rqt-bag-1.1.5-np126py311h2a51a2c_13.conda + - conda: https://prefix.dev/robostack-staging/osx-arm64/ros-humble-rqt-bag-plugins-1.1.5-np126py311h2a51a2c_13.conda + - conda: https://prefix.dev/robostack-staging/osx-arm64/ros-humble-rqt-common-plugins-1.2.0-np126py311h2a51a2c_13.conda + - conda: https://prefix.dev/robostack-staging/osx-arm64/ros-humble-rqt-console-2.0.3-np126py311h2a51a2c_13.conda + - conda: https://prefix.dev/robostack-staging/osx-arm64/ros-humble-rqt-graph-1.3.1-np126py311h2a51a2c_13.conda + - conda: https://prefix.dev/robostack-staging/osx-arm64/ros-humble-rqt-gui-1.1.7-np126py311h2a51a2c_13.conda + - conda: https://prefix.dev/robostack-staging/osx-arm64/ros-humble-rqt-gui-cpp-1.1.7-np126py311h2a51a2c_13.conda + - conda: https://prefix.dev/robostack-staging/osx-arm64/ros-humble-rqt-gui-py-1.1.7-np126py311h2a51a2c_13.conda + - conda: https://prefix.dev/robostack-staging/osx-arm64/ros-humble-rqt-image-view-1.2.0-np126py311h2a51a2c_13.conda + - conda: https://prefix.dev/robostack-staging/osx-arm64/ros-humble-rqt-msg-1.2.0-np126py311h2a51a2c_13.conda + - conda: https://prefix.dev/robostack-staging/osx-arm64/ros-humble-rqt-plot-1.1.5-np126py311h2a51a2c_13.conda + - conda: https://prefix.dev/robostack-staging/osx-arm64/ros-humble-rqt-publisher-1.5.0-np126py311h2a51a2c_13.conda + - conda: https://prefix.dev/robostack-staging/osx-arm64/ros-humble-rqt-py-common-1.1.7-np126py311h2a51a2c_13.conda + - conda: https://prefix.dev/robostack-staging/osx-arm64/ros-humble-rqt-py-console-1.0.2-np126py311h2a51a2c_13.conda + - conda: https://prefix.dev/robostack-staging/osx-arm64/ros-humble-rqt-reconfigure-1.1.2-np126py311h2a51a2c_13.conda + - conda: https://prefix.dev/robostack-staging/osx-arm64/ros-humble-rqt-service-caller-1.0.5-np126py311h2a51a2c_13.conda + - conda: https://prefix.dev/robostack-staging/osx-arm64/ros-humble-rqt-shell-1.0.2-np126py311h2a51a2c_13.conda + - conda: https://prefix.dev/robostack-staging/osx-arm64/ros-humble-rqt-srv-1.0.3-np126py311h2a51a2c_13.conda + - conda: https://prefix.dev/robostack-staging/osx-arm64/ros-humble-rqt-topic-1.5.0-np126py311h2a51a2c_13.conda + - conda: https://prefix.dev/robostack-staging/osx-arm64/ros-humble-rti-connext-dds-cmake-module-0.11.3-np126py311h2a51a2c_13.conda + - conda: https://prefix.dev/robostack-staging/osx-arm64/ros-humble-rviz-assimp-vendor-11.2.18-np126py311h2a51a2c_13.conda + - conda: https://prefix.dev/robostack-staging/osx-arm64/ros-humble-rviz-common-11.2.18-np126py311h2a51a2c_13.conda + - conda: https://prefix.dev/robostack-staging/osx-arm64/ros-humble-rviz-default-plugins-11.2.18-np126py311h2a51a2c_13.conda + - conda: https://prefix.dev/robostack-staging/osx-arm64/ros-humble-rviz-ogre-vendor-11.2.18-np126py311h36b6526_13.conda + - conda: https://prefix.dev/robostack-staging/osx-arm64/ros-humble-rviz-rendering-11.2.18-np126py311h2a51a2c_13.conda + - conda: https://prefix.dev/robostack-staging/osx-arm64/ros-humble-rviz2-11.2.18-np126py311h2a51a2c_13.conda + - conda: https://prefix.dev/robostack-staging/osx-arm64/ros-humble-sdl2-vendor-3.3.0-np126py311h2a51a2c_13.conda + - conda: https://prefix.dev/robostack-staging/osx-arm64/ros-humble-sensor-msgs-4.9.0-np126py311h2a51a2c_13.conda + - conda: https://prefix.dev/robostack-staging/osx-arm64/ros-humble-sensor-msgs-py-4.9.0-np126py311h2a51a2c_13.conda + - conda: https://prefix.dev/robostack-staging/osx-arm64/ros-humble-shape-msgs-4.9.0-np126py311h2a51a2c_13.conda + - conda: https://prefix.dev/robostack-staging/osx-arm64/ros-humble-shared-queues-vendor-0.15.14-np126py311h2a51a2c_13.conda + - conda: https://prefix.dev/robostack-staging/osx-arm64/ros-humble-spdlog-vendor-1.3.1-np126py311h6932ae0_13.conda + - conda: https://prefix.dev/robostack-staging/osx-arm64/ros-humble-sqlite3-vendor-0.15.14-np126py311h2a51a2c_13.conda + - conda: https://prefix.dev/robostack-staging/osx-arm64/ros-humble-sros2-0.10.6-np126py311h2a51a2c_13.conda + - conda: https://prefix.dev/robostack-staging/osx-arm64/ros-humble-sros2-cmake-0.10.6-np126py311h2a51a2c_13.conda + - conda: https://prefix.dev/robostack-staging/osx-arm64/ros-humble-statistics-msgs-1.2.1-np126py311h2a51a2c_13.conda + - conda: https://prefix.dev/robostack-staging/osx-arm64/ros-humble-std-msgs-4.9.0-np126py311h2a51a2c_13.conda + - conda: https://prefix.dev/robostack-staging/osx-arm64/ros-humble-std-srvs-4.9.0-np126py311h2a51a2c_13.conda + - conda: https://prefix.dev/robostack-staging/osx-arm64/ros-humble-stereo-msgs-4.9.0-np126py311h2a51a2c_13.conda + - conda: https://prefix.dev/robostack-staging/osx-arm64/ros-humble-tango-icons-vendor-0.1.1-np126py311h2a51a2c_13.conda + - conda: https://prefix.dev/robostack-staging/osx-arm64/ros-humble-teleop-twist-joy-2.4.7-np126py311h2a51a2c_13.conda + - conda: https://prefix.dev/robostack-staging/osx-arm64/ros-humble-teleop-twist-keyboard-2.4.0-np126py311h2a51a2c_13.conda + - conda: https://prefix.dev/robostack-staging/osx-arm64/ros-humble-tf2-0.25.14-np126py311h2a51a2c_13.conda + - conda: https://prefix.dev/robostack-staging/osx-arm64/ros-humble-tf2-bullet-0.25.14-np126py311h2a51a2c_13.conda + - conda: https://prefix.dev/robostack-staging/osx-arm64/ros-humble-tf2-eigen-0.25.14-np126py311h2a51a2c_13.conda + - conda: https://prefix.dev/robostack-staging/osx-arm64/ros-humble-tf2-eigen-kdl-0.25.14-np126py311h2a51a2c_13.conda + - conda: https://prefix.dev/robostack-staging/osx-arm64/ros-humble-tf2-geometry-msgs-0.25.14-np126py311h2a51a2c_13.conda + - conda: https://prefix.dev/robostack-staging/osx-arm64/ros-humble-tf2-kdl-0.25.14-np126py311h2a51a2c_13.conda + - conda: https://prefix.dev/robostack-staging/osx-arm64/ros-humble-tf2-msgs-0.25.14-np126py311h2a51a2c_13.conda + - conda: https://prefix.dev/robostack-staging/osx-arm64/ros-humble-tf2-py-0.25.14-np126py311h2a51a2c_13.conda + - conda: https://prefix.dev/robostack-staging/osx-arm64/ros-humble-tf2-ros-0.25.14-np126py311h2a51a2c_13.conda + - conda: https://prefix.dev/robostack-staging/osx-arm64/ros-humble-tf2-ros-py-0.25.14-np126py311h2a51a2c_13.conda + - conda: https://prefix.dev/robostack-staging/osx-arm64/ros-humble-tf2-sensor-msgs-0.25.14-np126py311h2a51a2c_13.conda + - conda: https://prefix.dev/robostack-staging/osx-arm64/ros-humble-tf2-tools-0.25.14-np126py311h2a51a2c_13.conda + - conda: https://prefix.dev/robostack-staging/osx-arm64/ros-humble-tinyxml-vendor-0.8.3-np126py311h2a51a2c_13.conda + - conda: https://prefix.dev/robostack-staging/osx-arm64/ros-humble-tinyxml2-vendor-0.7.6-np126py311h2a51a2c_13.conda + - conda: https://prefix.dev/robostack-staging/osx-arm64/ros-humble-topic-monitor-0.20.5-np126py311h2a51a2c_13.conda + - conda: https://prefix.dev/robostack-staging/osx-arm64/ros-humble-tracetools-4.1.1-np126py311h2a51a2c_13.conda + - conda: https://prefix.dev/robostack-staging/osx-arm64/ros-humble-trajectory-msgs-4.9.0-np126py311h2a51a2c_13.conda + - conda: https://prefix.dev/robostack-staging/osx-arm64/ros-humble-turtlesim-1.4.2-np126py311h2a51a2c_13.conda + - conda: https://prefix.dev/robostack-staging/osx-arm64/ros-humble-uncrustify-vendor-2.0.2-np126py311h2a51a2c_13.conda + - conda: https://prefix.dev/robostack-staging/osx-arm64/ros-humble-unique-identifier-msgs-2.2.1-np126py311h2a51a2c_13.conda + - conda: https://prefix.dev/robostack-staging/osx-arm64/ros-humble-urdf-2.6.1-np126py311h2a51a2c_13.conda + - conda: https://prefix.dev/robostack-staging/osx-arm64/ros-humble-urdf-parser-plugin-2.6.1-np126py311h2a51a2c_13.conda + - conda: https://prefix.dev/robostack-staging/osx-arm64/ros-humble-urdfdom-4.0.1-py311h43e502b_13.conda + - conda: https://prefix.dev/robostack-staging/osx-arm64/ros-humble-urdfdom-headers-1.0.6-py311h43e502b_13.conda + - conda: https://prefix.dev/robostack-staging/osx-arm64/ros-humble-visualization-msgs-4.9.0-np126py311h2a51a2c_13.conda + - conda: https://prefix.dev/robostack-staging/osx-arm64/ros-humble-yaml-cpp-vendor-8.0.2-np126py311h2a51a2c_13.conda + - conda: https://prefix.dev/robostack-staging/osx-arm64/ros-humble-zstd-vendor-0.15.14-np126py311h2a51a2c_13.conda + - conda: https://prefix.dev/robostack-staging/osx-arm64/ros2-distro-mutex-0.7.0-humble_13.conda + - conda: https://prefix.dev/conda-forge/noarch/rosdistro-1.0.1-pyhd8ed1ab_0.conda + - conda: https://prefix.dev/conda-forge/noarch/rospkg-1.6.0-pyhd8ed1ab_0.conda + - conda: https://prefix.dev/conda-forge/osx-arm64/sdl2-2.32.54-ha1acc90_0.conda + - conda: https://prefix.dev/conda-forge/osx-arm64/sdl3-3.2.20-he22eeb8_0.conda + - conda: https://prefix.dev/conda-forge/noarch/setuptools-80.9.0-pyhff2d567_0.conda + - conda: https://prefix.dev/conda-forge/osx-arm64/sip-6.12.0-py311h155a34a_0.conda + - conda: https://prefix.dev/conda-forge/noarch/six-1.17.0-pyhe01879c_1.conda + - conda: https://prefix.dev/conda-forge/osx-arm64/snappy-1.2.2-hd121638_0.conda + - conda: https://prefix.dev/conda-forge/noarch/snowballstemmer-3.0.1-pyhd8ed1ab_0.conda + - conda: https://prefix.dev/conda-forge/osx-arm64/spdlog-1.15.3-h217a1f9_1.conda + - conda: https://prefix.dev/conda-forge/osx-arm64/sqlite-3.50.4-hb5dd463_0.conda + - conda: https://prefix.dev/conda-forge/osx-arm64/svt-av1-3.0.2-h8ab69cd_0.conda + - conda: https://prefix.dev/conda-forge/osx-arm64/tbb-2022.2.0-h5b2e6d4_1.conda + - conda: https://prefix.dev/conda-forge/osx-arm64/tbb-devel-2022.2.0-h89693d0_1.conda + - conda: https://prefix.dev/conda-forge/osx-arm64/tinyxml-2.6.2-h260d524_2.tar.bz2 + - conda: https://prefix.dev/conda-forge/osx-arm64/tinyxml2-11.0.0-ha1acc90_0.conda + - conda: https://prefix.dev/conda-forge/osx-arm64/tk-8.6.13-h892fb3f_2.conda + - conda: https://prefix.dev/conda-forge/noarch/toml-0.10.2-pyhd8ed1ab_1.conda + - conda: https://prefix.dev/conda-forge/noarch/tomli-2.2.1-pyhe01879c_2.conda + - conda: https://prefix.dev/conda-forge/noarch/typing_extensions-4.14.1-pyhe01879c_0.conda + - conda: https://prefix.dev/conda-forge/noarch/tzdata-2025b-h78e105d_0.conda + - conda: https://prefix.dev/conda-forge/osx-arm64/uncrustify-0.81.0-h286801f_0.conda + - conda: https://prefix.dev/conda-forge/osx-arm64/unicodedata2-16.0.0-py311h917b07b_0.conda + - conda: https://prefix.dev/conda-forge/osx-arm64/urdfdom-4.0.1-h48bab5a_3.conda + - conda: https://prefix.dev/conda-forge/osx-arm64/urdfdom_headers-1.0.6-h3e96240_2.tar.bz2 + - conda: https://prefix.dev/conda-forge/osx-arm64/utfcpp-4.0.6-h54c0426_0.conda + - conda: https://prefix.dev/conda-forge/osx-arm64/vtk-9.4.2-h11a73fa_3.conda + - conda: https://prefix.dev/conda-forge/osx-arm64/vtk-base-9.4.2-py311h48cd792_1.conda + - conda: https://prefix.dev/conda-forge/osx-arm64/vtk-io-ffmpeg-9.4.2-h142d020_1.conda + - conda: https://prefix.dev/conda-forge/noarch/wslink-2.4.0-pyhd8ed1ab_0.conda + - conda: https://prefix.dev/conda-forge/osx-arm64/x264-1!164.3095-h57fd34a_2.tar.bz2 + - conda: https://prefix.dev/conda-forge/osx-arm64/x265-3.5-hbc6ce65_3.tar.bz2 + - conda: https://prefix.dev/conda-forge/osx-arm64/xorg-libice-1.1.2-h5505292_0.conda + - conda: https://prefix.dev/conda-forge/osx-arm64/xorg-libsm-1.2.6-h5505292_0.conda + - conda: https://prefix.dev/conda-forge/osx-arm64/xorg-libx11-1.8.12-h6a5fb8c_0.conda + - conda: https://prefix.dev/conda-forge/osx-arm64/xorg-libxau-1.0.12-h5505292_0.conda + - conda: https://prefix.dev/conda-forge/osx-arm64/xorg-libxaw-1.0.16-hd74edd7_0.conda + - conda: https://prefix.dev/conda-forge/osx-arm64/xorg-libxdmcp-1.1.5-hd74edd7_0.conda + - conda: https://prefix.dev/conda-forge/osx-arm64/xorg-libxext-1.3.6-hd74edd7_0.conda + - conda: https://prefix.dev/conda-forge/osx-arm64/xorg-libxmu-1.2.1-hd74edd7_1.conda + - conda: https://prefix.dev/conda-forge/osx-arm64/xorg-libxpm-3.5.17-hd74edd7_1.conda + - conda: https://prefix.dev/conda-forge/osx-arm64/xorg-libxrandr-1.5.4-hd74edd7_0.conda + - conda: https://prefix.dev/conda-forge/osx-arm64/xorg-libxrender-0.9.12-h5505292_0.conda + - conda: https://prefix.dev/conda-forge/osx-arm64/xorg-libxt-1.3.1-h5505292_0.conda + - conda: https://prefix.dev/conda-forge/osx-arm64/xorg-xorgproto-2024.1-hd74edd7_1.conda + - conda: https://prefix.dev/conda-forge/osx-arm64/yaml-0.2.5-h925e9cb_3.conda + - conda: https://prefix.dev/conda-forge/osx-arm64/yaml-cpp-0.8.0-ha1acc90_0.conda + - conda: https://prefix.dev/conda-forge/osx-arm64/yarl-1.20.1-py311h4921393_0.conda + - conda: https://prefix.dev/conda-forge/noarch/zipp-3.23.0-pyhd8ed1ab_0.conda + - conda: https://prefix.dev/conda-forge/osx-arm64/zlib-1.3.1-h8359307_2.conda + - conda: https://prefix.dev/conda-forge/osx-arm64/zstd-1.5.7-h6491c7d_2.conda + - conda: https://prefix.dev/conda-forge/osx-arm64/zziplib-0.13.69-h57f5043_2.conda + - conda: src/navigator + subdir: osx-arm64 + - conda: src/navigator_py + subdir: osx-arm64 + - conda: src/talker-py + subdir: osx-arm64 + win-64: + - conda: https://prefix.dev/conda-forge/win-64/_libavif_api-1.3.0-h57928b3_0.conda + - conda: https://prefix.dev/conda-forge/win-64/_openmp_mutex-4.5-2_gnu.conda + - conda: https://prefix.dev/conda-forge/noarch/aiohappyeyeballs-2.6.1-pyhd8ed1ab_0.conda + - conda: https://prefix.dev/conda-forge/win-64/aiohttp-3.12.15-py311h3f79411_0.conda + - conda: https://prefix.dev/conda-forge/noarch/aiosignal-1.4.0-pyhd8ed1ab_0.conda + - conda: https://prefix.dev/conda-forge/win-64/aom-3.9.1-he0c23c2_0.conda + - conda: https://prefix.dev/conda-forge/noarch/argcomplete-3.6.2-pyhd8ed1ab_0.conda + - conda: https://prefix.dev/conda-forge/win-64/assimp-5.4.3-hf1e84b2_0.conda + - conda: https://prefix.dev/conda-forge/noarch/attrs-25.3.0-pyh71513ae_0.conda + - conda: https://prefix.dev/conda-forge/win-64/blosc-1.21.6-hfd34d9b_1.conda + - conda: https://prefix.dev/conda-forge/win-64/brotli-1.1.0-h2466b09_3.conda + - conda: https://prefix.dev/conda-forge/win-64/brotli-bin-1.1.0-h2466b09_3.conda + - conda: https://prefix.dev/conda-forge/win-64/bullet-3.25-h06a5be4_4.conda + - conda: https://prefix.dev/conda-forge/win-64/bullet-cpp-3.25-hcf9f919_4.conda + - conda: https://prefix.dev/conda-forge/win-64/bzip2-1.0.8-h2466b09_7.conda + - conda: https://prefix.dev/conda-forge/noarch/ca-certificates-2025.8.3-h4c7d964_0.conda + - conda: https://prefix.dev/conda-forge/win-64/cairo-1.18.4-h5782bbf_0.conda + - conda: https://prefix.dev/conda-forge/noarch/catkin_pkg-1.0.0-pyhd8ed1ab_1.conda + - conda: https://prefix.dev/conda-forge/win-64/cffi-1.17.1-py311he736701_0.conda + - conda: https://prefix.dev/conda-forge/win-64/cmake-4.1.0-hdcbee5b_0.conda + - conda: https://prefix.dev/conda-forge/noarch/colorama-0.4.6-pyhd8ed1ab_1.conda + - conda: https://prefix.dev/conda-forge/win-64/console_bridge-1.0.2-h5362a0b_1.tar.bz2 + - conda: https://prefix.dev/conda-forge/win-64/contourpy-1.3.3-py311h3fd045d_1.conda + - conda: https://prefix.dev/conda-forge/win-64/cppcheck-2.18.1-py311he12220e_0.conda + - conda: https://prefix.dev/conda-forge/win-64/cryptography-45.0.6-py311h5e0b3ae_0.conda + - conda: https://prefix.dev/conda-forge/noarch/cycler-0.12.1-pyhd8ed1ab_1.conda + - conda: https://prefix.dev/conda-forge/win-64/dav1d-1.2.1-hcfcfb64_0.conda + - conda: https://prefix.dev/conda-forge/noarch/distro-1.9.0-pyhd8ed1ab_1.conda + - conda: https://prefix.dev/conda-forge/noarch/docutils-0.22-pyhd8ed1ab_0.conda + - conda: https://prefix.dev/conda-forge/win-64/double-conversion-3.3.1-he0c23c2_0.conda + - conda: https://prefix.dev/conda-forge/win-64/eigen-3.4.0-h91493d7_0.conda + - conda: https://prefix.dev/conda-forge/noarch/empy-3.3.4-pyh9f0ad1d_1.tar.bz2 + - conda: https://prefix.dev/conda-forge/noarch/exceptiongroup-1.3.0-pyhd8ed1ab_0.conda + - conda: https://prefix.dev/conda-forge/win-64/expat-2.7.1-hac47afa_0.conda + - conda: https://prefix.dev/conda-forge/win-64/ffmpeg-7.1.1-gpl_haf9914b_907.conda + - conda: https://prefix.dev/conda-forge/noarch/flake8-7.3.0-pyhd8ed1ab_0.conda + - conda: https://prefix.dev/conda-forge/win-64/flann-1.9.2-hb1d4b56_5.conda + - conda: https://prefix.dev/conda-forge/win-64/fmt-11.2.0-h1d4551f_0.conda + - conda: https://prefix.dev/conda-forge/noarch/font-ttf-dejavu-sans-mono-2.37-hab24e00_0.tar.bz2 + - conda: https://prefix.dev/conda-forge/noarch/font-ttf-inconsolata-3.000-h77eed37_0.tar.bz2 + - conda: https://prefix.dev/conda-forge/noarch/font-ttf-source-code-pro-2.038-h77eed37_0.tar.bz2 + - conda: https://prefix.dev/conda-forge/noarch/font-ttf-ubuntu-0.83-h77eed37_3.conda + - conda: https://prefix.dev/conda-forge/win-64/fontconfig-2.15.0-h765892d_1.conda + - conda: https://prefix.dev/conda-forge/noarch/fonts-conda-ecosystem-1-0.tar.bz2 + - conda: https://prefix.dev/conda-forge/noarch/fonts-conda-forge-1-0.tar.bz2 + - conda: https://prefix.dev/conda-forge/win-64/fonttools-4.59.1-py311h3f79411_0.conda + - conda: https://prefix.dev/conda-forge/win-64/foonathan-memory-0.7.3-he0c23c2_1.conda + - conda: https://prefix.dev/conda-forge/win-64/freeglut-3.2.2-he0c23c2_3.conda + - conda: https://prefix.dev/conda-forge/win-64/freeimage-3.18.0-h8310ca0_22.conda + - conda: https://prefix.dev/conda-forge/win-64/freetype-2.13.3-h57928b3_1.conda + - conda: https://prefix.dev/conda-forge/win-64/fribidi-1.0.10-h8d14728_0.tar.bz2 + - conda: https://prefix.dev/conda-forge/win-64/frozenlist-1.7.0-py311hdf60d3a_0.conda + - conda: https://prefix.dev/conda-forge/win-64/gdk-pixbuf-2.42.12-h1f5b9c4_3.conda + - conda: https://prefix.dev/conda-forge/win-64/getopt-win32-0.1-h6a83c73_3.conda + - conda: https://prefix.dev/conda-forge/win-64/gl2ps-1.4.2-had7236b_1.conda + - conda: https://prefix.dev/conda-forge/win-64/glew-2.1.0-h39d44d4_2.tar.bz2 + - conda: https://prefix.dev/conda-forge/win-64/glib-2.84.3-h36503ca_0.conda + - conda: https://prefix.dev/conda-forge/win-64/glib-tools-2.84.3-he647baa_0.conda + - conda: https://prefix.dev/conda-forge/win-64/gmock-1.17.0-h57928b3_1.conda + - conda: https://prefix.dev/conda-forge/win-64/graphite2-1.3.14-hac47afa_2.conda + - conda: https://prefix.dev/conda-forge/win-64/graphviz-12.2.1-hf40819d_1.conda + - conda: https://prefix.dev/conda-forge/win-64/gst-plugins-base-1.24.11-h3fe0a9e_0.conda + - conda: https://prefix.dev/conda-forge/win-64/gstreamer-1.24.11-h233a61a_0.conda + - conda: https://prefix.dev/conda-forge/win-64/gtest-1.17.0-hc790b64_1.conda + - conda: https://prefix.dev/conda-forge/win-64/gts-0.7.6-h6b5321d_4.conda + - conda: https://prefix.dev/conda-forge/win-64/harfbuzz-11.4.2-h5f2951f_0.conda + - conda: https://prefix.dev/conda-forge/win-64/hdf4-4.2.15-h5557f11_7.conda + - conda: https://prefix.dev/conda-forge/win-64/hdf5-1.14.6-nompi_he30205f_103.conda + - conda: https://prefix.dev/conda-forge/win-64/icu-75.1-he0c23c2_0.conda + - conda: https://prefix.dev/conda-forge/noarch/idna-3.10-pyhd8ed1ab_1.conda + - conda: https://prefix.dev/conda-forge/win-64/imath-3.1.12-hbb528cf_0.conda + - conda: https://prefix.dev/conda-forge/noarch/importlib-metadata-8.7.0-pyhe01879c_1.conda + - conda: https://prefix.dev/conda-forge/noarch/importlib_resources-6.5.2-pyhd8ed1ab_0.conda + - conda: https://prefix.dev/conda-forge/noarch/iniconfig-2.0.0-pyhd8ed1ab_1.conda + - conda: https://prefix.dev/conda-forge/win-64/intel-openmp-2025.2.0-h57928b3_757.conda + - conda: https://prefix.dev/conda-forge/win-64/jasper-4.2.8-h8ad263b_0.conda + - conda: https://prefix.dev/conda-forge/win-64/jsoncpp-1.9.6-hda1637e_1.conda + - conda: https://prefix.dev/conda-forge/win-64/jxrlib-1.1-hcfcfb64_3.conda + - conda: https://prefix.dev/conda-forge/win-64/khronos-opencl-icd-loader-2024.10.24-h2466b09_1.conda + - conda: https://prefix.dev/conda-forge/win-64/kiwisolver-1.4.9-py311h275cad7_0.conda + - conda: https://prefix.dev/conda-forge/win-64/krb5-1.21.3-hdf4eb48_0.conda + - conda: https://prefix.dev/conda-forge/win-64/lame-3.100-hcfcfb64_1003.tar.bz2 + - conda: https://prefix.dev/conda-forge/noarch/lark-parser-0.12.0-pyhd8ed1ab_1.conda + - conda: https://prefix.dev/conda-forge/win-64/lcms2-2.17-hbcf6048_0.conda + - conda: https://prefix.dev/conda-forge/win-64/lerc-4.0.0-h6470a55_1.conda + - conda: https://prefix.dev/conda-forge/win-64/libabseil-20250127.1-cxx17_h4eb7d71_0.conda + - conda: https://prefix.dev/conda-forge/win-64/libaec-1.1.4-h20038f6_0.conda + - conda: https://prefix.dev/conda-forge/win-64/libasprintf-0.22.5-h5728263_3.conda + - conda: https://prefix.dev/conda-forge/win-64/libavif16-1.3.0-hf2698fe_0.conda + - conda: https://prefix.dev/conda-forge/win-64/libblas-3.9.0-8_mkl.tar.bz2 + - conda: https://prefix.dev/conda-forge/win-64/libboost-1.86.0-hb0986bb_3.conda + - conda: https://prefix.dev/conda-forge/win-64/libboost-devel-1.86.0-h91493d7_3.conda + - conda: https://prefix.dev/conda-forge/win-64/libboost-headers-1.86.0-h57928b3_3.conda + - conda: https://prefix.dev/conda-forge/win-64/libboost-python-1.86.0-py311h9b10771_3.conda + - conda: https://prefix.dev/conda-forge/win-64/libbrotlicommon-1.1.0-h2466b09_3.conda + - conda: https://prefix.dev/conda-forge/win-64/libbrotlidec-1.1.0-h2466b09_3.conda + - conda: https://prefix.dev/conda-forge/win-64/libbrotlienc-1.1.0-h2466b09_3.conda + - conda: https://prefix.dev/conda-forge/win-64/libcblas-3.9.0-8_mkl.tar.bz2 + - conda: https://prefix.dev/conda-forge/win-64/libclang13-20.1.8-default_hadf22e1_0.conda + - conda: https://prefix.dev/conda-forge/win-64/libcurl-8.14.1-h88aaa65_0.conda + - conda: https://prefix.dev/conda-forge/win-64/libdeflate-1.24-h76ddb4d_0.conda + - conda: https://prefix.dev/conda-forge/win-64/libexpat-2.7.1-hac47afa_0.conda + - conda: https://prefix.dev/conda-forge/win-64/libffi-3.4.6-h537db12_1.conda + - conda: https://prefix.dev/conda-forge/win-64/libfreetype-2.13.3-h57928b3_1.conda + - conda: https://prefix.dev/conda-forge/win-64/libfreetype6-2.13.3-h0b5ce68_1.conda + - conda: https://prefix.dev/conda-forge/win-64/libgcc-15.1.0-h1383e82_4.conda + - conda: https://prefix.dev/conda-forge/win-64/libgd-2.3.3-h7208af6_11.conda + - conda: https://prefix.dev/conda-forge/win-64/libgettextpo-0.22.5-h5728263_3.conda + - conda: https://prefix.dev/conda-forge/win-64/libglib-2.84.3-h1c1036b_0.conda + - conda: https://prefix.dev/conda-forge/win-64/libgomp-15.1.0-h1383e82_4.conda + - conda: https://prefix.dev/conda-forge/win-64/libhwloc-2.12.1-default_h88281d1_1000.conda + - conda: https://prefix.dev/conda-forge/win-64/libiconv-1.18-hc1393d2_2.conda + - conda: https://prefix.dev/conda-forge/win-64/libignition-cmake2-2.17.2-he0c23c2_0.conda + - conda: https://prefix.dev/conda-forge/win-64/libignition-math6-6.15.1-py311hffe65ed_3.conda + - conda: https://prefix.dev/conda-forge/win-64/libintl-0.22.5-h5728263_3.conda + - conda: https://prefix.dev/conda-forge/win-64/libintl-devel-0.22.5-h5728263_3.conda + - conda: https://prefix.dev/conda-forge/win-64/libjpeg-turbo-3.1.0-h2466b09_0.conda + - conda: https://prefix.dev/conda-forge/win-64/liblapack-3.9.0-8_mkl.tar.bz2 + - conda: https://prefix.dev/conda-forge/win-64/liblapacke-3.9.0-8_mkl.tar.bz2 + - conda: https://prefix.dev/conda-forge/win-64/liblzma-5.8.1-h2466b09_2.conda + - conda: https://prefix.dev/conda-forge/win-64/liblzma-devel-5.8.1-h2466b09_2.conda + - conda: https://prefix.dev/conda-forge/win-64/libnetcdf-4.9.2-nompi_ha45073a_118.conda + - conda: https://prefix.dev/conda-forge/win-64/libogg-1.3.5-h2466b09_1.conda + - conda: https://prefix.dev/conda-forge/win-64/libopencv-4.11.0-qt6_py311h2b71597_609.conda + - conda: https://prefix.dev/conda-forge/win-64/libopenvino-2025.0.0-hb1d9b14_3.conda + - conda: https://prefix.dev/conda-forge/win-64/libopenvino-auto-batch-plugin-2025.0.0-h04f32e0_3.conda + - conda: https://prefix.dev/conda-forge/win-64/libopenvino-auto-plugin-2025.0.0-h04f32e0_3.conda + - conda: https://prefix.dev/conda-forge/win-64/libopenvino-hetero-plugin-2025.0.0-hb61b842_3.conda + - conda: https://prefix.dev/conda-forge/win-64/libopenvino-intel-cpu-plugin-2025.0.0-hb1d9b14_3.conda + - conda: https://prefix.dev/conda-forge/win-64/libopenvino-intel-gpu-plugin-2025.0.0-hb1d9b14_3.conda + - conda: https://prefix.dev/conda-forge/win-64/libopenvino-ir-frontend-2025.0.0-hb61b842_3.conda + - conda: https://prefix.dev/conda-forge/win-64/libopenvino-onnx-frontend-2025.0.0-hf9c6bd6_3.conda + - conda: https://prefix.dev/conda-forge/win-64/libopenvino-paddle-frontend-2025.0.0-hf9c6bd6_3.conda + - conda: https://prefix.dev/conda-forge/win-64/libopenvino-pytorch-frontend-2025.0.0-he0c23c2_3.conda + - conda: https://prefix.dev/conda-forge/win-64/libopenvino-tensorflow-frontend-2025.0.0-hd51e7bd_3.conda + - conda: https://prefix.dev/conda-forge/win-64/libopenvino-tensorflow-lite-frontend-2025.0.0-he0c23c2_3.conda + - conda: https://prefix.dev/conda-forge/win-64/libopus-1.5.2-h2466b09_0.conda + - conda: https://prefix.dev/conda-forge/win-64/libpng-1.6.50-h7351971_1.conda + - conda: https://prefix.dev/conda-forge/win-64/libprotobuf-5.29.3-hd33f5f0_2.conda + - conda: https://prefix.dev/conda-forge/win-64/libraw-0.21.4-h866491b_0.conda + - conda: https://prefix.dev/conda-forge/win-64/librsvg-2.58.4-h5ce5fed_3.conda + - conda: https://prefix.dev/conda-forge/win-64/libsqlite-3.50.4-hf5d6505_0.conda + - conda: https://prefix.dev/conda-forge/win-64/libssh2-1.11.1-h9aa295b_0.conda + - conda: https://prefix.dev/conda-forge/win-64/libtheora-1.1.1-hc70643c_1006.conda + - conda: https://prefix.dev/conda-forge/win-64/libtiff-4.7.0-h550210a_6.conda + - conda: https://prefix.dev/conda-forge/win-64/libusb-1.0.29-h1839187_0.conda + - conda: https://prefix.dev/conda-forge/win-64/libuv-1.51.0-hfd05255_1.conda + - conda: https://prefix.dev/conda-forge/win-64/libvorbis-1.3.7-h5112557_2.conda + - conda: https://prefix.dev/conda-forge/win-64/libwebp-base-1.6.0-h4d5522a_0.conda + - conda: https://prefix.dev/conda-forge/win-64/libwinpthread-12.0.0.r4.gg4f2fc60ca-h57928b3_9.conda + - conda: https://prefix.dev/conda-forge/win-64/libxcb-1.17.0-h0e4246c_0.conda + - conda: https://prefix.dev/conda-forge/win-64/libxml2-2.13.8-h741aa76_1.conda + - conda: https://prefix.dev/conda-forge/win-64/libxslt-1.1.43-h25c3957_0.conda + - conda: https://prefix.dev/conda-forge/win-64/libzip-1.11.2-h3135430_0.conda + - conda: https://prefix.dev/conda-forge/win-64/libzlib-1.3.1-h2466b09_2.conda + - conda: https://prefix.dev/conda-forge/noarch/loguru-0.7.3-pyh7428d3b_0.conda + - conda: https://prefix.dev/conda-forge/win-64/lxml-6.0.0-py311hea5fcc3_0.conda + - conda: https://prefix.dev/conda-forge/win-64/lz4-c-1.10.0-h2466b09_1.conda + - conda: https://prefix.dev/conda-forge/win-64/matplotlib-base-3.10.5-py311h1675fdf_0.conda + - conda: https://prefix.dev/conda-forge/noarch/mccabe-0.7.0-pyhd8ed1ab_1.conda + - conda: https://prefix.dev/conda-forge/win-64/mkl-2020.4-hb70f87d_311.tar.bz2 + - conda: https://prefix.dev/conda-forge/win-64/msgpack-python-1.1.1-py311h3257749_0.conda + - conda: https://prefix.dev/conda-forge/win-64/multidict-6.6.3-py311h3f79411_0.conda + - conda: https://prefix.dev/conda-forge/noarch/munkres-1.1.4-pyhd8ed1ab_1.conda + - conda: https://prefix.dev/conda-forge/win-64/netifaces-0.11.0-py311he736701_3.conda + - conda: https://prefix.dev/conda-forge/win-64/nlohmann_json-3.12.0-he0c23c2_0.conda + - conda: https://prefix.dev/conda-forge/win-64/numpy-1.26.4-py311h0b4df5a_0.conda + - conda: https://prefix.dev/conda-forge/win-64/opencl-headers-2025.06.13-he0c23c2_0.conda + - conda: https://prefix.dev/conda-forge/win-64/openexr-3.3.5-h4750f91_0.conda + - conda: https://prefix.dev/conda-forge/win-64/openh264-2.6.0-hb17fa0b_0.conda + - conda: https://prefix.dev/conda-forge/win-64/openjpeg-2.5.3-h24db6dd_1.conda + - conda: https://prefix.dev/conda-forge/win-64/openssl-3.5.2-h725018a_0.conda + - conda: https://prefix.dev/conda-forge/win-64/orocos-kdl-1.5.1-he0c23c2_8.conda + - conda: https://prefix.dev/conda-forge/noarch/packaging-25.0-pyh29332c3_1.conda + - conda: https://prefix.dev/conda-forge/win-64/pango-1.56.4-h03d888a_0.conda + - conda: https://prefix.dev/conda-forge/win-64/pcl-1.15.0-hd388526_2.conda + - conda: https://prefix.dev/conda-forge/win-64/pcre-8.45-h0e60522_0.tar.bz2 + - conda: https://prefix.dev/conda-forge/win-64/pcre2-10.45-h99c9b8b_0.conda + - conda: https://prefix.dev/conda-forge/noarch/pep517-0.13.0-pyhd8ed1ab_0.tar.bz2 + - conda: https://prefix.dev/conda-forge/win-64/pillow-11.3.0-py311h0f9b5fc_0.conda + - conda: https://prefix.dev/conda-forge/win-64/pixman-0.46.4-h5112557_1.conda + - conda: https://prefix.dev/conda-forge/win-64/pkg-config-0.29.2-h88c491f_1009.conda + - conda: https://prefix.dev/conda-forge/noarch/pluggy-1.6.0-pyhd8ed1ab_0.conda + - conda: https://prefix.dev/conda-forge/noarch/ply-3.11-pyhd8ed1ab_3.conda + - conda: https://prefix.dev/conda-forge/win-64/proj-9.6.2-h7990399_2.conda + - conda: https://prefix.dev/conda-forge/win-64/propcache-0.3.1-py311h5082efb_0.conda + - conda: https://prefix.dev/conda-forge/win-64/psutil-7.0.0-py311h3485c13_1.conda + - conda: https://prefix.dev/conda-forge/win-64/pthread-stubs-0.4-h0e40799_1002.conda + - conda: https://prefix.dev/conda-forge/win-64/pugixml-1.15-h372dad0_0.conda + - conda: https://prefix.dev/conda-forge/win-64/py-opencv-4.11.0-qt6_py311h336b8d4_609.conda + - conda: https://prefix.dev/conda-forge/noarch/pybind11-3.0.0-pyh9380348_1.conda + - conda: https://prefix.dev/conda-forge/noarch/pybind11-abi-11-hc364b38_1.conda + - conda: https://prefix.dev/conda-forge/noarch/pybind11-global-3.0.0-pyh229d059_1.conda + - conda: https://prefix.dev/conda-forge/win-64/pybullet-3.25-py311h42043a9_4.conda + - conda: https://prefix.dev/conda-forge/win-64/pycairo-1.28.0-py311h80daabd_0.conda + - conda: https://prefix.dev/conda-forge/noarch/pycodestyle-2.14.0-pyhd8ed1ab_0.conda + - conda: https://prefix.dev/conda-forge/noarch/pycparser-2.22-pyh29332c3_1.conda + - conda: https://prefix.dev/conda-forge/noarch/pydocstyle-6.3.0-pyhd8ed1ab_1.conda + - conda: https://prefix.dev/conda-forge/win-64/pydot-4.0.1-py311h1ea47a8_0.conda + - conda: https://prefix.dev/conda-forge/noarch/pyflakes-3.4.0-pyhd8ed1ab_0.conda + - conda: https://prefix.dev/conda-forge/noarch/pygments-2.19.2-pyhd8ed1ab_0.conda + - conda: https://prefix.dev/conda-forge/noarch/pyparsing-3.2.3-pyhe01879c_2.conda + - conda: https://prefix.dev/conda-forge/win-64/pyqt-5.15.11-py311h2d05f59_1.conda + - conda: https://prefix.dev/conda-forge/noarch/pyqt-builder-1.15.4-pyhd8ed1ab_1.conda + - conda: https://prefix.dev/conda-forge/win-64/pyqt5-sip-12.17.0-py311hda3d55a_1.conda + - conda: https://prefix.dev/conda-forge/noarch/pytest-8.4.1-pyhd8ed1ab_0.conda + - conda: https://prefix.dev/conda-forge/win-64/python-3.11.13-h3f84c4b_0_cpython.conda + - conda: https://prefix.dev/conda-forge/noarch/python-dateutil-2.9.0.post0-pyhe01879c_2.conda + - conda: https://prefix.dev/conda-forge/win-64/python-orocos-kdl-1.5.1-py311hda3d55a_8.conda + - conda: https://prefix.dev/conda-forge/noarch/python_abi-3.11-8_cp311.conda + - conda: https://prefix.dev/conda-forge/win-64/pyyaml-6.0.2-py311h5082efb_2.conda + - conda: https://prefix.dev/conda-forge/win-64/qhull-2020.2-hc790b64_5.conda + - conda: https://prefix.dev/conda-forge/win-64/qt-main-5.15.15-h9151539_4.conda + - conda: https://prefix.dev/conda-forge/win-64/qt6-main-6.9.1-h02ddd7d_2.conda + - conda: https://prefix.dev/conda-forge/win-64/rav1e-0.7.1-ha073cba_3.conda + - conda: https://prefix.dev/robostack-staging/win-64/ros-humble-action-msgs-1.2.1-np126py311hd5de103_13.conda + - conda: https://prefix.dev/robostack-staging/win-64/ros-humble-action-tutorials-cpp-0.20.5-np126py311hd5de103_13.conda + - conda: https://prefix.dev/robostack-staging/win-64/ros-humble-action-tutorials-interfaces-0.20.5-np126py311hd5de103_13.conda + - conda: https://prefix.dev/robostack-staging/win-64/ros-humble-action-tutorials-py-0.20.5-np126py311hd5de103_13.conda + - conda: https://prefix.dev/robostack-staging/win-64/ros-humble-actionlib-msgs-4.9.0-np126py311hd5de103_13.conda + - conda: https://prefix.dev/robostack-staging/win-64/ros-humble-ament-cmake-1.3.12-np126py311hd5de103_13.conda + - conda: https://prefix.dev/robostack-staging/win-64/ros-humble-ament-cmake-auto-1.3.12-np126py311hd5de103_13.conda + - conda: https://prefix.dev/robostack-staging/win-64/ros-humble-ament-cmake-copyright-0.12.12-np126py311hd5de103_13.conda + - conda: https://prefix.dev/robostack-staging/win-64/ros-humble-ament-cmake-core-1.3.12-np126py311hd5de103_13.conda + - conda: https://prefix.dev/robostack-staging/win-64/ros-humble-ament-cmake-cppcheck-0.12.12-np126py311hd5de103_13.conda + - conda: https://prefix.dev/robostack-staging/win-64/ros-humble-ament-cmake-cpplint-0.12.12-np126py311hd5de103_13.conda + - conda: https://prefix.dev/robostack-staging/win-64/ros-humble-ament-cmake-export-definitions-1.3.12-np126py311hd5de103_13.conda + - conda: https://prefix.dev/robostack-staging/win-64/ros-humble-ament-cmake-export-dependencies-1.3.12-np126py311hd5de103_13.conda + - conda: https://prefix.dev/robostack-staging/win-64/ros-humble-ament-cmake-export-include-directories-1.3.12-np126py311hd5de103_13.conda + - conda: https://prefix.dev/robostack-staging/win-64/ros-humble-ament-cmake-export-interfaces-1.3.12-np126py311hd5de103_13.conda + - conda: https://prefix.dev/robostack-staging/win-64/ros-humble-ament-cmake-export-libraries-1.3.12-np126py311hd5de103_13.conda + - conda: https://prefix.dev/robostack-staging/win-64/ros-humble-ament-cmake-export-link-flags-1.3.12-np126py311hd5de103_13.conda + - conda: https://prefix.dev/robostack-staging/win-64/ros-humble-ament-cmake-export-targets-1.3.12-np126py311hd5de103_13.conda + - conda: https://prefix.dev/robostack-staging/win-64/ros-humble-ament-cmake-flake8-0.12.12-np126py311hd5de103_13.conda + - conda: https://prefix.dev/robostack-staging/win-64/ros-humble-ament-cmake-gen-version-h-1.3.12-np126py311hd5de103_13.conda + - conda: https://prefix.dev/robostack-staging/win-64/ros-humble-ament-cmake-gmock-1.3.12-np126py311hd5de103_13.conda + - conda: https://prefix.dev/robostack-staging/win-64/ros-humble-ament-cmake-gtest-1.3.12-np126py311hd5de103_13.conda + - conda: https://prefix.dev/robostack-staging/win-64/ros-humble-ament-cmake-include-directories-1.3.12-np126py311hd5de103_13.conda + - conda: https://prefix.dev/robostack-staging/win-64/ros-humble-ament-cmake-libraries-1.3.12-np126py311hd5de103_13.conda + - conda: https://prefix.dev/robostack-staging/win-64/ros-humble-ament-cmake-lint-cmake-0.12.12-np126py311hd5de103_13.conda + - conda: https://prefix.dev/robostack-staging/win-64/ros-humble-ament-cmake-pep257-0.12.12-np126py311hd5de103_13.conda + - conda: https://prefix.dev/robostack-staging/win-64/ros-humble-ament-cmake-pytest-1.3.12-np126py311hd5de103_13.conda + - conda: https://prefix.dev/robostack-staging/win-64/ros-humble-ament-cmake-python-1.3.12-np126py311hd5de103_13.conda + - conda: https://prefix.dev/robostack-staging/win-64/ros-humble-ament-cmake-ros-0.10.0-np126py311hd5de103_13.conda + - conda: https://prefix.dev/robostack-staging/win-64/ros-humble-ament-cmake-target-dependencies-1.3.12-np126py311hd5de103_13.conda + - conda: https://prefix.dev/robostack-staging/win-64/ros-humble-ament-cmake-test-1.3.12-np126py311hd5de103_13.conda + - conda: https://prefix.dev/robostack-staging/win-64/ros-humble-ament-cmake-uncrustify-0.12.12-np126py311hd5de103_13.conda + - conda: https://prefix.dev/robostack-staging/win-64/ros-humble-ament-cmake-version-1.3.12-np126py311hd5de103_13.conda + - conda: https://prefix.dev/robostack-staging/win-64/ros-humble-ament-cmake-xmllint-0.12.12-np126py311hd5de103_13.conda + - conda: https://prefix.dev/robostack-staging/win-64/ros-humble-ament-copyright-0.12.12-np126py311hd5de103_13.conda + - conda: https://prefix.dev/robostack-staging/win-64/ros-humble-ament-cppcheck-0.12.12-np126py311hd5de103_13.conda + - conda: https://prefix.dev/robostack-staging/win-64/ros-humble-ament-cpplint-0.12.12-np126py311hd5de103_13.conda + - conda: https://prefix.dev/robostack-staging/win-64/ros-humble-ament-flake8-0.12.12-np126py311hd5de103_13.conda + - conda: https://prefix.dev/robostack-staging/win-64/ros-humble-ament-index-cpp-1.4.0-np126py311hd5de103_13.conda + - conda: https://prefix.dev/robostack-staging/win-64/ros-humble-ament-index-python-1.4.0-np126py311hd5de103_13.conda + - conda: https://prefix.dev/robostack-staging/win-64/ros-humble-ament-lint-0.12.12-np126py311hd5de103_13.conda + - conda: https://prefix.dev/robostack-staging/win-64/ros-humble-ament-lint-auto-0.12.12-np126py311hd5de103_13.conda + - conda: https://prefix.dev/robostack-staging/win-64/ros-humble-ament-lint-cmake-0.12.12-np126py311hd5de103_13.conda + - conda: https://prefix.dev/robostack-staging/win-64/ros-humble-ament-lint-common-0.12.12-np126py311hd5de103_13.conda + - conda: https://prefix.dev/robostack-staging/win-64/ros-humble-ament-package-0.14.1-np126py311hd5de103_13.conda + - conda: https://prefix.dev/robostack-staging/win-64/ros-humble-ament-pep257-0.12.12-np126py311hd5de103_13.conda + - conda: https://prefix.dev/robostack-staging/win-64/ros-humble-ament-uncrustify-0.12.12-np126py311hd5de103_13.conda + - conda: https://prefix.dev/robostack-staging/win-64/ros-humble-ament-xmllint-0.12.12-np126py311hd5de103_13.conda + - conda: https://prefix.dev/robostack-staging/win-64/ros-humble-angles-1.15.0-np126py311hd5de103_13.conda + - conda: https://prefix.dev/robostack-staging/win-64/ros-humble-builtin-interfaces-1.2.1-np126py311hd5de103_13.conda + - conda: https://prefix.dev/robostack-staging/win-64/ros-humble-class-loader-2.2.0-np126py311hd5de103_13.conda + - conda: https://prefix.dev/robostack-staging/win-64/ros-humble-common-interfaces-4.9.0-np126py311hd5de103_13.conda + - conda: https://prefix.dev/robostack-staging/win-64/ros-humble-composition-0.20.5-np126py311hd5de103_13.conda + - conda: https://prefix.dev/robostack-staging/win-64/ros-humble-composition-interfaces-1.2.1-np126py311hd5de103_13.conda + - conda: https://prefix.dev/robostack-staging/win-64/ros-humble-console-bridge-vendor-1.4.1-np126py311hd5de103_13.conda + - conda: https://prefix.dev/robostack-staging/win-64/ros-humble-cv-bridge-3.2.1-np126py311hbbd77cb_13.conda + - conda: https://prefix.dev/robostack-staging/win-64/ros-humble-cyclonedds-0.10.5-np126py311hd5de103_13.conda + - conda: https://prefix.dev/robostack-staging/win-64/ros-humble-demo-nodes-cpp-0.20.5-np126py311hd5de103_13.conda + - conda: https://prefix.dev/robostack-staging/win-64/ros-humble-demo-nodes-cpp-native-0.20.5-np126py311hd5de103_13.conda + - conda: https://prefix.dev/robostack-staging/win-64/ros-humble-demo-nodes-py-0.20.5-np126py311hd5de103_13.conda + - conda: https://prefix.dev/robostack-staging/win-64/ros-humble-depthimage-to-laserscan-2.5.1-np126py311hbbd77cb_13.conda + - conda: https://prefix.dev/robostack-staging/win-64/ros-humble-desktop-0.10.0-np126py311hd5de103_13.conda + - conda: https://prefix.dev/robostack-staging/win-64/ros-humble-diagnostic-msgs-4.9.0-np126py311hd5de103_13.conda + - conda: https://prefix.dev/robostack-staging/win-64/ros-humble-domain-coordinator-0.10.0-np126py311hd5de103_13.conda + - conda: https://prefix.dev/robostack-staging/win-64/ros-humble-dummy-map-server-0.20.5-np126py311hd5de103_13.conda + - conda: https://prefix.dev/robostack-staging/win-64/ros-humble-dummy-robot-bringup-0.20.5-np126py311hd5de103_13.conda + - conda: https://prefix.dev/robostack-staging/win-64/ros-humble-dummy-sensors-0.20.5-np126py311hd5de103_13.conda + - conda: https://prefix.dev/robostack-staging/win-64/ros-humble-eigen3-cmake-module-0.1.1-np126py311hd5de103_13.conda + - conda: https://prefix.dev/robostack-staging/win-64/ros-humble-example-interfaces-0.9.3-np126py311hd5de103_13.conda + - conda: https://prefix.dev/robostack-staging/win-64/ros-humble-examples-rclcpp-minimal-action-client-0.15.3-np126py311hd5de103_13.conda + - conda: https://prefix.dev/robostack-staging/win-64/ros-humble-examples-rclcpp-minimal-action-server-0.15.3-np126py311hd5de103_13.conda + - conda: https://prefix.dev/robostack-staging/win-64/ros-humble-examples-rclcpp-minimal-client-0.15.3-np126py311hd5de103_13.conda + - conda: https://prefix.dev/robostack-staging/win-64/ros-humble-examples-rclcpp-minimal-composition-0.15.3-np126py311hd5de103_13.conda + - conda: https://prefix.dev/robostack-staging/win-64/ros-humble-examples-rclcpp-minimal-publisher-0.15.3-np126py311hd5de103_13.conda + - conda: https://prefix.dev/robostack-staging/win-64/ros-humble-examples-rclcpp-minimal-service-0.15.3-np126py311hd5de103_13.conda + - conda: https://prefix.dev/robostack-staging/win-64/ros-humble-examples-rclcpp-minimal-subscriber-0.15.3-np126py311hd5de103_13.conda + - conda: https://prefix.dev/robostack-staging/win-64/ros-humble-examples-rclcpp-minimal-timer-0.15.3-np126py311hd5de103_13.conda + - conda: https://prefix.dev/robostack-staging/win-64/ros-humble-examples-rclcpp-multithreaded-executor-0.15.3-np126py311hd5de103_13.conda + - conda: https://prefix.dev/robostack-staging/win-64/ros-humble-examples-rclpy-executors-0.15.3-np126py311hd5de103_13.conda + - conda: https://prefix.dev/robostack-staging/win-64/ros-humble-examples-rclpy-minimal-action-client-0.15.3-np126py311hd5de103_13.conda + - conda: https://prefix.dev/robostack-staging/win-64/ros-humble-examples-rclpy-minimal-action-server-0.15.3-np126py311hd5de103_13.conda + - conda: https://prefix.dev/robostack-staging/win-64/ros-humble-examples-rclpy-minimal-client-0.15.3-np126py311hd5de103_13.conda + - conda: https://prefix.dev/robostack-staging/win-64/ros-humble-examples-rclpy-minimal-publisher-0.15.3-np126py311hd5de103_13.conda + - conda: https://prefix.dev/robostack-staging/win-64/ros-humble-examples-rclpy-minimal-service-0.15.3-np126py311hd5de103_13.conda + - conda: https://prefix.dev/robostack-staging/win-64/ros-humble-examples-rclpy-minimal-subscriber-0.15.3-np126py311hd5de103_13.conda + - conda: https://prefix.dev/robostack-staging/win-64/ros-humble-fastcdr-1.0.24-np126py311hd5de103_13.conda + - conda: https://prefix.dev/robostack-staging/win-64/ros-humble-fastrtps-2.6.10-np126py311hd5de103_13.conda + - conda: https://prefix.dev/robostack-staging/win-64/ros-humble-fastrtps-cmake-module-2.2.2-np126py311hd5de103_13.conda + - conda: https://prefix.dev/robostack-staging/win-64/ros-humble-foonathan-memory-vendor-1.2.0-np126py311hd5de103_13.conda + - conda: https://prefix.dev/robostack-staging/win-64/ros-humble-geometry-msgs-4.9.0-np126py311hd5de103_13.conda + - conda: https://prefix.dev/robostack-staging/win-64/ros-humble-geometry2-0.25.14-np126py311hd5de103_13.conda + - conda: https://prefix.dev/robostack-staging/win-64/ros-humble-gmock-vendor-1.10.9006-np126py311hd5de103_13.conda + - conda: https://prefix.dev/robostack-staging/win-64/ros-humble-gtest-vendor-1.10.9006-np126py311hd5de103_13.conda + - conda: https://prefix.dev/robostack-staging/win-64/ros-humble-iceoryx-binding-c-2.0.5-np126py311hd5de103_13.conda + - conda: https://prefix.dev/robostack-staging/win-64/ros-humble-iceoryx-hoofs-2.0.5-np126py311hd5de103_13.conda + - conda: https://prefix.dev/robostack-staging/win-64/ros-humble-iceoryx-posh-2.0.5-np126py311hd5de103_13.conda + - conda: https://prefix.dev/robostack-staging/win-64/ros-humble-ignition-cmake2-vendor-0.0.2-np126py311h4715f36_13.conda + - conda: https://prefix.dev/robostack-staging/win-64/ros-humble-ignition-math6-vendor-0.0.2-np126py311hd5de103_13.conda + - conda: https://prefix.dev/robostack-staging/win-64/ros-humble-image-geometry-3.2.1-np126py311hbbd77cb_13.conda + - conda: https://prefix.dev/robostack-staging/win-64/ros-humble-image-tools-0.20.5-np126py311hbbd77cb_13.conda + - conda: https://prefix.dev/robostack-staging/win-64/ros-humble-image-transport-3.1.12-np126py311hd5de103_13.conda + - conda: https://prefix.dev/robostack-staging/win-64/ros-humble-interactive-markers-2.3.2-np126py311hd5de103_13.conda + - conda: https://prefix.dev/robostack-staging/win-64/ros-humble-intra-process-demo-0.20.5-np126py311hbbd77cb_13.conda + - conda: https://prefix.dev/robostack-staging/win-64/ros-humble-joy-3.3.0-np126py311hd5de103_13.conda + - conda: https://prefix.dev/robostack-staging/win-64/ros-humble-kdl-parser-2.6.4-np126py311hd5de103_13.conda + - conda: https://prefix.dev/robostack-staging/win-64/ros-humble-keyboard-handler-0.0.5-np126py311hd5de103_13.conda + - conda: https://prefix.dev/robostack-staging/win-64/ros-humble-laser-geometry-2.4.0-np126py311hd5de103_13.conda + - conda: https://prefix.dev/robostack-staging/win-64/ros-humble-launch-1.0.9-np126py311hd5de103_13.conda + - conda: https://prefix.dev/robostack-staging/win-64/ros-humble-launch-ros-0.19.10-np126py311hd5de103_13.conda + - conda: https://prefix.dev/robostack-staging/win-64/ros-humble-launch-testing-1.0.9-np126py311hd5de103_13.conda + - conda: https://prefix.dev/robostack-staging/win-64/ros-humble-launch-testing-ament-cmake-1.0.9-np126py311hd5de103_13.conda + - conda: https://prefix.dev/robostack-staging/win-64/ros-humble-launch-testing-ros-0.19.10-np126py311hd5de103_13.conda + - conda: https://prefix.dev/robostack-staging/win-64/ros-humble-launch-xml-1.0.9-np126py311hd5de103_13.conda + - conda: https://prefix.dev/robostack-staging/win-64/ros-humble-launch-yaml-1.0.9-np126py311hd5de103_13.conda + - conda: https://prefix.dev/robostack-staging/win-64/ros-humble-libcurl-vendor-3.1.3-np126py311hd5de103_13.conda + - conda: https://prefix.dev/robostack-staging/win-64/ros-humble-libstatistics-collector-1.3.4-np126py311hd5de103_13.conda + - conda: https://prefix.dev/robostack-staging/win-64/ros-humble-libyaml-vendor-1.2.2-np126py311hd5de103_13.conda + - conda: https://prefix.dev/robostack-staging/win-64/ros-humble-lifecycle-0.20.5-np126py311hd5de103_13.conda + - conda: https://prefix.dev/robostack-staging/win-64/ros-humble-lifecycle-msgs-1.2.1-np126py311hd5de103_13.conda + - conda: https://prefix.dev/robostack-staging/win-64/ros-humble-logging-demo-0.20.5-np126py311hd5de103_13.conda + - conda: https://prefix.dev/robostack-staging/win-64/ros-humble-map-msgs-2.1.0-np126py311hd5de103_13.conda + - conda: https://prefix.dev/robostack-staging/win-64/ros-humble-message-filters-4.3.7-np126py311hd5de103_13.conda + - conda: https://prefix.dev/robostack-staging/win-64/ros-humble-nav-msgs-4.9.0-np126py311hd5de103_13.conda + - conda: https://prefix.dev/robostack-staging/win-64/ros-humble-orocos-kdl-vendor-0.2.5-np126py311hd5de103_13.conda + - conda: https://prefix.dev/robostack-staging/win-64/ros-humble-osrf-pycommon-2.1.6-np126py311hd5de103_13.conda + - conda: https://prefix.dev/robostack-staging/win-64/ros-humble-pcl-conversions-2.4.5-np126py311hd5de103_13.conda + - conda: https://prefix.dev/robostack-staging/win-64/ros-humble-pcl-msgs-1.0.0-np126py311hd5de103_13.conda + - conda: https://prefix.dev/robostack-staging/win-64/ros-humble-pendulum-msgs-0.20.5-np126py311hd5de103_13.conda + - conda: https://prefix.dev/robostack-staging/win-64/ros-humble-pluginlib-5.1.0-np126py311hd5de103_13.conda + - conda: https://prefix.dev/robostack-staging/win-64/ros-humble-pybind11-vendor-2.4.2-np126py311hd5de103_13.conda + - conda: https://prefix.dev/robostack-staging/win-64/ros-humble-python-cmake-module-0.10.0-np126py311hd5de103_13.conda + - conda: https://prefix.dev/robostack-staging/win-64/ros-humble-python-orocos-kdl-vendor-0.2.5-np126py311hd5de103_13.conda + - conda: https://prefix.dev/robostack-staging/win-64/ros-humble-python-qt-binding-1.1.2-np126py311hd5de103_13.conda + - conda: https://prefix.dev/robostack-staging/win-64/ros-humble-qt-dotgraph-2.2.4-np126py311hd5de103_13.conda + - conda: https://prefix.dev/robostack-staging/win-64/ros-humble-qt-gui-2.2.4-np126py311hd5de103_13.conda + - conda: https://prefix.dev/robostack-staging/win-64/ros-humble-qt-gui-cpp-2.2.4-np126py311hd5de103_13.conda + - conda: https://prefix.dev/robostack-staging/win-64/ros-humble-qt-gui-py-common-2.2.4-np126py311hd5de103_13.conda + - conda: https://prefix.dev/robostack-staging/win-64/ros-humble-quality-of-service-demo-cpp-0.20.5-np126py311hd5de103_13.conda + - conda: https://prefix.dev/robostack-staging/win-64/ros-humble-quality-of-service-demo-py-0.20.5-np126py311hd5de103_13.conda + - conda: https://prefix.dev/robostack-staging/win-64/ros-humble-rcl-5.3.9-np126py311hd5de103_13.conda + - conda: https://prefix.dev/robostack-staging/win-64/ros-humble-rcl-action-5.3.9-np126py311hd5de103_13.conda + - conda: https://prefix.dev/robostack-staging/win-64/ros-humble-rcl-interfaces-1.2.1-np126py311hd5de103_13.conda + - conda: https://prefix.dev/robostack-staging/win-64/ros-humble-rcl-lifecycle-5.3.9-np126py311hd5de103_13.conda + - conda: https://prefix.dev/robostack-staging/win-64/ros-humble-rcl-logging-interface-2.3.1-np126py311hd5de103_13.conda + - conda: https://prefix.dev/robostack-staging/win-64/ros-humble-rcl-logging-spdlog-2.3.1-np126py311hc120487_13.conda + - conda: https://prefix.dev/robostack-staging/win-64/ros-humble-rcl-yaml-param-parser-5.3.9-np126py311hd5de103_13.conda + - conda: https://prefix.dev/robostack-staging/win-64/ros-humble-rclcpp-16.0.13-np126py311hd5de103_13.conda + - conda: https://prefix.dev/robostack-staging/win-64/ros-humble-rclcpp-action-16.0.13-np126py311hd5de103_13.conda + - conda: https://prefix.dev/robostack-staging/win-64/ros-humble-rclcpp-components-16.0.13-np126py311hd5de103_13.conda + - conda: https://prefix.dev/robostack-staging/win-64/ros-humble-rclcpp-lifecycle-16.0.13-np126py311hd5de103_13.conda + - conda: https://prefix.dev/robostack-staging/win-64/ros-humble-rclpy-3.3.16-np126py311hd5de103_13.conda + - conda: https://prefix.dev/robostack-staging/win-64/ros-humble-rcpputils-2.4.5-np126py311hd5de103_13.conda + - conda: https://prefix.dev/robostack-staging/win-64/ros-humble-rcutils-5.1.6-np126py311hd5de103_13.conda + - conda: https://prefix.dev/robostack-staging/win-64/ros-humble-resource-retriever-3.1.3-np126py311hd5de103_13.conda + - conda: https://prefix.dev/robostack-staging/win-64/ros-humble-rmw-6.1.2-np126py311hd5de103_13.conda + - conda: https://prefix.dev/robostack-staging/win-64/ros-humble-rmw-connextdds-0.11.3-np126py311hd5de103_13.conda + - conda: https://prefix.dev/robostack-staging/win-64/ros-humble-rmw-connextdds-common-0.11.3-np126py311hd5de103_13.conda + - conda: https://prefix.dev/robostack-staging/win-64/ros-humble-rmw-cyclonedds-cpp-1.3.4-np126py311hd5de103_13.conda + - conda: https://prefix.dev/robostack-staging/win-64/ros-humble-rmw-dds-common-1.6.0-np126py311hd5de103_13.conda + - conda: https://prefix.dev/robostack-staging/win-64/ros-humble-rmw-fastrtps-cpp-6.2.7-np126py311hd5de103_13.conda + - conda: https://prefix.dev/robostack-staging/win-64/ros-humble-rmw-fastrtps-dynamic-cpp-6.2.7-np126py311hd5de103_13.conda + - conda: https://prefix.dev/robostack-staging/win-64/ros-humble-rmw-fastrtps-shared-cpp-6.2.7-np126py311hd5de103_13.conda + - conda: https://prefix.dev/robostack-staging/win-64/ros-humble-rmw-implementation-2.8.4-np126py311hd5de103_13.conda + - conda: https://prefix.dev/robostack-staging/win-64/ros-humble-rmw-implementation-cmake-6.1.2-np126py311hd5de103_13.conda + - conda: https://prefix.dev/robostack-staging/win-64/ros-humble-robot-state-publisher-3.0.3-np126py311hd5de103_13.conda + - conda: https://prefix.dev/robostack-staging/win-64/ros-humble-ros-base-0.10.0-np126py311hd5de103_13.conda + - conda: https://prefix.dev/robostack-staging/win-64/ros-humble-ros-core-0.10.0-np126py311hd5de103_13.conda + - conda: https://prefix.dev/robostack-staging/win-64/ros-humble-ros-environment-3.2.2-np126py311hd5de103_13.conda + - conda: https://prefix.dev/robostack-staging/win-64/ros-humble-ros-workspace-1.0.2-np126py311hd5de103_13.conda + - conda: https://prefix.dev/robostack-staging/win-64/ros-humble-ros2action-0.18.12-np126py311hd5de103_13.conda + - conda: https://prefix.dev/robostack-staging/win-64/ros-humble-ros2bag-0.15.14-np126py311hd5de103_13.conda + - conda: https://prefix.dev/robostack-staging/win-64/ros-humble-ros2cli-0.18.12-np126py311hd5de103_13.conda + - conda: https://prefix.dev/robostack-staging/win-64/ros-humble-ros2cli-common-extensions-0.1.1-np126py311hd5de103_13.conda + - conda: https://prefix.dev/robostack-staging/win-64/ros-humble-ros2component-0.18.12-np126py311hd5de103_13.conda + - conda: https://prefix.dev/robostack-staging/win-64/ros-humble-ros2doctor-0.18.12-np126py311hd5de103_13.conda + - conda: https://prefix.dev/robostack-staging/win-64/ros-humble-ros2interface-0.18.12-np126py311hd5de103_13.conda + - conda: https://prefix.dev/robostack-staging/win-64/ros-humble-ros2launch-0.19.10-np126py311hd5de103_13.conda + - conda: https://prefix.dev/robostack-staging/win-64/ros-humble-ros2lifecycle-0.18.12-np126py311hd5de103_13.conda + - conda: https://prefix.dev/robostack-staging/win-64/ros-humble-ros2multicast-0.18.12-np126py311hd5de103_13.conda + - conda: https://prefix.dev/robostack-staging/win-64/ros-humble-ros2node-0.18.12-np126py311hd5de103_13.conda + - conda: https://prefix.dev/robostack-staging/win-64/ros-humble-ros2param-0.18.12-np126py311hd5de103_13.conda + - conda: https://prefix.dev/robostack-staging/win-64/ros-humble-ros2pkg-0.18.12-np126py311hd5de103_13.conda + - conda: https://prefix.dev/robostack-staging/win-64/ros-humble-ros2run-0.18.12-np126py311hd5de103_13.conda + - conda: https://prefix.dev/robostack-staging/win-64/ros-humble-ros2service-0.18.12-np126py311hd5de103_13.conda + - conda: https://prefix.dev/robostack-staging/win-64/ros-humble-ros2topic-0.18.12-np126py311hd5de103_13.conda + - conda: https://prefix.dev/robostack-staging/win-64/ros-humble-rosbag2-0.15.14-np126py311hd5de103_13.conda + - conda: https://prefix.dev/robostack-staging/win-64/ros-humble-rosbag2-compression-0.15.14-np126py311hd5de103_13.conda + - conda: https://prefix.dev/robostack-staging/win-64/ros-humble-rosbag2-compression-zstd-0.15.14-np126py311hd5de103_13.conda + - conda: https://prefix.dev/robostack-staging/win-64/ros-humble-rosbag2-cpp-0.15.14-np126py311hd5de103_13.conda + - conda: https://prefix.dev/robostack-staging/win-64/ros-humble-rosbag2-interfaces-0.15.14-np126py311hd5de103_13.conda + - conda: https://prefix.dev/robostack-staging/win-64/ros-humble-rosbag2-py-0.15.14-np126py311hd5de103_13.conda + - conda: https://prefix.dev/robostack-staging/win-64/ros-humble-rosbag2-storage-0.15.14-np126py311hd5de103_13.conda + - conda: https://prefix.dev/robostack-staging/win-64/ros-humble-rosbag2-storage-default-plugins-0.15.14-np126py311hd5de103_13.conda + - conda: https://prefix.dev/robostack-staging/win-64/ros-humble-rosbag2-transport-0.15.14-np126py311hd5de103_13.conda + - conda: https://prefix.dev/robostack-staging/win-64/ros-humble-rosgraph-msgs-1.2.1-np126py311hd5de103_13.conda + - conda: https://prefix.dev/robostack-staging/win-64/ros-humble-rosidl-adapter-3.1.6-np126py311hd5de103_13.conda + - conda: https://prefix.dev/robostack-staging/win-64/ros-humble-rosidl-cli-3.1.6-np126py311hd5de103_13.conda + - conda: https://prefix.dev/robostack-staging/win-64/ros-humble-rosidl-cmake-3.1.6-np126py311hd5de103_13.conda + - conda: https://prefix.dev/robostack-staging/win-64/ros-humble-rosidl-default-generators-1.2.0-np126py311hd5de103_13.conda + - conda: https://prefix.dev/robostack-staging/win-64/ros-humble-rosidl-default-runtime-1.2.0-np126py311hd5de103_13.conda + - conda: https://prefix.dev/robostack-staging/win-64/ros-humble-rosidl-generator-c-3.1.6-np126py311hd5de103_13.conda + - conda: https://prefix.dev/robostack-staging/win-64/ros-humble-rosidl-generator-cpp-3.1.6-np126py311hd5de103_13.conda + - conda: https://prefix.dev/robostack-staging/win-64/ros-humble-rosidl-generator-py-0.14.4-np126py311hd5de103_13.conda + - conda: https://prefix.dev/robostack-staging/win-64/ros-humble-rosidl-parser-3.1.6-np126py311hd5de103_13.conda + - conda: https://prefix.dev/robostack-staging/win-64/ros-humble-rosidl-runtime-c-3.1.6-np126py311hd5de103_13.conda + - conda: https://prefix.dev/robostack-staging/win-64/ros-humble-rosidl-runtime-cpp-3.1.6-np126py311hd5de103_13.conda + - conda: https://prefix.dev/robostack-staging/win-64/ros-humble-rosidl-runtime-py-0.9.3-np126py311hd5de103_13.conda + - conda: https://prefix.dev/robostack-staging/win-64/ros-humble-rosidl-typesupport-c-2.0.2-np126py311hd5de103_13.conda + - conda: https://prefix.dev/robostack-staging/win-64/ros-humble-rosidl-typesupport-cpp-2.0.2-np126py311hd5de103_13.conda + - conda: https://prefix.dev/robostack-staging/win-64/ros-humble-rosidl-typesupport-fastrtps-c-2.2.2-np126py311hd5de103_13.conda + - conda: https://prefix.dev/robostack-staging/win-64/ros-humble-rosidl-typesupport-fastrtps-cpp-2.2.2-np126py311hd5de103_13.conda + - conda: https://prefix.dev/robostack-staging/win-64/ros-humble-rosidl-typesupport-interface-3.1.6-np126py311hd5de103_13.conda + - conda: https://prefix.dev/robostack-staging/win-64/ros-humble-rosidl-typesupport-introspection-c-3.1.6-np126py311hd5de103_13.conda + - conda: https://prefix.dev/robostack-staging/win-64/ros-humble-rosidl-typesupport-introspection-cpp-3.1.6-np126py311hd5de103_13.conda + - conda: https://prefix.dev/robostack-staging/win-64/ros-humble-rpyutils-0.2.1-np126py311hd5de103_13.conda + - conda: https://prefix.dev/robostack-staging/win-64/ros-humble-rqt-action-2.0.1-np126py311hd5de103_13.conda + - conda: https://prefix.dev/robostack-staging/win-64/ros-humble-rqt-bag-1.1.5-np126py311hd5de103_13.conda + - conda: https://prefix.dev/robostack-staging/win-64/ros-humble-rqt-bag-plugins-1.1.5-np126py311hd5de103_13.conda + - conda: https://prefix.dev/robostack-staging/win-64/ros-humble-rqt-common-plugins-1.2.0-np126py311hd5de103_13.conda + - conda: https://prefix.dev/robostack-staging/win-64/ros-humble-rqt-console-2.0.3-np126py311hd5de103_13.conda + - conda: https://prefix.dev/robostack-staging/win-64/ros-humble-rqt-graph-1.3.1-np126py311hd5de103_13.conda + - conda: https://prefix.dev/robostack-staging/win-64/ros-humble-rqt-gui-1.1.7-np126py311hd5de103_13.conda + - conda: https://prefix.dev/robostack-staging/win-64/ros-humble-rqt-gui-cpp-1.1.7-np126py311hd5de103_13.conda + - conda: https://prefix.dev/robostack-staging/win-64/ros-humble-rqt-gui-py-1.1.7-np126py311hd5de103_13.conda + - conda: https://prefix.dev/robostack-staging/win-64/ros-humble-rqt-image-view-1.2.0-np126py311hd5de103_13.conda + - conda: https://prefix.dev/robostack-staging/win-64/ros-humble-rqt-msg-1.2.0-np126py311hd5de103_13.conda + - conda: https://prefix.dev/robostack-staging/win-64/ros-humble-rqt-plot-1.1.5-np126py311hd5de103_13.conda + - conda: https://prefix.dev/robostack-staging/win-64/ros-humble-rqt-publisher-1.5.0-np126py311hd5de103_13.conda + - conda: https://prefix.dev/robostack-staging/win-64/ros-humble-rqt-py-common-1.1.7-np126py311hd5de103_13.conda + - conda: https://prefix.dev/robostack-staging/win-64/ros-humble-rqt-py-console-1.0.2-np126py311hd5de103_13.conda + - conda: https://prefix.dev/robostack-staging/win-64/ros-humble-rqt-reconfigure-1.1.2-np126py311hd5de103_13.conda + - conda: https://prefix.dev/robostack-staging/win-64/ros-humble-rqt-service-caller-1.0.5-np126py311hd5de103_13.conda + - conda: https://prefix.dev/robostack-staging/win-64/ros-humble-rqt-shell-1.0.2-np126py311hd5de103_13.conda + - conda: https://prefix.dev/robostack-staging/win-64/ros-humble-rqt-srv-1.0.3-np126py311hd5de103_13.conda + - conda: https://prefix.dev/robostack-staging/win-64/ros-humble-rqt-topic-1.5.0-np126py311hd5de103_13.conda + - conda: https://prefix.dev/robostack-staging/win-64/ros-humble-rti-connext-dds-cmake-module-0.11.3-np126py311hd5de103_13.conda + - conda: https://prefix.dev/robostack-staging/win-64/ros-humble-rviz-assimp-vendor-11.2.18-np126py311hd5de103_13.conda + - conda: https://prefix.dev/robostack-staging/win-64/ros-humble-rviz-common-11.2.18-np126py311hd5de103_13.conda + - conda: https://prefix.dev/robostack-staging/win-64/ros-humble-rviz-default-plugins-11.2.18-np126py311hd5de103_13.conda + - conda: https://prefix.dev/robostack-staging/win-64/ros-humble-rviz-ogre-vendor-11.2.18-np126py311hcdf5458_13.conda + - conda: https://prefix.dev/robostack-staging/win-64/ros-humble-rviz-rendering-11.2.18-np126py311hd5de103_13.conda + - conda: https://prefix.dev/robostack-staging/win-64/ros-humble-rviz2-11.2.18-np126py311hd5de103_13.conda + - conda: https://prefix.dev/robostack-staging/win-64/ros-humble-sdl2-vendor-3.3.0-np126py311hd5de103_13.conda + - conda: https://prefix.dev/robostack-staging/win-64/ros-humble-sensor-msgs-4.9.0-np126py311hd5de103_13.conda + - conda: https://prefix.dev/robostack-staging/win-64/ros-humble-sensor-msgs-py-4.9.0-np126py311hd5de103_13.conda + - conda: https://prefix.dev/robostack-staging/win-64/ros-humble-shape-msgs-4.9.0-np126py311hd5de103_13.conda + - conda: https://prefix.dev/robostack-staging/win-64/ros-humble-shared-queues-vendor-0.15.14-np126py311hd5de103_13.conda + - conda: https://prefix.dev/robostack-staging/win-64/ros-humble-spdlog-vendor-1.3.1-np126py311hc120487_13.conda + - conda: https://prefix.dev/robostack-staging/win-64/ros-humble-sqlite3-vendor-0.15.14-np126py311hd5de103_13.conda + - conda: https://prefix.dev/robostack-staging/win-64/ros-humble-sros2-0.10.6-np126py311hd5de103_13.conda + - conda: https://prefix.dev/robostack-staging/win-64/ros-humble-sros2-cmake-0.10.6-np126py311hd5de103_13.conda + - conda: https://prefix.dev/robostack-staging/win-64/ros-humble-statistics-msgs-1.2.1-np126py311hd5de103_13.conda + - conda: https://prefix.dev/robostack-staging/win-64/ros-humble-std-msgs-4.9.0-np126py311hd5de103_13.conda + - conda: https://prefix.dev/robostack-staging/win-64/ros-humble-std-srvs-4.9.0-np126py311hd5de103_13.conda + - conda: https://prefix.dev/robostack-staging/win-64/ros-humble-stereo-msgs-4.9.0-np126py311hd5de103_13.conda + - conda: https://prefix.dev/robostack-staging/win-64/ros-humble-tango-icons-vendor-0.1.1-np126py311hd5de103_13.conda + - conda: https://prefix.dev/robostack-staging/win-64/ros-humble-teleop-twist-joy-2.4.7-np126py311hd5de103_13.conda + - conda: https://prefix.dev/robostack-staging/win-64/ros-humble-teleop-twist-keyboard-2.4.0-np126py311hd5de103_13.conda + - conda: https://prefix.dev/robostack-staging/win-64/ros-humble-tf2-0.25.14-np126py311hd5de103_13.conda + - conda: https://prefix.dev/robostack-staging/win-64/ros-humble-tf2-bullet-0.25.14-np126py311hd5de103_13.conda + - conda: https://prefix.dev/robostack-staging/win-64/ros-humble-tf2-eigen-0.25.14-np126py311hd5de103_13.conda + - conda: https://prefix.dev/robostack-staging/win-64/ros-humble-tf2-eigen-kdl-0.25.14-np126py311hd5de103_13.conda + - conda: https://prefix.dev/robostack-staging/win-64/ros-humble-tf2-geometry-msgs-0.25.14-np126py311hd5de103_13.conda + - conda: https://prefix.dev/robostack-staging/win-64/ros-humble-tf2-kdl-0.25.14-np126py311hd5de103_13.conda + - conda: https://prefix.dev/robostack-staging/win-64/ros-humble-tf2-msgs-0.25.14-np126py311hd5de103_13.conda + - conda: https://prefix.dev/robostack-staging/win-64/ros-humble-tf2-py-0.25.14-np126py311hd5de103_13.conda + - conda: https://prefix.dev/robostack-staging/win-64/ros-humble-tf2-ros-0.25.14-np126py311hd5de103_13.conda + - conda: https://prefix.dev/robostack-staging/win-64/ros-humble-tf2-ros-py-0.25.14-np126py311hd5de103_13.conda + - conda: https://prefix.dev/robostack-staging/win-64/ros-humble-tf2-sensor-msgs-0.25.14-np126py311hd5de103_13.conda + - conda: https://prefix.dev/robostack-staging/win-64/ros-humble-tf2-tools-0.25.14-np126py311hd5de103_13.conda + - conda: https://prefix.dev/robostack-staging/win-64/ros-humble-tinyxml-vendor-0.8.3-np126py311hd5de103_13.conda + - conda: https://prefix.dev/robostack-staging/win-64/ros-humble-tinyxml2-vendor-0.7.6-np126py311hd5de103_13.conda + - conda: https://prefix.dev/robostack-staging/win-64/ros-humble-topic-monitor-0.20.5-np126py311hd5de103_13.conda + - conda: https://prefix.dev/robostack-staging/win-64/ros-humble-tracetools-4.1.1-np126py311hd5de103_13.conda + - conda: https://prefix.dev/robostack-staging/win-64/ros-humble-trajectory-msgs-4.9.0-np126py311hd5de103_13.conda + - conda: https://prefix.dev/robostack-staging/win-64/ros-humble-turtlesim-1.4.2-np126py311hd5de103_13.conda + - conda: https://prefix.dev/robostack-staging/win-64/ros-humble-uncrustify-vendor-2.0.2-np126py311hd5de103_13.conda + - conda: https://prefix.dev/robostack-staging/win-64/ros-humble-unique-identifier-msgs-2.2.1-np126py311hd5de103_13.conda + - conda: https://prefix.dev/robostack-staging/win-64/ros-humble-urdf-2.6.1-np126py311hd5de103_13.conda + - conda: https://prefix.dev/robostack-staging/win-64/ros-humble-urdf-parser-plugin-2.6.1-np126py311hd5de103_13.conda + - conda: https://prefix.dev/robostack-staging/win-64/ros-humble-urdfdom-4.0.1-py311hb04609a_13.conda + - conda: https://prefix.dev/robostack-staging/win-64/ros-humble-urdfdom-headers-1.0.6-py311hb04609a_13.conda + - conda: https://prefix.dev/robostack-staging/win-64/ros-humble-visualization-msgs-4.9.0-np126py311hd5de103_13.conda + - conda: https://prefix.dev/robostack-staging/win-64/ros-humble-yaml-cpp-vendor-8.0.2-np126py311hd5de103_13.conda + - conda: https://prefix.dev/robostack-staging/win-64/ros-humble-zstd-vendor-0.15.14-np126py311hd5de103_13.conda + - conda: https://prefix.dev/robostack-staging/win-64/ros2-distro-mutex-0.7.0-humble_13.conda + - conda: https://prefix.dev/conda-forge/noarch/rosdistro-1.0.1-pyhd8ed1ab_0.conda + - conda: https://prefix.dev/conda-forge/noarch/rospkg-1.6.0-pyhd8ed1ab_0.conda + - conda: https://prefix.dev/conda-forge/win-64/sdl2-2.32.54-he0c23c2_0.conda + - conda: https://prefix.dev/conda-forge/win-64/sdl3-3.2.20-h5112557_0.conda + - conda: https://prefix.dev/conda-forge/noarch/setuptools-80.9.0-pyhff2d567_0.conda + - conda: https://prefix.dev/conda-forge/win-64/sip-6.10.0-py311hda3d55a_0.conda + - conda: https://prefix.dev/conda-forge/noarch/six-1.17.0-pyhe01879c_1.conda + - conda: https://prefix.dev/conda-forge/win-64/snappy-1.2.2-h7fa0ca8_0.conda + - conda: https://prefix.dev/conda-forge/noarch/snowballstemmer-3.0.1-pyhd8ed1ab_0.conda + - conda: https://prefix.dev/conda-forge/win-64/spdlog-1.15.3-h430ee68_1.conda + - conda: https://prefix.dev/conda-forge/win-64/sqlite-3.50.4-hdb435a2_0.conda + - conda: https://prefix.dev/conda-forge/win-64/svt-av1-3.0.2-he0c23c2_0.conda + - conda: https://prefix.dev/conda-forge/win-64/tbb-2022.2.0-h18a62a1_1.conda + - conda: https://prefix.dev/conda-forge/win-64/tbb-devel-2022.2.0-h4eb897c_1.conda + - conda: https://prefix.dev/conda-forge/win-64/tinyxml-2.6.2-h2d74725_2.tar.bz2 + - conda: https://prefix.dev/conda-forge/win-64/tinyxml2-11.0.0-he0c23c2_0.conda + - conda: https://prefix.dev/conda-forge/win-64/tk-8.6.13-h2c6b04d_2.conda + - conda: https://prefix.dev/conda-forge/noarch/toml-0.10.2-pyhd8ed1ab_1.conda + - conda: https://prefix.dev/conda-forge/noarch/tomli-2.2.1-pyhe01879c_2.conda + - conda: https://prefix.dev/conda-forge/noarch/typing_extensions-4.14.1-pyhe01879c_0.conda + - conda: https://prefix.dev/conda-forge/noarch/tzdata-2025b-h78e105d_0.conda + - conda: https://prefix.dev/conda-forge/win-64/ucrt-10.0.22621.0-h57928b3_1.conda + - conda: https://prefix.dev/conda-forge/win-64/uncrustify-0.81.0-he0c23c2_0.conda + - conda: https://prefix.dev/conda-forge/win-64/unicodedata2-16.0.0-py311he736701_0.conda + - conda: https://prefix.dev/conda-forge/win-64/urdfdom-4.0.1-h9d4477b_3.conda + - conda: https://prefix.dev/conda-forge/win-64/urdfdom_headers-1.0.6-h5362a0b_2.tar.bz2 + - conda: https://prefix.dev/conda-forge/win-64/utfcpp-4.0.6-hc1507ef_0.conda + - conda: https://prefix.dev/conda-forge/win-64/vc-14.3-h41ae7f8_31.conda + - conda: https://prefix.dev/conda-forge/win-64/vc14_runtime-14.44.35208-h818238b_31.conda + - conda: https://prefix.dev/conda-forge/win-64/vcomp14-14.44.35208-h818238b_31.conda + - conda: https://prefix.dev/conda-forge/win-64/vs2015_runtime-14.44.35208-h38c0c73_31.conda + - conda: https://prefix.dev/conda-forge/win-64/vtk-9.4.2-h6f36216_3.conda + - conda: https://prefix.dev/conda-forge/win-64/vtk-base-9.4.2-py311h0d49f04_1.conda + - conda: https://prefix.dev/conda-forge/noarch/win32_setctime-1.2.0-pyhd8ed1ab_0.conda + - conda: https://prefix.dev/conda-forge/noarch/wslink-2.4.0-pyhd8ed1ab_0.conda + - conda: https://prefix.dev/conda-forge/win-64/x264-1!164.3095-h8ffe710_2.tar.bz2 + - conda: https://prefix.dev/conda-forge/win-64/x265-3.5-h2d74725_3.tar.bz2 + - conda: https://prefix.dev/conda-forge/win-64/xorg-libice-1.1.2-h0e40799_0.conda + - conda: https://prefix.dev/conda-forge/win-64/xorg-libsm-1.2.6-h0e40799_0.conda + - conda: https://prefix.dev/conda-forge/win-64/xorg-libx11-1.8.12-hf48077a_0.conda + - conda: https://prefix.dev/conda-forge/win-64/xorg-libxau-1.0.12-h0e40799_0.conda + - conda: https://prefix.dev/conda-forge/win-64/xorg-libxdmcp-1.1.5-h0e40799_0.conda + - conda: https://prefix.dev/conda-forge/win-64/xorg-libxext-1.3.6-h0e40799_0.conda + - conda: https://prefix.dev/conda-forge/win-64/xorg-libxpm-3.5.17-h0e40799_1.conda + - conda: https://prefix.dev/conda-forge/win-64/xorg-libxt-1.3.1-h0e40799_0.conda + - conda: https://prefix.dev/conda-forge/win-64/xorg-xorgproto-2024.1-h0e40799_1.conda + - conda: https://prefix.dev/conda-forge/win-64/yaml-0.2.5-h6a83c73_3.conda + - conda: https://prefix.dev/conda-forge/win-64/yaml-cpp-0.8.0-he0c23c2_0.conda + - conda: https://prefix.dev/conda-forge/win-64/yarl-1.20.1-py311h5082efb_0.conda + - conda: https://prefix.dev/conda-forge/noarch/zipp-3.23.0-pyhd8ed1ab_0.conda + - conda: https://prefix.dev/conda-forge/win-64/zlib-1.3.1-h2466b09_2.conda + - conda: https://prefix.dev/conda-forge/win-64/zstd-1.5.7-hbeecb71_2.conda + - conda: https://prefix.dev/conda-forge/win-64/zziplib-0.13.69-h3ca93ac_2.conda + - conda: src/navigator + build: h9352c13_0 + - conda: src/navigator_py + build: h9352c13_0 + - conda: src/talker-py + build: h9352c13_0 +packages: +- conda: https://prefix.dev/conda-forge/win-64/_libavif_api-1.3.0-h57928b3_0.conda + sha256: b530a08e5af782348d1753d64aca43112ff4c957ceb86adb0715dd9c7b4a7e2c + md5: ee165108d6159100c6425dbe99f61a40 + size: 9790 + timestamp: 1746836455569 +- conda: https://prefix.dev/conda-forge/linux-64/_libgcc_mutex-0.1-conda_forge.tar.bz2 + sha256: fe51de6107f9edc7aa4f786a70f4a883943bc9d39b3bb7307c04c41410990726 + md5: d7c89558ba9fa0495403155b64376d81 + license: None + size: 2562 + timestamp: 1578324546067 +- conda: https://prefix.dev/conda-forge/linux-64/_openmp_mutex-4.5-2_gnu.tar.bz2 + build_number: 16 + sha256: fbe2c5e56a653bebb982eda4876a9178aedfc2b545f25d0ce9c4c0b508253d22 + md5: 73aaf86a425cc6e73fcf236a5a46396d + depends: + - _libgcc_mutex 0.1 conda_forge + - libgomp >=7.5.0 + constrains: + - openmp_impl 9999 + license: BSD-3-Clause + license_family: BSD + size: 23621 + timestamp: 1650670423406 +- conda: https://prefix.dev/conda-forge/linux-aarch64/_openmp_mutex-4.5-2_gnu.tar.bz2 + build_number: 16 + sha256: 3702bef2f0a4d38bd8288bbe54aace623602a1343c2cfbefd3fa188e015bebf0 + md5: 6168d71addc746e8f2b8d57dfd2edcea + depends: + - libgomp >=7.5.0 + constrains: + - openmp_impl 9999 + license: BSD-3-Clause + license_family: BSD + size: 23712 + timestamp: 1650670790230 +- conda: https://prefix.dev/conda-forge/win-64/_openmp_mutex-4.5-2_gnu.conda + build_number: 8 + sha256: 1a62cd1f215fe0902e7004089693a78347a30ad687781dfda2289cab000e652d + md5: 37e16618af5c4851a3f3d66dd0e11141 + depends: + - libgomp >=7.5.0 + - libwinpthread >=12.0.0.r2.ggc561118da + constrains: + - openmp_impl 9999 + - msys2-conda-epoch <0.0a0 + license: BSD-3-Clause + license_family: BSD + size: 49468 + timestamp: 1718213032772 +- conda: https://prefix.dev/conda-forge/noarch/adwaita-icon-theme-48.1-unix_0.conda + sha256: 824a7349bbb2ef8014077ddcfd418065a0a4de873ada1bd1b8826e20bed18c15 + md5: eeb18017386c92765ad8ffa986c3f4ce + depends: + - __unix + - hicolor-icon-theme + - librsvg + license: LGPL-3.0-or-later OR CC-BY-SA-3.0 + license_family: LGPL + size: 619606 + timestamp: 1750236493212 +- conda: https://prefix.dev/conda-forge/noarch/aiohappyeyeballs-2.6.1-pyhd8ed1ab_0.conda + sha256: 7842ddc678e77868ba7b92a726b437575b23aaec293bca0d40826f1026d90e27 + md5: 18fd895e0e775622906cdabfc3cf0fb4 + depends: + - python >=3.9 + license: PSF-2.0 + license_family: PSF + size: 19750 + timestamp: 1741775303303 +- conda: https://prefix.dev/conda-forge/linux-64/aiohttp-3.12.15-py311h3778330_0.conda + sha256: f702f7783981a639a26d0eb713d9cc1eefe77fb666397ebe3e4947d1b2b7d043 + md5: e61a07950d3297a2c7e5f4214816c20c + depends: + - __glibc >=2.17,<3.0.a0 + - aiohappyeyeballs >=2.5.0 + - aiosignal >=1.4.0 + - attrs >=17.3.0 + - frozenlist >=1.1.1 + - libgcc >=14 + - multidict >=4.5,<7.0 + - propcache >=0.2.0 + - python >=3.11,<3.12.0a0 + - python_abi 3.11.* *_cp311 + - yarl >=1.17.0,<2.0 + license: MIT AND Apache-2.0 + license_family: Apache + size: 1011359 + timestamp: 1753806578782 +- conda: https://prefix.dev/conda-forge/linux-aarch64/aiohttp-3.12.15-py311h164a683_0.conda + sha256: 3049daa3c944179b27a36ee4c68ec82c57bb4cd00266970a4bf30498d4dfc24b + md5: c9f36ddeb5779d45ad84665461e0134b + depends: + - aiohappyeyeballs >=2.5.0 + - aiosignal >=1.4.0 + - attrs >=17.3.0 + - frozenlist >=1.1.1 + - libgcc >=14 + - multidict >=4.5,<7.0 + - propcache >=0.2.0 + - python >=3.11,<3.12.0a0 + - python >=3.11,<3.12.0a0 *_cpython + - python_abi 3.11.* *_cp311 + - yarl >=1.17.0,<2.0 + license: MIT AND Apache-2.0 + license_family: Apache + size: 1003281 + timestamp: 1753805144797 +- conda: https://prefix.dev/conda-forge/osx-arm64/aiohttp-3.12.15-py311h2fe624c_0.conda + sha256: ee5adbc34969a4f269bf24b076ba4be6f695053351e7c873fb8b9270f5249452 + md5: a0affccd3c20c07e07adedad39099c91 + depends: + - __osx >=11.0 + - aiohappyeyeballs >=2.5.0 + - aiosignal >=1.4.0 + - attrs >=17.3.0 + - frozenlist >=1.1.1 + - multidict >=4.5,<7.0 + - propcache >=0.2.0 + - python >=3.11,<3.12.0a0 + - python >=3.11,<3.12.0a0 *_cpython + - python_abi 3.11.* *_cp311 + - yarl >=1.17.0,<2.0 + license: MIT AND Apache-2.0 + license_family: Apache + size: 980184 + timestamp: 1753805269920 +- conda: https://prefix.dev/conda-forge/win-64/aiohttp-3.12.15-py311h3f79411_0.conda + sha256: 8510f8d723e15d676f8e46d43b01bac627af725f1ef59445e936316fe9452dc0 + md5: 71081f10b37f8cbcc4819ebc335429b7 + depends: + - aiohappyeyeballs >=2.5.0 + - aiosignal >=1.4.0 + - attrs >=17.3.0 + - frozenlist >=1.1.1 + - multidict >=4.5,<7.0 + - propcache >=0.2.0 + - python >=3.11,<3.12.0a0 + - python_abi 3.11.* *_cp311 + - ucrt >=10.0.20348.0 + - vc >=14.3,<15 + - vc14_runtime >=14.44.35208 + - yarl >=1.17.0,<2.0 + license: MIT AND Apache-2.0 + license_family: Apache + size: 958321 + timestamp: 1753805219151 +- conda: https://prefix.dev/conda-forge/noarch/aiosignal-1.4.0-pyhd8ed1ab_0.conda + sha256: 8dc149a6828d19bf104ea96382a9d04dae185d4a03cc6beb1bc7b84c428e3ca2 + md5: 421a865222cd0c9d83ff08bc78bf3a61 + depends: + - frozenlist >=1.1.0 + - python >=3.9 + - typing_extensions >=4.2 + license: Apache-2.0 + license_family: APACHE + size: 13688 + timestamp: 1751626573984 +- conda: https://prefix.dev/conda-forge/linux-64/alsa-lib-1.2.14-hb9d3cd8_0.conda + sha256: b9214bc17e89bf2b691fad50d952b7f029f6148f4ac4fe7c60c08f093efdf745 + md5: 76df83c2a9035c54df5d04ff81bcc02d + depends: + - __glibc >=2.17,<3.0.a0 + - libgcc >=13 + license: LGPL-2.1-or-later + license_family: GPL + size: 566531 + timestamp: 1744668655747 +- conda: https://prefix.dev/conda-forge/linux-aarch64/alsa-lib-1.2.14-h86ecc28_0.conda + sha256: 0aa836f6dd9132f243436898ed8024f408910f65220bafbfc95f71ab829bb395 + md5: a696b24c1b473ecc4774bcb5a6ac6337 + depends: + - libgcc >=13 + license: LGPL-2.1-or-later + license_family: GPL + size: 595290 + timestamp: 1744668754404 +- conda: https://prefix.dev/conda-forge/linux-64/aom-3.9.1-hac33072_0.conda + sha256: b08ef033817b5f9f76ce62dfcac7694e7b6b4006420372de22494503decac855 + md5: 346722a0be40f6edc53f12640d301338 + depends: + - libgcc-ng >=12 + - libstdcxx-ng >=12 + license: BSD-2-Clause + license_family: BSD + size: 2706396 + timestamp: 1718551242397 +- conda: https://prefix.dev/conda-forge/linux-aarch64/aom-3.9.1-hcccb83c_0.conda + sha256: ac438ce5d3d3673a9188b535fc7cda413b479f0d52536aeeac1bd82faa656ea0 + md5: cc744ac4efe5bcaa8cca51ff5b850df0 + depends: + - libgcc-ng >=12 + - libstdcxx-ng >=12 + license: BSD-2-Clause + license_family: BSD + size: 3250813 + timestamp: 1718551360260 +- conda: https://prefix.dev/conda-forge/osx-arm64/aom-3.9.1-h7bae524_0.conda + sha256: ec238f18ce8140485645252351a0eca9ef4f7a1c568a420f240a585229bc12ef + md5: 7adba36492a1bb22d98ffffe4f6fc6de + depends: + - __osx >=11.0 + - libcxx >=16 + license: BSD-2-Clause + license_family: BSD + size: 2235747 + timestamp: 1718551382432 +- conda: https://prefix.dev/conda-forge/win-64/aom-3.9.1-he0c23c2_0.conda + sha256: 0524d0c0b61dacd0c22ac7a8067f977b1d52380210933b04141f5099c5b6fec7 + md5: 3d7c14285d3eb3239a76ff79063f27a5 + depends: + - ucrt >=10.0.20348.0 + - vc >=14.2,<15 + - vc14_runtime >=14.29.30139 + license: BSD-2-Clause + license_family: BSD + size: 1958151 + timestamp: 1718551737234 +- conda: https://prefix.dev/conda-forge/noarch/argcomplete-3.6.2-pyhd8ed1ab_0.conda + sha256: 66ffcf30550e0788d16090e4b4e8835290b15439bb454b0e217176a09dc1d500 + md5: eb9d4263271ca287d2e0cf5a86da2d3a + depends: + - python >=3.9 + license: Apache-2.0 + license_family: Apache + size: 42164 + timestamp: 1743726091226 +- conda: https://prefix.dev/conda-forge/linux-64/assimp-5.4.3-h8943939_0.conda + sha256: c9022ee34f756847f48907472514da3395a8c0549679cfd2a1b4f6833dd6298c + md5: 5546062a59566def2fa6482acf531841 + depends: + - __glibc >=2.17,<3.0.a0 + - libboost >=1.86.0,<1.87.0a0 + - libgcc >=13 + - libstdcxx >=13 + - libzlib >=1.3.1,<2.0a0 + - zlib + license: BSD-3-Clause + license_family: BSD + size: 3535704 + timestamp: 1725086969417 +- conda: https://prefix.dev/conda-forge/linux-aarch64/assimp-5.4.3-hdc325bc_0.conda + sha256: e791fd005b413d1fc7aa7f84d8c83343c64b53ab02e7bd410cb1f2f61789baf9 + md5: 553a8f53d6d599fa15dcbdd95c3c8cee + depends: + - libboost >=1.86.0,<1.87.0a0 + - libgcc >=13 + - libstdcxx >=13 + - libzlib >=1.3.1,<2.0a0 + - zlib + license: BSD-3-Clause + license_family: BSD + size: 3476475 + timestamp: 1725087034438 +- conda: https://prefix.dev/conda-forge/osx-arm64/assimp-5.4.3-ha9c0b8d_0.conda + sha256: d5c348d697abbb824f12bebb8da4de960e0ca2d62350745cfc08da3b984491c4 + md5: 4f6abafa61c3c6d3ff9a1b012fe2e9fa + depends: + - __osx >=11.0 + - libboost >=1.86.0,<1.87.0a0 + - libcxx >=17 + - libzlib >=1.3.1,<2.0a0 + - zlib + license: BSD-3-Clause + license_family: BSD + size: 2478543 + timestamp: 1725087172579 +- conda: https://prefix.dev/conda-forge/win-64/assimp-5.4.3-hf1e84b2_0.conda + sha256: b3a651af288b4ef41323d1931a3042a050935096575a75e6e0df7f4bb974903a + md5: af71c63135f00fd8522d5aa729996f98 + depends: + - libboost >=1.86.0,<1.87.0a0 + - libzlib >=1.3.1,<2.0a0 + - ucrt >=10.0.20348.0 + - vc >=14.2,<15 + - vc14_runtime >=14.29.30139 + - zlib + license: BSD-3-Clause + license_family: BSD + size: 11937899 + timestamp: 1725087701414 +- conda: https://prefix.dev/conda-forge/linux-64/at-spi2-atk-2.38.0-h0630a04_3.tar.bz2 + sha256: 26ab9386e80bf196e51ebe005da77d57decf6d989b4f34d96130560bc133479c + md5: 6b889f174df1e0f816276ae69281af4d + depends: + - at-spi2-core >=2.40.0,<2.41.0a0 + - atk-1.0 >=2.36.0 + - dbus >=1.13.6,<2.0a0 + - libgcc-ng >=9.3.0 + - libglib >=2.68.1,<3.0a0 + license: LGPL-2.1-or-later + license_family: LGPL + size: 339899 + timestamp: 1619122953439 +- conda: https://prefix.dev/conda-forge/linux-aarch64/at-spi2-atk-2.38.0-h1f2db35_3.tar.bz2 + sha256: c2c2c998d49c061e390537f929e77ce6b023ef22b51a0f55692d6df7327f3358 + md5: 4ea9d4634f3b054549be5e414291801e + depends: + - at-spi2-core >=2.40.0,<2.41.0a0 + - atk-1.0 >=2.36.0 + - dbus >=1.13.6,<2.0a0 + - libgcc-ng >=9.3.0 + - libglib >=2.68.1,<3.0a0 + license: LGPL-2.1-or-later + license_family: LGPL + size: 322172 + timestamp: 1619123713021 +- conda: https://prefix.dev/conda-forge/linux-64/at-spi2-core-2.40.3-h0630a04_0.tar.bz2 + sha256: c4f9b66bd94c40d8f1ce1fad2d8b46534bdefda0c86e3337b28f6c25779f258d + md5: 8cb2fc4cd6cc63f1369cfa318f581cc3 + depends: + - dbus >=1.13.6,<2.0a0 + - libgcc-ng >=9.3.0 + - libglib >=2.68.3,<3.0a0 + - xorg-libx11 + - xorg-libxi + - xorg-libxtst + license: LGPL-2.1-or-later + license_family: LGPL + size: 658390 + timestamp: 1625848454791 +- conda: https://prefix.dev/conda-forge/linux-aarch64/at-spi2-core-2.40.3-h1f2db35_0.tar.bz2 + sha256: cd48de9674a20133e70a643476accc1a63360c921ab49477638364877937a40d + md5: a12602a94ee402b57063ef74e82016c0 + depends: + - dbus >=1.13.6,<2.0a0 + - libgcc-ng >=9.3.0 + - libglib >=2.68.3,<3.0a0 + - xorg-libx11 + - xorg-libxi + - xorg-libxtst + license: LGPL-2.1-or-later + license_family: LGPL + size: 622407 + timestamp: 1625848355776 +- conda: https://prefix.dev/conda-forge/linux-64/atk-1.0-2.38.0-h04ea711_2.conda + sha256: df682395d05050cd1222740a42a551281210726a67447e5258968dd55854302e + md5: f730d54ba9cd543666d7220c9f7ed563 + depends: + - libgcc-ng >=12 + - libglib >=2.80.0,<3.0a0 + - libstdcxx-ng >=12 + constrains: + - atk-1.0 2.38.0 + license: LGPL-2.0-or-later + license_family: LGPL + size: 355900 + timestamp: 1713896169874 +- conda: https://prefix.dev/conda-forge/linux-aarch64/atk-1.0-2.38.0-hedc4a1f_2.conda + sha256: 69f70048a1a915be7b8ad5d2cbb7bf020baa989b5506e45a676ef4ef5106c4f0 + md5: 9308557e2328f944bd5809c5630761af + depends: + - libgcc-ng >=12 + - libglib >=2.80.0,<3.0a0 + - libstdcxx-ng >=12 + constrains: + - atk-1.0 2.38.0 + license: LGPL-2.0-or-later + license_family: LGPL + size: 358327 + timestamp: 1713898303194 +- conda: https://prefix.dev/conda-forge/osx-arm64/atk-1.0-2.38.0-hd03087b_2.conda + sha256: b0747f9b1bc03d1932b4d8c586f39a35ac97e7e72fe6e63f2b2a2472d466f3c1 + md5: 57301986d02d30d6805fdce6c99074ee + depends: + - __osx >=11.0 + - libcxx >=16 + - libglib >=2.80.0,<3.0a0 + - libintl >=0.22.5,<1.0a0 + constrains: + - atk-1.0 2.38.0 + license: LGPL-2.0-or-later + license_family: LGPL + size: 347530 + timestamp: 1713896411580 +- conda: https://prefix.dev/conda-forge/linux-64/attr-2.5.1-h166bdaf_1.tar.bz2 + sha256: 82c13b1772c21fc4a17441734de471d3aabf82b61db9b11f4a1bd04a9c4ac324 + md5: d9c69a24ad678ffce24c6543a0176b00 + depends: + - libgcc-ng >=12 + license: GPL-2.0-or-later + license_family: GPL + size: 71042 + timestamp: 1660065501192 +- conda: https://prefix.dev/conda-forge/linux-aarch64/attr-2.5.1-h4e544f5_1.tar.bz2 + sha256: 2c793b48e835a8fac93f1664c706442972a0206963bf8ca202e83f7f4d29a7d7 + md5: 1ef6c06fec1b6f5ee99ffe2152e53568 + depends: + - libgcc-ng >=12 + license: GPL-2.0-or-later + license_family: GPL + size: 74992 + timestamp: 1660065534958 +- conda: https://prefix.dev/conda-forge/noarch/attrs-25.3.0-pyh71513ae_0.conda + sha256: 99c53ffbcb5dc58084faf18587b215f9ac8ced36bbfb55fa807c00967e419019 + md5: a10d11958cadc13fdb43df75f8b1903f + depends: + - python >=3.9 + license: MIT + license_family: MIT + size: 57181 + timestamp: 1741918625732 +- conda: https://prefix.dev/conda-forge/linux-64/blosc-1.21.6-he440d0b_1.conda + sha256: e7af5d1183b06a206192ff440e08db1c4e8b2ca1f8376ee45fb2f3a85d4ee45d + md5: 2c2fae981fd2afd00812c92ac47d023d + depends: + - __glibc >=2.17,<3.0.a0 + - libgcc >=13 + - libstdcxx >=13 + - libzlib >=1.3.1,<2.0a0 + - lz4-c >=1.10.0,<1.11.0a0 + - snappy >=1.2.1,<1.3.0a0 + - zstd >=1.5.6,<1.6.0a0 + license: BSD-3-Clause + license_family: BSD + size: 48427 + timestamp: 1733513201413 +- conda: https://prefix.dev/conda-forge/linux-aarch64/blosc-1.21.6-hb4dfabd_1.conda + sha256: f1e408fc32e1fda8dee9c3fceee5650fd622526e4dc6fa1f1926f497b5508d13 + md5: 2cbbd6264ad58887c40aab37f2abdaba + depends: + - libgcc >=13 + - libstdcxx >=13 + - libzlib >=1.3.1,<2.0a0 + - lz4-c >=1.10.0,<1.11.0a0 + - snappy >=1.2.1,<1.3.0a0 + - zstd >=1.5.6,<1.6.0a0 + license: BSD-3-Clause + license_family: BSD + size: 36414 + timestamp: 1733513501944 +- conda: https://prefix.dev/conda-forge/osx-arm64/blosc-1.21.6-h7dd00d9_1.conda + sha256: c3fe902114b9a3ac837e1a32408cc2142c147ec054c1038d37aec6814343f48a + md5: 925acfb50a750aa178f7a0aced77f351 + depends: + - __osx >=11.0 + - libcxx >=18 + - libzlib >=1.3.1,<2.0a0 + - lz4-c >=1.10.0,<1.11.0a0 + - snappy >=1.2.1,<1.3.0a0 + - zstd >=1.5.6,<1.6.0a0 + license: BSD-3-Clause + license_family: BSD + size: 33602 + timestamp: 1733513285902 +- conda: https://prefix.dev/conda-forge/win-64/blosc-1.21.6-hfd34d9b_1.conda + sha256: 9303a7a0e03cf118eab3691013f6d6cbd1cbac66efbc70d89b20f5d0145257c0 + md5: 357d7be4146d5fec543bfaa96a8a40de + depends: + - libzlib >=1.3.1,<2.0a0 + - lz4-c >=1.10.0,<1.11.0a0 + - snappy >=1.2.1,<1.3.0a0 + - ucrt >=10.0.20348.0 + - vc >=14.2,<15 + - vc14_runtime >=14.29.30139 + - zstd >=1.5.6,<1.6.0a0 + license: BSD-3-Clause + license_family: BSD + size: 49840 + timestamp: 1733513605730 +- conda: https://prefix.dev/conda-forge/linux-64/brotli-1.1.0-hb9d3cd8_3.conda + sha256: c969baaa5d7a21afb5ed4b8dd830f82b78e425caaa13d717766ed07a61630bec + md5: 5d08a0ac29e6a5a984817584775d4131 + depends: + - __glibc >=2.17,<3.0.a0 + - brotli-bin 1.1.0 hb9d3cd8_3 + - libbrotlidec 1.1.0 hb9d3cd8_3 + - libbrotlienc 1.1.0 hb9d3cd8_3 + - libgcc >=13 + license: MIT + license_family: MIT + size: 19810 + timestamp: 1749230148642 +- conda: https://prefix.dev/conda-forge/linux-aarch64/brotli-1.1.0-h86ecc28_3.conda + sha256: 71291a171728400f7af6be1a4ffaf805cff3684ae621ae5f792171235c7171f1 + md5: 725908554f2bf8f68502bbade3ea3489 + depends: + - brotli-bin 1.1.0 h86ecc28_3 + - libbrotlidec 1.1.0 h86ecc28_3 + - libbrotlienc 1.1.0 h86ecc28_3 + - libgcc >=13 + license: MIT + license_family: MIT + size: 19937 + timestamp: 1749230328962 +- conda: https://prefix.dev/conda-forge/osx-arm64/brotli-1.1.0-h5505292_3.conda + sha256: 97e2a90342869cc122921fdff0e6be2f5c38268555c08ba5d14e1615e4637e35 + md5: 03c7865dd4dbf87b7b7d363e24c632f1 + depends: + - __osx >=11.0 + - brotli-bin 1.1.0 h5505292_3 + - libbrotlidec 1.1.0 h5505292_3 + - libbrotlienc 1.1.0 h5505292_3 + license: MIT + license_family: MIT + size: 20094 + timestamp: 1749230390021 +- conda: https://prefix.dev/conda-forge/win-64/brotli-1.1.0-h2466b09_3.conda + sha256: d57cd6ea705c9d2a8a2721f083de247501337e459f5498726b564cfca138e192 + md5: c2a23d8a8986c72148c63bdf855ac99a + depends: + - brotli-bin 1.1.0 h2466b09_3 + - libbrotlidec 1.1.0 h2466b09_3 + - libbrotlienc 1.1.0 h2466b09_3 + - ucrt >=10.0.20348.0 + - vc >=14.2,<15 + - vc14_runtime >=14.29.30139 + license: MIT + license_family: MIT + size: 20233 + timestamp: 1749230982687 +- conda: https://prefix.dev/conda-forge/linux-64/brotli-bin-1.1.0-hb9d3cd8_3.conda + sha256: ab74fa8c3d1ca0a055226be89e99d6798c65053e2d2d3c6cb380c574972cd4a7 + md5: 58178ef8ba927229fba6d84abf62c108 + depends: + - __glibc >=2.17,<3.0.a0 + - libbrotlidec 1.1.0 hb9d3cd8_3 + - libbrotlienc 1.1.0 hb9d3cd8_3 + - libgcc >=13 + license: MIT + license_family: MIT + size: 19390 + timestamp: 1749230137037 +- conda: https://prefix.dev/conda-forge/linux-aarch64/brotli-bin-1.1.0-h86ecc28_3.conda + sha256: 0ccc233f83fdaef013b1dfa7b0501b7301abe1d5e38a0cac6eb3742d5ae46567 + md5: e06eec5d869ddde3abbb8c9784425106 + depends: + - libbrotlidec 1.1.0 h86ecc28_3 + - libbrotlienc 1.1.0 h86ecc28_3 + - libgcc >=13 + license: MIT + license_family: MIT + size: 19394 + timestamp: 1749230315332 +- conda: https://prefix.dev/conda-forge/osx-arm64/brotli-bin-1.1.0-h5505292_3.conda + sha256: 5c6a808326c3bbb6f015a57c9eb463d65f259f67154f4f06783d8829ce9239b4 + md5: cc435eb5160035fd8503e9a58036c5b5 + depends: + - __osx >=11.0 + - libbrotlidec 1.1.0 h5505292_3 + - libbrotlienc 1.1.0 h5505292_3 + license: MIT + license_family: MIT + size: 17185 + timestamp: 1749230373519 +- conda: https://prefix.dev/conda-forge/win-64/brotli-bin-1.1.0-h2466b09_3.conda + sha256: 85aac1c50a426be6d0cc9fd52480911d752f4082cb78accfdb257243e572c7eb + md5: c7c345559c1ac25eede6dccb7b931202 + depends: + - libbrotlidec 1.1.0 h2466b09_3 + - libbrotlienc 1.1.0 h2466b09_3 + - ucrt >=10.0.20348.0 + - vc >=14.2,<15 + - vc14_runtime >=14.29.30139 + license: MIT + license_family: MIT + size: 21405 + timestamp: 1749230949991 +- conda: https://prefix.dev/conda-forge/linux-64/bullet-3.25-hbd00459_4.conda + sha256: 969d9fea8da3b3c3ace1d1cb270c8938886ca7feb61d4b3f394abfbfbe82ea29 + md5: 14f04d8353df4f2134b218d87435f33a + depends: + - bullet-cpp 3.25 h7db5c69_4 + - numpy + - pybullet 3.25 py311h2ed89a0_4 + - python + license: Zlib + size: 11721 + timestamp: 1747516565520 +- conda: https://prefix.dev/conda-forge/linux-aarch64/bullet-3.25-h58b41f2_4.conda + sha256: fdacd04e3d5d96f6b793a225fd962e28839cdf4f0c83542f3d4844d7c566da6e + md5: 7db22593b769ee6ac6243052bf413f3e + depends: + - bullet-cpp 3.25 py311h848c333_4 + - numpy + - pybullet 3.25 py311h7b00dee_4 + - python + license: Zlib + size: 11746 + timestamp: 1747516772423 +- conda: https://prefix.dev/conda-forge/osx-arm64/bullet-3.25-h35c05fe_4.conda + sha256: 9ea54ba213e464f78a4312744954382a36547e753b00cb232362ec2af9f5bb9a + md5: a826c295a27a74896bfe7d7136c6692b + depends: + - bullet-cpp 3.25 py311hca32420_4 + - numpy + - pybullet 3.25 py311he9eb210_4 + - python + license: Zlib + size: 11821 + timestamp: 1747516172887 +- conda: https://prefix.dev/conda-forge/win-64/bullet-3.25-h06a5be4_4.conda + sha256: 05884f768c5cbd1fea631072010de43a1ee0073111224913d68b6a603eeb6c1b + md5: 135dcbdae8fbf17b9f806168a03425f1 + depends: + - bullet-cpp 3.25 hcf9f919_4 + - numpy + - pybullet 3.25 py311h42043a9_4 + - python + license: Zlib + size: 12130 + timestamp: 1747516717828 +- conda: https://prefix.dev/conda-forge/linux-64/bullet-cpp-3.25-h7db5c69_4.conda + sha256: de47887981cec9385ea780a02d539e6446f9393af91a1eeb27cf884b290b9877 + md5: 3c1389f538dd361396dc8566ef89d982 + depends: + - __glibc >=2.17,<3.0.a0 + - libgcc >=13 + - libgl >=1.7.0,<2.0a0 + - libstdcxx >=13 + - numpy >=1.19,<3 + - python_abi 3.11.* *_cp311 + - xorg-libx11 >=1.8.12,<2.0a0 + - xorg-libxext >=1.3.6,<2.0a0 + license: Zlib + size: 43026158 + timestamp: 1747516092494 +- conda: https://prefix.dev/conda-forge/linux-aarch64/bullet-cpp-3.25-py311h848c333_4.conda + sha256: 730bab690df5110f8d15f94d7ed22e84ed42e8af5d4bbdd5f00f7c086f549798 + md5: ca92652e5617727388737a9a554798a2 + depends: + - libgcc >=13 + - libgl >=1.7.0,<2.0a0 + - libstdcxx >=13 + - numpy >=1.19,<3 + - python >=3.11,<3.12.0a0 *_cpython + - python_abi 3.11.* *_cp311 + - xorg-libx11 >=1.8.12,<2.0a0 + - xorg-libxext >=1.3.6,<2.0a0 + license: Zlib + size: 42006090 + timestamp: 1747516217642 +- conda: https://prefix.dev/conda-forge/osx-arm64/bullet-cpp-3.25-py311hca32420_4.conda + sha256: aeb65e668ce2c921bb8c9c62956b85b332e1e5149e327791e12c9c8abb0565fd + md5: bea71b216b3c527b9504f123875f90a3 + depends: + - __osx >=11.0 + - libcxx >=18 + - numpy >=1.19,<3 + - python >=3.11,<3.12.0a0 *_cpython + - python_abi 3.11.* *_cp311 + - xorg-libx11 >=1.8.12,<2.0a0 + - xorg-libxext >=1.3.6,<2.0a0 + license: Zlib + size: 39404106 + timestamp: 1747515821687 +- conda: https://prefix.dev/conda-forge/win-64/bullet-cpp-3.25-hcf9f919_4.conda + sha256: f4df9c7966c873878714e846731a9f196089207705cafcaa47ec56a0aa91ef53 + md5: 7752e59a648eb0dd65b43cf8b67820f7 + depends: + - numpy >=1.19,<3 + - python_abi 3.11.* *_cp311 + - ucrt >=10.0.20348.0 + - vc >=14.2,<15 + - vc14_runtime >=14.29.30139 + license: Zlib + size: 15516200 + timestamp: 1747516226578 +- conda: https://prefix.dev/conda-forge/linux-64/bzip2-1.0.8-h4bc722e_7.conda + sha256: 5ced96500d945fb286c9c838e54fa759aa04a7129c59800f0846b4335cee770d + md5: 62ee74e96c5ebb0af99386de58cf9553 + depends: + - __glibc >=2.17,<3.0.a0 + - libgcc-ng >=12 + license: bzip2-1.0.6 + license_family: BSD + size: 252783 + timestamp: 1720974456583 +- conda: https://prefix.dev/conda-forge/linux-aarch64/bzip2-1.0.8-h68df207_7.conda + sha256: 2258b0b33e1cb3a9852d47557984abb6e7ea58e3d7f92706ec1f8e879290c4cb + md5: 56398c28220513b9ea13d7b450acfb20 + depends: + - libgcc-ng >=12 + license: bzip2-1.0.6 + license_family: BSD + size: 189884 + timestamp: 1720974504976 +- conda: https://prefix.dev/conda-forge/osx-arm64/bzip2-1.0.8-h99b78c6_7.conda + sha256: adfa71f158cbd872a36394c56c3568e6034aa55c623634b37a4836bd036e6b91 + md5: fc6948412dbbbe9a4c9ddbbcfe0a79ab + depends: + - __osx >=11.0 + license: bzip2-1.0.6 + license_family: BSD + size: 122909 + timestamp: 1720974522888 +- conda: https://prefix.dev/conda-forge/win-64/bzip2-1.0.8-h2466b09_7.conda + sha256: 35a5dad92e88fdd7fc405e864ec239486f4f31eec229e31686e61a140a8e573b + md5: 276e7ffe9ffe39688abc665ef0f45596 + depends: + - ucrt >=10.0.20348.0 + - vc >=14.2,<15 + - vc14_runtime >=14.29.30139 + license: bzip2-1.0.6 + license_family: BSD + size: 54927 + timestamp: 1720974860185 +- conda: https://prefix.dev/conda-forge/linux-64/c-ares-1.34.5-hb9d3cd8_0.conda + sha256: f8003bef369f57396593ccd03d08a8e21966157269426f71e943f96e4b579aeb + md5: f7f0d6cc2dc986d42ac2689ec88192be + depends: + - __glibc >=2.17,<3.0.a0 + - libgcc >=13 + license: MIT + license_family: MIT + size: 206884 + timestamp: 1744127994291 +- conda: https://prefix.dev/conda-forge/linux-aarch64/c-ares-1.34.5-h86ecc28_0.conda + sha256: ccae98c665d86723993d4cb0b456bd23804af5b0645052c09a31c9634eebc8df + md5: 5deaa903d46d62a1f8077ad359c3062e + depends: + - libgcc >=13 + license: MIT + license_family: MIT + size: 215950 + timestamp: 1744127972012 +- conda: https://prefix.dev/conda-forge/osx-arm64/c-ares-1.34.5-h5505292_0.conda + sha256: b4bb55d0806e41ffef94d0e3f3c97531f322b3cb0ca1f7cdf8e47f62538b7a2b + md5: f8cd1beb98240c7edb1a95883360ccfa + depends: + - __osx >=11.0 + license: MIT + license_family: MIT + size: 179696 + timestamp: 1744128058734 +- conda: https://prefix.dev/conda-forge/noarch/ca-certificates-2025.8.3-h4c7d964_0.conda + sha256: 3b82f62baad3fd33827b01b0426e8203a2786c8f452f633740868296bcbe8485 + md5: c9e0c0f82f6e63323827db462b40ede8 + depends: + - __win + license: ISC + size: 154489 + timestamp: 1754210967212 +- conda: https://prefix.dev/conda-forge/noarch/ca-certificates-2025.8.3-hbd8a1cb_0.conda + sha256: 837b795a2bb39b75694ba910c13c15fa4998d4bb2a622c214a6a5174b2ae53d1 + md5: 74784ee3d225fc3dca89edb635b4e5cc + depends: + - __unix + license: ISC + size: 154402 + timestamp: 1754210968730 +- conda: https://prefix.dev/conda-forge/linux-64/cairo-1.18.4-h3394656_0.conda + sha256: 3bd6a391ad60e471de76c0e9db34986c4b5058587fbf2efa5a7f54645e28c2c7 + md5: 09262e66b19567aff4f592fb53b28760 + depends: + - __glibc >=2.17,<3.0.a0 + - fontconfig >=2.15.0,<3.0a0 + - fonts-conda-ecosystem + - freetype >=2.12.1,<3.0a0 + - icu >=75.1,<76.0a0 + - libexpat >=2.6.4,<3.0a0 + - libgcc >=13 + - libglib >=2.82.2,<3.0a0 + - libpng >=1.6.47,<1.7.0a0 + - libstdcxx >=13 + - libxcb >=1.17.0,<2.0a0 + - libzlib >=1.3.1,<2.0a0 + - pixman >=0.44.2,<1.0a0 + - xorg-libice >=1.1.2,<2.0a0 + - xorg-libsm >=1.2.5,<2.0a0 + - xorg-libx11 >=1.8.11,<2.0a0 + - xorg-libxext >=1.3.6,<2.0a0 + - xorg-libxrender >=0.9.12,<0.10.0a0 + license: LGPL-2.1-only or MPL-1.1 + size: 978114 + timestamp: 1741554591855 +- conda: https://prefix.dev/conda-forge/linux-aarch64/cairo-1.18.4-h83712da_0.conda + sha256: 37cfff940d2d02259afdab75eb2dbac42cf830adadee78d3733d160a1de2cc66 + md5: cd55953a67ec727db5dc32b167201aa6 + depends: + - fontconfig >=2.15.0,<3.0a0 + - fonts-conda-ecosystem + - freetype >=2.12.1,<3.0a0 + - icu >=75.1,<76.0a0 + - libexpat >=2.6.4,<3.0a0 + - libgcc >=13 + - libglib >=2.82.2,<3.0a0 + - libpng >=1.6.47,<1.7.0a0 + - libstdcxx >=13 + - libxcb >=1.17.0,<2.0a0 + - libzlib >=1.3.1,<2.0a0 + - pixman >=0.44.2,<1.0a0 + - xorg-libice >=1.1.2,<2.0a0 + - xorg-libsm >=1.2.5,<2.0a0 + - xorg-libx11 >=1.8.11,<2.0a0 + - xorg-libxext >=1.3.6,<2.0a0 + - xorg-libxrender >=0.9.12,<0.10.0a0 + license: LGPL-2.1-only or MPL-1.1 + size: 966667 + timestamp: 1741554768968 +- conda: https://prefix.dev/conda-forge/osx-arm64/cairo-1.18.4-h6a3b0d2_0.conda + sha256: 00439d69bdd94eaf51656fdf479e0c853278439d22ae151cabf40eb17399d95f + md5: 38f6df8bc8c668417b904369a01ba2e2 + depends: + - __osx >=11.0 + - fontconfig >=2.15.0,<3.0a0 + - fonts-conda-ecosystem + - freetype >=2.12.1,<3.0a0 + - icu >=75.1,<76.0a0 + - libcxx >=18 + - libexpat >=2.6.4,<3.0a0 + - libglib >=2.82.2,<3.0a0 + - libpng >=1.6.47,<1.7.0a0 + - libzlib >=1.3.1,<2.0a0 + - pixman >=0.44.2,<1.0a0 + license: LGPL-2.1-only or MPL-1.1 + size: 896173 + timestamp: 1741554795915 +- conda: https://prefix.dev/conda-forge/win-64/cairo-1.18.4-h5782bbf_0.conda + sha256: b9f577bddb033dba4533e851853924bfe7b7c1623d0697df382eef177308a917 + md5: 20e32ced54300292aff690a69c5e7b97 + depends: + - fontconfig >=2.15.0,<3.0a0 + - fonts-conda-ecosystem + - freetype >=2.12.1,<3.0a0 + - icu >=75.1,<76.0a0 + - libexpat >=2.6.4,<3.0a0 + - libglib >=2.82.2,<3.0a0 + - libpng >=1.6.47,<1.7.0a0 + - libzlib >=1.3.1,<2.0a0 + - pixman >=0.44.2,<1.0a0 + - ucrt >=10.0.20348.0 + - vc >=14.2,<15 + - vc14_runtime >=14.29.30139 + license: LGPL-2.1-only or MPL-1.1 + size: 1524254 + timestamp: 1741555212198 +- conda: https://prefix.dev/conda-forge/noarch/catkin_pkg-1.0.0-pyhd8ed1ab_1.conda + sha256: f210ad987595a6ea0bf37ff600a820627e9f7a5eba2e6b2db02f714e925e8624 + md5: 016600de0d8b1a8c5ccc99845f51f9da + depends: + - docutils + - pyparsing >=1.5.7 + - python >=3.9 + - python-dateutil + - setuptools + license: BSD-3-Clause + license_family: BSD + size: 53393 + timestamp: 1734127327150 +- conda: https://prefix.dev/conda-forge/linux-64/cffi-1.17.1-py311hf29c0ef_0.conda + sha256: bc47aa39c8254e9e487b8bcd74cfa3b4a3de3648869eb1a0b89905986b668e35 + md5: 55553ecd5328336368db611f350b7039 + depends: + - __glibc >=2.17,<3.0.a0 + - libffi >=3.4,<4.0a0 + - libgcc >=13 + - pycparser + - python >=3.11,<3.12.0a0 + - python_abi 3.11.* *_cp311 + license: MIT + license_family: MIT + size: 302115 + timestamp: 1725560701719 +- conda: https://prefix.dev/conda-forge/linux-aarch64/cffi-1.17.1-py311h14e8bb7_0.conda + sha256: 3d220020c9782ebd4f23cd0a6148b419e4397590ee414e6e69b9be810c57d2ca + md5: 616d65d1eea809af7e2b5f7ea36350fc + depends: + - libffi >=3.4,<4.0a0 + - libgcc >=13 + - pycparser + - python >=3.11,<3.12.0a0 + - python_abi 3.11.* *_cp311 + license: MIT + license_family: MIT + size: 319122 + timestamp: 1725562148568 +- conda: https://prefix.dev/conda-forge/osx-arm64/cffi-1.17.1-py311h3a79f62_0.conda + sha256: 253605b305cc4548b8f97eb7c2e146697e0c7672b099c4862ec5ca7e8e995307 + md5: a42272c5dbb6ffbc1a5af70f24c7b448 + depends: + - __osx >=11.0 + - libffi >=3.4,<4.0a0 + - pycparser + - python >=3.11,<3.12.0a0 + - python >=3.11,<3.12.0a0 *_cpython + - python_abi 3.11.* *_cp311 + license: MIT + license_family: MIT + size: 288211 + timestamp: 1725560745212 +- conda: https://prefix.dev/conda-forge/win-64/cffi-1.17.1-py311he736701_0.conda + sha256: 9689fbd8a31fdf273f826601e90146006f6631619767a67955048c7ad7798a1d + md5: e1c69be23bd05471a6c623e91680ad59 + depends: + - pycparser + - python >=3.11,<3.12.0a0 + - python_abi 3.11.* *_cp311 + - ucrt >=10.0.20348.0 + - vc >=14.2,<15 + - vc14_runtime >=14.29.30139 + license: MIT + license_family: MIT + size: 297627 + timestamp: 1725561079708 +- conda: https://prefix.dev/conda-forge/linux-64/cmake-4.1.0-hc85cc9f_0.conda + sha256: e7f4837d1d74368bcda30aaae545af72fe8a83abd86666e0a56a6fcb744e6508 + md5: 63080125641ce03edb003ba6cb3639d0 + depends: + - __glibc >=2.17,<3.0.a0 + - bzip2 >=1.0.8,<2.0a0 + - libcurl >=8.14.1,<9.0a0 + - libexpat >=2.7.1,<3.0a0 + - libgcc >=14 + - liblzma >=5.8.1,<6.0a0 + - libstdcxx >=14 + - libuv >=1.51.0,<2.0a0 + - libzlib >=1.3.1,<2.0a0 + - ncurses >=6.5,<7.0a0 + - rhash >=1.4.6,<2.0a0 + - zstd >=1.5.7,<1.6.0a0 + license: BSD-3-Clause + license_family: BSD + size: 21239285 + timestamp: 1754436546742 +- conda: https://prefix.dev/conda-forge/linux-aarch64/cmake-4.1.0-hc9d863e_0.conda + sha256: 94a1c705f70156f8c29b721f10f1184db8899cbca6c694b8fd1e7079e71d6967 + md5: 9ae7b0deec9374d808e397ab92152da2 + depends: + - bzip2 >=1.0.8,<2.0a0 + - libcurl >=8.14.1,<9.0a0 + - libexpat >=2.7.1,<3.0a0 + - libgcc >=14 + - liblzma >=5.8.1,<6.0a0 + - libstdcxx >=14 + - libuv >=1.51.0,<2.0a0 + - libzlib >=1.3.1,<2.0a0 + - ncurses >=6.5,<7.0a0 + - rhash >=1.4.6,<2.0a0 + - zstd >=1.5.7,<1.6.0a0 + license: BSD-3-Clause + license_family: BSD + size: 20513590 + timestamp: 1754436453966 +- conda: https://prefix.dev/conda-forge/osx-arm64/cmake-4.1.0-hae74ae4_0.conda + sha256: 0e00e9c1944e594f293e10b4e4abd4505f098d8d63c95c455b80775abcf134fa + md5: 65d333c04dcdbea01b16993358df3364 + depends: + - __osx >=11.0 + - bzip2 >=1.0.8,<2.0a0 + - libcurl >=8.14.1,<9.0a0 + - libcxx >=19 + - libexpat >=2.7.1,<3.0a0 + - liblzma >=5.8.1,<6.0a0 + - libuv >=1.51.0,<2.0a0 + - libzlib >=1.3.1,<2.0a0 + - ncurses >=6.5,<7.0a0 + - rhash >=1.4.6,<2.0a0 + - zstd >=1.5.7,<1.6.0a0 + license: BSD-3-Clause + license_family: BSD + size: 16940415 + timestamp: 1754436958182 +- conda: https://prefix.dev/conda-forge/win-64/cmake-4.1.0-hdcbee5b_0.conda + sha256: 567351c33d5e2b391dbc8bf56dce711c7ca19182a84882c473a32461d8608798 + md5: a2fb147b7fe411a161a83e303b50989b + depends: + - bzip2 >=1.0.8,<2.0a0 + - libcurl >=8.14.1,<9.0a0 + - libexpat >=2.7.1,<3.0a0 + - liblzma >=5.8.1,<6.0a0 + - libuv >=1.51.0,<2.0a0 + - libzlib >=1.3.1,<2.0a0 + - ucrt >=10.0.20348.0 + - vc14_runtime >=14.44.35208 + - zstd >=1.5.7,<1.6.0a0 + license: BSD-3-Clause + license_family: BSD + size: 15045332 + timestamp: 1754437050743 +- conda: https://prefix.dev/conda-forge/noarch/colorama-0.4.6-pyhd8ed1ab_1.conda + sha256: ab29d57dc70786c1269633ba3dff20288b81664d3ff8d21af995742e2bb03287 + md5: 962b9857ee8e7018c22f2776ffa0b2d7 + depends: + - python >=3.9 + license: BSD-3-Clause + license_family: BSD + size: 27011 + timestamp: 1733218222191 +- conda: https://prefix.dev/conda-forge/linux-64/console_bridge-1.0.2-h924138e_1.tar.bz2 + sha256: 29caeda123ea705e68de46dc3b86065ec78f5b44d7ae69b320cc57e136d2d9d7 + md5: e891b2b856a57d2b2ddb9ed366e3f2ce + depends: + - libgcc-ng >=10.3.0 + - libstdcxx-ng >=10.3.0 + license: BSD-3-Clause + license_family: BSD + size: 18460 + timestamp: 1648912649612 +- conda: https://prefix.dev/conda-forge/linux-aarch64/console_bridge-1.0.2-hdd96247_1.tar.bz2 + sha256: 3155a52cb046da65ba7afc8f9b4e6c54881fe511a56b3517b8b4fbd42607b088 + md5: 87cedc27ed44d7bda9cb29a6294dfe04 + depends: + - libgcc-ng >=10.3.0 + - libstdcxx-ng >=10.3.0 + license: BSD-3-Clause + license_family: BSD + size: 18484 + timestamp: 1648912662150 +- conda: https://prefix.dev/conda-forge/osx-arm64/console_bridge-1.0.2-h3e96240_1.tar.bz2 + sha256: f39c48eb54adaffe679fc9b3a2a9b9cd78f97e2e9fd555ec7c5fd8a99957bfc5 + md5: e2dde786c16d90869de84d458af36d92 + depends: + - libcxx >=12.0.1 + license: BSD-3-Clause + license_family: BSD + size: 17727 + timestamp: 1648912770421 +- conda: https://prefix.dev/conda-forge/win-64/console_bridge-1.0.2-h5362a0b_1.tar.bz2 + sha256: 15dd8cd1735c9405ad04d9881c15650fb98bf8e71e5675e98898184e4a731ec6 + md5: 47acc5c1cb921914270dd9fe47ac30db + depends: + - vc >=14.1,<15 + - vs2015_runtime >=14.16.27033 + license: BSD-3-Clause + license_family: BSD + size: 24540 + timestamp: 1648913342231 +- conda: https://prefix.dev/conda-forge/linux-64/contourpy-1.3.3-py311hdf67eae_1.conda + sha256: 883234cd86911ffc3d5e7ce8959930e11c56adf304e6ba26637364b049c917e8 + md5: 390f9e645ff2f4b9cf48d53b3cf6c942 + depends: + - __glibc >=2.17,<3.0.a0 + - libgcc >=14 + - libstdcxx >=14 + - numpy >=1.25 + - python >=3.11,<3.12.0a0 + - python_abi 3.11.* *_cp311 + license: BSD-3-Clause + license_family: BSD + size: 292898 + timestamp: 1754063884923 +- conda: https://prefix.dev/conda-forge/linux-aarch64/contourpy-1.3.3-py311hfca10b7_1.conda + sha256: 7b2b688bb8c882e9965c33408e71e33040e3e40c23455fe9eac42c0c21f93e4e + md5: f2c4968cb7fc81c1a14d3e2cae59226e + depends: + - libgcc >=14 + - libstdcxx >=14 + - numpy >=1.25 + - python >=3.11,<3.12.0a0 + - python >=3.11,<3.12.0a0 *_cpython + - python_abi 3.11.* *_cp311 + license: BSD-3-Clause + license_family: BSD + size: 306569 + timestamp: 1754063798440 +- conda: https://prefix.dev/conda-forge/osx-arm64/contourpy-1.3.3-py311h57a9ea7_1.conda + sha256: 414e879db0cca9b73b56b8480aa992abf5c1652dccac900c33228773b4fdab47 + md5: 506ebc9a0c6c904a2a84d4f2ebf98704 + depends: + - __osx >=11.0 + - libcxx >=19 + - numpy >=1.25 + - python >=3.11,<3.12.0a0 + - python >=3.11,<3.12.0a0 *_cpython + - python_abi 3.11.* *_cp311 + license: BSD-3-Clause + license_family: BSD + size: 257471 + timestamp: 1754064298990 +- conda: https://prefix.dev/conda-forge/win-64/contourpy-1.3.3-py311h3fd045d_1.conda + sha256: 6980f4320495f59419c1b10bdc0d3441a7e8065e1aff5cc544c24d1447e67982 + md5: fe9571615b015491b3741a4047794770 + depends: + - numpy >=1.25 + - python >=3.11,<3.12.0a0 + - python_abi 3.11.* *_cp311 + - ucrt >=10.0.20348.0 + - vc >=14.3,<15 + - vc14_runtime >=14.44.35208 + license: BSD-3-Clause + license_family: BSD + size: 224514 + timestamp: 1754063885406 +- conda: https://prefix.dev/conda-forge/linux-64/cppcheck-2.18.1-py311hdb66536_0.conda + sha256: 6f33f7c986ca19df4e32c3cc827a35af9962fa924fdffe2568cffe8495603164 + md5: 0dba57df14418c03ce8de4cb9eecaa73 + depends: + - pygments + - python + - __glibc >=2.17,<3.0.a0 + - libstdcxx >=14 + - libgcc >=14 + - pcre >=8.45,<9.0a0 + - tinyxml2 >=11.0.0,<11.1.0a0 + - python_abi 3.11.* *_cp311 + license: GPL-3.0-or-later + license_family: GPL + size: 3072550 + timestamp: 1755438358595 +- conda: https://prefix.dev/conda-forge/linux-aarch64/cppcheck-2.18.1-py311h8209a4f_0.conda + sha256: a942d24c2ebf702aef80e11910c7fa246cc2b52172e2745494cc1008fedc3a42 + md5: 6e64b7c326d29b29ad7fd76d0786a3d3 + depends: + - pygments + - python + - libgcc >=14 + - python 3.11.* *_cpython + - libstdcxx >=14 + - libgcc >=14 + - pcre >=8.45,<9.0a0 + - tinyxml2 >=11.0.0,<11.1.0a0 + - python_abi 3.11.* *_cp311 + license: GPL-3.0-or-later + license_family: GPL + size: 2929454 + timestamp: 1755438349783 +- conda: https://prefix.dev/conda-forge/osx-arm64/cppcheck-2.18.1-py311h936f1a6_0.conda + sha256: 735e453241bcdc2afcd0ad6cd39871df8340c5d397c89f119779748d6f45025b + md5: 56a4f02f3034a602b7dca6d3e9b52b4d + depends: + - pygments + - python + - python 3.11.* *_cpython + - libcxx >=19 + - __osx >=11.0 + - tinyxml2 >=11.0.0,<11.1.0a0 + - pcre >=8.45,<9.0a0 + - python_abi 3.11.* *_cp311 + license: GPL-3.0-or-later + license_family: GPL + size: 2591776 + timestamp: 1755438418262 +- conda: https://prefix.dev/conda-forge/win-64/cppcheck-2.18.1-py311he12220e_0.conda + sha256: 583ac9d9516657c7d608ae4f05c5115d0ba21717d34034369fa314fa3baa162c + md5: 3aaf4e2ab735a8f2325de7b88b4be31d + depends: + - pygments + - python + - vc >=14.3,<15 + - vc14_runtime >=14.44.35208 + - ucrt >=10.0.20348.0 + - vc >=14.3,<15 + - vc14_runtime >=14.44.35208 + - ucrt >=10.0.20348.0 + - python_abi 3.11.* *_cp311 + - pcre >=8.45,<9.0a0 + - tinyxml2 >=11.0.0,<11.1.0a0 + license: GPL-3.0-or-later + license_family: GPL + size: 20867 + timestamp: 1755438346302 +- conda: https://prefix.dev/conda-forge/linux-64/cryptography-45.0.6-py311h8488d03_0.conda + sha256: e8afbd1c66514f6163168f00f981554126055a7cb64ae9464ed0c29fb09b8241 + md5: 0ffbf52c0881015b16fcd45a5e42f1f6 + depends: + - __glibc >=2.17,<3.0.a0 + - cffi >=1.12 + - libgcc >=14 + - openssl >=3.5.2,<4.0a0 + - python >=3.11,<3.12.0a0 + - python_abi 3.11.* *_cp311 + constrains: + - __glibc >=2.17 + license: Apache-2.0 AND BSD-3-Clause AND PSF-2.0 AND MIT + license_family: BSD + size: 1659446 + timestamp: 1754473226324 +- conda: https://prefix.dev/conda-forge/linux-aarch64/cryptography-45.0.6-py311h2822d24_0.conda + sha256: 2c9cc401053e4881e8c1dd1b60597c2df51cb6cace23e43626ceed7be3af90f4 + md5: d7d40624d58088466a9d1c50e7608a9f + depends: + - cffi >=1.12 + - libgcc >=14 + - openssl >=3.5.2,<4.0a0 + - python >=3.11,<3.12.0a0 + - python >=3.11,<3.12.0a0 *_cpython + - python_abi 3.11.* *_cp311 + constrains: + - __glibc >=2.17 + license: Apache-2.0 AND BSD-3-Clause AND PSF-2.0 AND MIT + license_family: BSD + size: 1636797 + timestamp: 1754472762089 +- conda: https://prefix.dev/conda-forge/osx-arm64/cryptography-45.0.6-py311h0107818_0.conda + sha256: a99a3ff69fdd048b8c3dd06c481f13d43880cee43ed31a8b430afcc7238a7b6f + md5: 7fdede1d513555965a5aa7bcee40b7ec + depends: + - __osx >=11.0 + - cffi >=1.12 + - openssl >=3.5.2,<4.0a0 + - python >=3.11,<3.12.0a0 + - python >=3.11,<3.12.0a0 *_cpython + - python_abi 3.11.* *_cp311 + constrains: + - __osx >=11.0 + license: Apache-2.0 AND BSD-3-Clause AND PSF-2.0 AND MIT + license_family: BSD + size: 1541074 + timestamp: 1754473039623 +- conda: https://prefix.dev/conda-forge/win-64/cryptography-45.0.6-py311h5e0b3ae_0.conda + sha256: 58c133334cad363adda9fc021c613f727eab030ea1b119caab66ab61b7da12bd + md5: 87a3755dbc6d2144a199ca3eda21f706 + depends: + - cffi >=1.12 + - openssl >=3.5.2,<4.0a0 + - python >=3.11,<3.12.0a0 + - python_abi 3.11.* *_cp311 + - ucrt >=10.0.20348.0 + - vc >=14.3,<15 + - vc14_runtime >=14.44.35208 + license: Apache-2.0 AND BSD-3-Clause AND PSF-2.0 AND MIT + license_family: BSD + size: 1414096 + timestamp: 1754472990302 +- conda: https://prefix.dev/conda-forge/noarch/cycler-0.12.1-pyhd8ed1ab_1.conda + sha256: 9827efa891e507a91a8a2acf64e210d2aff394e1cde432ad08e1f8c66b12293c + md5: 44600c4667a319d67dbe0681fc0bc833 + depends: + - python >=3.9 + license: BSD-3-Clause + license_family: BSD + size: 13399 + timestamp: 1733332563512 +- conda: https://prefix.dev/conda-forge/linux-64/cyrus-sasl-2.1.28-hd9c7081_0.conda + sha256: ee09ad7610c12c7008262d713416d0b58bf365bc38584dce48950025850bdf3f + md5: cae723309a49399d2949362f4ab5c9e4 + depends: + - __glibc >=2.17,<3.0.a0 + - krb5 >=1.21.3,<1.22.0a0 + - libgcc >=13 + - libntlm >=1.8,<2.0a0 + - libstdcxx >=13 + - libxcrypt >=4.4.36 + - openssl >=3.5.0,<4.0a0 + license: BSD-3-Clause-Attribution + license_family: BSD + size: 209774 + timestamp: 1750239039316 +- conda: https://prefix.dev/conda-forge/linux-aarch64/cyrus-sasl-2.1.28-h6c5dea3_0.conda + sha256: 87b603b76b05e9be749a2616582bfb907e06e7851285bdd78f9ddaaa732d7bc7 + md5: b6d06b46e791add99cc39fbbc34530d5 + depends: + - krb5 >=1.21.3,<1.22.0a0 + - libgcc >=13 + - libntlm + - libstdcxx >=13 + - libxcrypt >=4.4.36 + - openssl >=3.5.0,<4.0a0 + license: BSD-3-Clause-Attribution + license_family: BSD + size: 227295 + timestamp: 1750239141751 +- conda: https://prefix.dev/conda-forge/osx-arm64/cyrus-sasl-2.1.28-ha1cbb27_0.conda + sha256: 7de03254fa5421e7ec2347c830a59530fb5356022ee0dc26ec1cef0be1de0911 + md5: 2867ea6551e97e53a81787fd967162b1 + depends: + - __osx >=11.0 + - krb5 >=1.21.3,<1.22.0a0 + - libcxx >=18 + - libntlm >=1.8,<2.0a0 + - openssl >=3.5.0,<4.0a0 + license: BSD-3-Clause-Attribution + license_family: BSD + size: 193732 + timestamp: 1750239236574 +- conda: https://prefix.dev/conda-forge/linux-64/dav1d-1.2.1-hd590300_0.conda + sha256: 22053a5842ca8ee1cf8e1a817138cdb5e647eb2c46979f84153f6ad7bde73020 + md5: 418c6ca5929a611cbd69204907a83995 + depends: + - libgcc-ng >=12 + license: BSD-2-Clause + license_family: BSD + size: 760229 + timestamp: 1685695754230 +- conda: https://prefix.dev/conda-forge/linux-aarch64/dav1d-1.2.1-h31becfc_0.conda + sha256: 33fe66d025cf5bac7745196d1a3dd7a437abcf2dbce66043e9745218169f7e17 + md5: 6e5a87182d66b2d1328a96b61ca43a62 + depends: + - libgcc-ng >=12 + license: BSD-2-Clause + license_family: BSD + size: 347363 + timestamp: 1685696690003 +- conda: https://prefix.dev/conda-forge/osx-arm64/dav1d-1.2.1-hb547adb_0.conda + sha256: 93e077b880a85baec8227e8c72199220c7f87849ad32d02c14fb3807368260b8 + md5: 5a74cdee497e6b65173e10d94582fae6 + license: BSD-2-Clause + license_family: BSD + size: 316394 + timestamp: 1685695959391 +- conda: https://prefix.dev/conda-forge/win-64/dav1d-1.2.1-hcfcfb64_0.conda + sha256: 2aa2083c9c186da7d6f975ccfbef654ed54fff27f4bc321dbcd12cee932ec2c4 + md5: ed2c27bda330e3f0ab41577cf8b9b585 + depends: + - ucrt >=10.0.20348.0 + - vc >=14.2,<15 + - vc14_runtime >=14.29.30139 + license: BSD-2-Clause + license_family: BSD + size: 618643 + timestamp: 1685696352968 +- conda: https://prefix.dev/conda-forge/linux-64/dbus-1.16.2-h3c4dab8_0.conda + sha256: 3b988146a50e165f0fa4e839545c679af88e4782ec284cc7b6d07dd226d6a068 + md5: 679616eb5ad4e521c83da4650860aba7 + depends: + - libstdcxx >=13 + - libgcc >=13 + - __glibc >=2.17,<3.0.a0 + - libgcc >=13 + - libexpat >=2.7.0,<3.0a0 + - libzlib >=1.3.1,<2.0a0 + - libglib >=2.84.2,<3.0a0 + license: GPL-2.0-or-later + license_family: GPL + size: 437860 + timestamp: 1747855126005 +- conda: https://prefix.dev/conda-forge/linux-aarch64/dbus-1.16.2-heda779d_0.conda + sha256: 5c9166bbbe1ea7d0685a1549aad4ea887b1eb3a07e752389f86b185ef8eac99a + md5: 9203b74bb1f3fa0d6f308094b3b44c1e + depends: + - libgcc >=13 + - libstdcxx >=13 + - libgcc >=13 + - libexpat >=2.7.0,<3.0a0 + - libglib >=2.84.2,<3.0a0 + - libzlib >=1.3.1,<2.0a0 + license: GPL-2.0-or-later + license_family: GPL + size: 469781 + timestamp: 1747855172617 +- conda: https://prefix.dev/conda-forge/osx-arm64/dbus-1.16.2-hda038a8_0.conda + sha256: 2ef01ab52dedb477cb7291994ad556279b37c8ad457521e75c47cad20248ea30 + md5: 80c663e4f6b0fd8d6723ff7d68f09429 + depends: + - __osx >=11.0 + - libcxx >=18 + - libzlib >=1.3.1,<2.0a0 + - libglib >=2.84.2,<3.0a0 + - libexpat >=2.7.0,<3.0a0 + license: GPL-2.0-or-later + license_family: GPL + size: 384376 + timestamp: 1747855177419 +- conda: https://prefix.dev/conda-forge/noarch/distro-1.9.0-pyhd8ed1ab_1.conda + sha256: 5603c7d0321963bb9b4030eadabc3fd7ca6103a38475b4e0ed13ed6d97c86f4e + md5: 0a2014fd9860f8b1eaa0b1f3d3771a08 + depends: + - python >=3.9 + license: Apache-2.0 + license_family: APACHE + size: 41773 + timestamp: 1734729953882 +- conda: https://prefix.dev/conda-forge/noarch/docutils-0.22-pyhd8ed1ab_0.conda + sha256: dd585e49f231ec414e6550783f2aff85027fa829e5d66004ad702e1cfa6324aa + md5: 140faac6cff4382f5ea077ca618b2931 + depends: + - python >=3.9 + license: CC-PDDC AND BSD-3-Clause AND BSD-2-Clause AND ZPL-2.1 + size: 436452 + timestamp: 1753875179563 +- conda: https://prefix.dev/conda-forge/linux-64/double-conversion-3.3.1-h5888daf_0.conda + sha256: 1bcc132fbcc13f9ad69da7aa87f60ea41de7ed4d09f3a00ff6e0e70e1c690bc2 + md5: bfd56492d8346d669010eccafe0ba058 + depends: + - __glibc >=2.17,<3.0.a0 + - libgcc >=13 + - libstdcxx >=13 + license: BSD-3-Clause + license_family: BSD + size: 69544 + timestamp: 1739569648873 +- conda: https://prefix.dev/conda-forge/linux-aarch64/double-conversion-3.3.1-h5ad3122_0.conda + sha256: 9a2282445e8ee2da6253490c896bc3be80f07550564a6db5f4920aa3ae390021 + md5: 399959d889e1a73fc99f12ce480e77e1 + depends: + - libgcc >=13 + - libstdcxx >=13 + license: BSD-3-Clause + license_family: BSD + size: 67140 + timestamp: 1739571636249 +- conda: https://prefix.dev/conda-forge/osx-arm64/double-conversion-3.3.1-h286801f_0.conda + sha256: 819867a009793fe719b74b2b5881a7e85dc13ce504c7260a9801f3b1970fd97b + md5: 4dce99b1430bf11b64432e2edcc428fa + depends: + - __osx >=11.0 + - libcxx >=18 + license: BSD-3-Clause + license_family: BSD + size: 63265 + timestamp: 1739569780916 +- conda: https://prefix.dev/conda-forge/win-64/double-conversion-3.3.1-he0c23c2_0.conda + sha256: b1fee32ef36a98159f0a2a96c4e734dfc9adff73acd444940831b22c1fb6d5c0 + md5: e9a1402439c18a4e3c7a52e4246e9e1c + depends: + - ucrt >=10.0.20348.0 + - vc >=14.2,<15 + - vc14_runtime >=14.29.30139 + license: BSD-3-Clause + license_family: BSD + size: 71355 + timestamp: 1739570178995 +- conda: https://prefix.dev/conda-forge/linux-64/eigen-3.4.0-h00ab1b0_0.conda + sha256: 53b15a98aadbe0704479bacaf7a5618fcb32d1577be320630674574241639b34 + md5: b1b879d6d093f55dd40d58b5eb2f0699 + depends: + - libgcc-ng >=12 + - libstdcxx-ng >=12 + license: MPL-2.0 + license_family: MOZILLA + size: 1088433 + timestamp: 1690272126173 +- conda: https://prefix.dev/conda-forge/linux-aarch64/eigen-3.4.0-h2a328a1_0.conda + sha256: f9c763805938ebaa43183b07caadce8eb3e1af8c21df8792f2793c3dd5210b4e + md5: 0057b28f7ed26d80bd2277a128f324b2 + depends: + - libgcc-ng >=12 + - libstdcxx-ng >=12 + license: MPL-2.0 + license_family: MOZILLA + size: 1090421 + timestamp: 1690273745233 +- conda: https://prefix.dev/conda-forge/osx-arm64/eigen-3.4.0-h1995070_0.conda + sha256: c20b3677b16d8907343fce68e7c437184fef7f5ed0a765c104b775f8a485c5c9 + md5: 3691ea3ff568ba38826389bafc717909 + depends: + - libcxx >=15.0.7 + license: MPL-2.0 + license_family: MOZILLA + size: 1087751 + timestamp: 1690275869049 +- conda: https://prefix.dev/conda-forge/win-64/eigen-3.4.0-h91493d7_0.conda + sha256: 633a6a8db1f9a010cb0619f3446fb61f62dea348b09615ffae9744ab1001c24c + md5: 305b3ca7023ac046b9a42a48661f6512 + depends: + - ucrt >=10.0.20348.0 + - vc >=14.2,<15 + - vc14_runtime >=14.29.30139 + license: MPL-2.0 + license_family: MOZILLA + size: 1089706 + timestamp: 1690273089254 +- conda: https://prefix.dev/conda-forge/noarch/empy-3.3.4-pyh9f0ad1d_1.tar.bz2 + sha256: 75e04755df8d8db7a7711dddaf68963c11258b755c9c24565bfefa493ee383e3 + md5: e4be10fd1a907b223da5be93f06709d2 + depends: + - python + license: LGPL-2.1 + license_family: GPL + size: 40210 + timestamp: 1586444722817 +- conda: https://prefix.dev/conda-forge/linux-64/epoxy-1.5.10-h166bdaf_1.tar.bz2 + sha256: 1e58ee2ed0f4699be202f23d49b9644b499836230da7dd5b2f63e6766acff89e + md5: a089d06164afd2d511347d3f87214e0b + depends: + - libgcc-ng >=10.3.0 + license: MIT + license_family: MIT + size: 1440699 + timestamp: 1648505042260 +- conda: https://prefix.dev/conda-forge/linux-aarch64/epoxy-1.5.10-h4e544f5_1.tar.bz2 + sha256: 2cdd3965353b24f49bd8d4aafaaf282968509dc600350c25d0d29355990af834 + md5: e3000ef63f6250283a6ca13d38e3e8be + depends: + - libgcc-ng >=10.3.0 + license: MIT + license_family: MIT + size: 1455489 + timestamp: 1648505885929 +- conda: https://prefix.dev/conda-forge/osx-arm64/epoxy-1.5.10-h1c322ee_1.tar.bz2 + sha256: 8b93dbebab0fe12ece4767e6a2dc53a6600319ece0b8ba5121715f28c7b0f8d1 + md5: 20dd7359a6052120d52e1e13b4c818b9 + license: MIT + license_family: MIT + size: 355201 + timestamp: 1648505273975 +- conda: https://prefix.dev/conda-forge/noarch/exceptiongroup-1.3.0-pyhd8ed1ab_0.conda + sha256: ce61f4f99401a4bd455b89909153b40b9c823276aefcbb06f2044618696009ca + md5: 72e42d28960d875c7654614f8b50939a + depends: + - python >=3.9 + - typing_extensions >=4.6.0 + license: MIT and PSF-2.0 + size: 21284 + timestamp: 1746947398083 +- conda: https://prefix.dev/conda-forge/linux-64/expat-2.7.1-hecca717_0.conda + sha256: e981cf62a722f0eb4631ac7b786c288c03883fbc241fa98a276308fb69cb2c59 + md5: 6033d8c2bb9b460929d00ba54154614c + depends: + - __glibc >=2.17,<3.0.a0 + - libexpat 2.7.1 hecca717_0 + - libgcc >=14 + license: MIT + license_family: MIT + size: 140948 + timestamp: 1752719584725 +- conda: https://prefix.dev/conda-forge/linux-aarch64/expat-2.7.1-hfae3067_0.conda + sha256: ec9296114a52c2d1c5f9f5409b90f16f6ef71319ef58fd4c89fd6c459c2a6ac1 + md5: 97a25989c55f2cc3a2cfdd17bb1bf510 + depends: + - libexpat 2.7.1 hfae3067_0 + - libgcc >=14 + license: MIT + license_family: MIT + size: 134362 + timestamp: 1752719773039 +- conda: https://prefix.dev/conda-forge/osx-arm64/expat-2.7.1-hec049ff_0.conda + sha256: 8f2d1faeff1da40e66285711934e0d310d768720552452daa89b099aa8f82f29 + md5: 7888ca1ed7f0abef9442620dcf926e17 + depends: + - __osx >=11.0 + - libexpat 2.7.1 hec049ff_0 + license: MIT + license_family: MIT + size: 127524 + timestamp: 1752719671694 +- conda: https://prefix.dev/conda-forge/win-64/expat-2.7.1-hac47afa_0.conda + sha256: 43a850ef7a651ac5579f5edd5a1d50a2e9c57dedecc308211e5282a93dbcbdc6 + md5: 48e89745802e32edd5fa6faa03ebf513 + depends: + - libexpat 2.7.1 hac47afa_0 + - ucrt >=10.0.20348.0 + - vc >=14.3,<15 + - vc14_runtime >=14.44.35208 + license: MIT + license_family: MIT + size: 234623 + timestamp: 1752719798470 +- conda: https://prefix.dev/conda-forge/linux-64/ffmpeg-7.1.1-gpl_h127656b_906.conda + sha256: e8e93a1afd93bed11ccf2a2224d2b92b2af8758c89576ed87ff4df7f3269604f + md5: 28cffcba871461840275632bc4653ce3 + depends: + - __glibc >=2.17,<3.0.a0 + - alsa-lib >=1.2.14,<1.3.0a0 + - aom >=3.9.1,<3.10.0a0 + - bzip2 >=1.0.8,<2.0a0 + - dav1d >=1.2.1,<1.2.2.0a0 + - fontconfig >=2.15.0,<3.0a0 + - fonts-conda-ecosystem + - gmp >=6.3.0,<7.0a0 + - harfbuzz >=11.0.1 + - lame >=3.100,<3.101.0a0 + - libass >=0.17.3,<0.17.4.0a0 + - libexpat >=2.7.0,<3.0a0 + - libfreetype >=2.13.3 + - libfreetype6 >=2.13.3 + - libgcc >=13 + - libiconv >=1.18,<2.0a0 + - liblzma >=5.8.1,<6.0a0 + - libopenvino >=2025.0.0,<2025.0.1.0a0 + - libopenvino-auto-batch-plugin >=2025.0.0,<2025.0.1.0a0 + - libopenvino-auto-plugin >=2025.0.0,<2025.0.1.0a0 + - libopenvino-hetero-plugin >=2025.0.0,<2025.0.1.0a0 + - libopenvino-intel-cpu-plugin >=2025.0.0,<2025.0.1.0a0 + - libopenvino-intel-gpu-plugin >=2025.0.0,<2025.0.1.0a0 + - libopenvino-intel-npu-plugin >=2025.0.0,<2025.0.1.0a0 + - libopenvino-ir-frontend >=2025.0.0,<2025.0.1.0a0 + - libopenvino-onnx-frontend >=2025.0.0,<2025.0.1.0a0 + - libopenvino-paddle-frontend >=2025.0.0,<2025.0.1.0a0 + - libopenvino-pytorch-frontend >=2025.0.0,<2025.0.1.0a0 + - libopenvino-tensorflow-frontend >=2025.0.0,<2025.0.1.0a0 + - libopenvino-tensorflow-lite-frontend >=2025.0.0,<2025.0.1.0a0 + - libopus >=1.5.2,<2.0a0 + - librsvg >=2.58.4,<3.0a0 + - libstdcxx >=13 + - libva >=2.22.0,<3.0a0 + - libvorbis >=1.3.7,<1.4.0a0 + - libvpx >=1.14.1,<1.15.0a0 + - libxcb >=1.17.0,<2.0a0 + - libxml2 >=2.13.8,<2.14.0a0 + - libzlib >=1.3.1,<2.0a0 + - openh264 >=2.6.0,<2.6.1.0a0 + - openssl >=3.5.0,<4.0a0 + - pulseaudio-client >=17.0,<17.1.0a0 + - sdl2 >=2.32.54,<3.0a0 + - svt-av1 >=3.0.2,<3.0.3.0a0 + - x264 >=1!164.3095,<1!165 + - x265 >=3.5,<3.6.0a0 + - xorg-libx11 >=1.8.12,<2.0a0 + constrains: + - __cuda >=12.8 + license: GPL-2.0-or-later + license_family: GPL + size: 10377191 + timestamp: 1748704974937 +- conda: https://prefix.dev/conda-forge/linux-aarch64/ffmpeg-7.1.1-gpl_h30b7fc1_906.conda + sha256: 157dbd7fdd226448343f962c7fcb4c5b5c2fa12dd1e0f1f88f4c16559522c02d + md5: 74fb3d97aeebfb19ed743f2a2f2e9ec3 + depends: + - alsa-lib >=1.2.14,<1.3.0a0 + - aom >=3.9.1,<3.10.0a0 + - bzip2 >=1.0.8,<2.0a0 + - dav1d >=1.2.1,<1.2.2.0a0 + - fontconfig >=2.15.0,<3.0a0 + - fonts-conda-ecosystem + - gmp >=6.3.0,<7.0a0 + - harfbuzz >=11.0.1 + - lame >=3.100,<3.101.0a0 + - libass >=0.17.3,<0.17.4.0a0 + - libexpat >=2.7.0,<3.0a0 + - libfreetype >=2.13.3 + - libfreetype6 >=2.13.3 + - libgcc >=13 + - libiconv >=1.18,<2.0a0 + - liblzma >=5.8.1,<6.0a0 + - libopenvino >=2025.0.0,<2025.0.1.0a0 + - libopenvino-arm-cpu-plugin >=2025.0.0,<2025.0.1.0a0 + - libopenvino-auto-batch-plugin >=2025.0.0,<2025.0.1.0a0 + - libopenvino-auto-plugin >=2025.0.0,<2025.0.1.0a0 + - libopenvino-hetero-plugin >=2025.0.0,<2025.0.1.0a0 + - libopenvino-ir-frontend >=2025.0.0,<2025.0.1.0a0 + - libopenvino-onnx-frontend >=2025.0.0,<2025.0.1.0a0 + - libopenvino-paddle-frontend >=2025.0.0,<2025.0.1.0a0 + - libopenvino-pytorch-frontend >=2025.0.0,<2025.0.1.0a0 + - libopenvino-tensorflow-frontend >=2025.0.0,<2025.0.1.0a0 + - libopenvino-tensorflow-lite-frontend >=2025.0.0,<2025.0.1.0a0 + - libopus >=1.5.2,<2.0a0 + - librsvg >=2.58.4,<3.0a0 + - libstdcxx >=13 + - libvorbis >=1.3.7,<1.4.0a0 + - libvpx >=1.14.1,<1.15.0a0 + - libxcb >=1.17.0,<2.0a0 + - libxml2 >=2.13.8,<2.14.0a0 + - libzlib >=1.3.1,<2.0a0 + - openh264 >=2.6.0,<2.6.1.0a0 + - openssl >=3.5.0,<4.0a0 + - pulseaudio-client >=17.0,<17.1.0a0 + - sdl2 >=2.32.54,<3.0a0 + - svt-av1 >=3.0.2,<3.0.3.0a0 + - x264 >=1!164.3095,<1!165 + - x265 >=3.5,<3.6.0a0 + - xorg-libx11 >=1.8.12,<2.0a0 + constrains: + - __cuda >=12.8 + license: GPL-2.0-or-later + license_family: GPL + size: 10028157 + timestamp: 1748705029112 +- conda: https://prefix.dev/conda-forge/osx-arm64/ffmpeg-7.1.1-gpl_h20db955_106.conda + sha256: b44b3aa9cd8e4a271ae7e4aa0707681076c047499c54fba510df0ffa4fdf1ca7 + md5: 23d6ecf002d2c8c2c694b5a7f3b41917 + depends: + - __osx >=11.0 + - aom >=3.9.1,<3.10.0a0 + - bzip2 >=1.0.8,<2.0a0 + - dav1d >=1.2.1,<1.2.2.0a0 + - fontconfig >=2.15.0,<3.0a0 + - fonts-conda-ecosystem + - gmp >=6.3.0,<7.0a0 + - harfbuzz >=11.0.1 + - lame >=3.100,<3.101.0a0 + - libass >=0.17.3,<0.17.4.0a0 + - libcxx >=18 + - libexpat >=2.7.0,<3.0a0 + - libfreetype >=2.13.3 + - libfreetype6 >=2.13.3 + - libiconv >=1.18,<2.0a0 + - liblzma >=5.8.1,<6.0a0 + - libopenvino >=2025.0.0,<2025.0.1.0a0 + - libopenvino-arm-cpu-plugin >=2025.0.0,<2025.0.1.0a0 + - libopenvino-auto-batch-plugin >=2025.0.0,<2025.0.1.0a0 + - libopenvino-auto-plugin >=2025.0.0,<2025.0.1.0a0 + - libopenvino-hetero-plugin >=2025.0.0,<2025.0.1.0a0 + - libopenvino-ir-frontend >=2025.0.0,<2025.0.1.0a0 + - libopenvino-onnx-frontend >=2025.0.0,<2025.0.1.0a0 + - libopenvino-paddle-frontend >=2025.0.0,<2025.0.1.0a0 + - libopenvino-pytorch-frontend >=2025.0.0,<2025.0.1.0a0 + - libopenvino-tensorflow-frontend >=2025.0.0,<2025.0.1.0a0 + - libopenvino-tensorflow-lite-frontend >=2025.0.0,<2025.0.1.0a0 + - libopus >=1.5.2,<2.0a0 + - librsvg >=2.58.4,<3.0a0 + - libvorbis >=1.3.7,<1.4.0a0 + - libvpx >=1.14.1,<1.15.0a0 + - libxml2 >=2.13.8,<2.14.0a0 + - libzlib >=1.3.1,<2.0a0 + - openh264 >=2.6.0,<2.6.1.0a0 + - openssl >=3.5.0,<4.0a0 + - sdl2 >=2.32.54,<3.0a0 + - svt-av1 >=3.0.2,<3.0.3.0a0 + - x264 >=1!164.3095,<1!165 + - x265 >=3.5,<3.6.0a0 + license: GPL-2.0-or-later + license_family: GPL + size: 9160064 + timestamp: 1748705026281 +- conda: https://prefix.dev/conda-forge/win-64/ffmpeg-7.1.1-gpl_haf9914b_907.conda + sha256: 3b43e38afa2bb9d6532ddd793f3a261be90f00ac7a0698ac67e0321cd6920e8f + md5: 0e366403a5659c179cac45647240d96e + depends: + - aom >=3.9.1,<3.10.0a0 + - bzip2 >=1.0.8,<2.0a0 + - dav1d >=1.2.1,<1.2.2.0a0 + - fontconfig >=2.15.0,<3.0a0 + - fonts-conda-ecosystem + - harfbuzz >=11.0.1 + - lame >=3.100,<3.101.0a0 + - libexpat >=2.7.1,<3.0a0 + - libfreetype >=2.13.3 + - libfreetype6 >=2.13.3 + - libiconv >=1.18,<2.0a0 + - liblzma >=5.8.1,<6.0a0 + - libopus >=1.5.2,<2.0a0 + - librsvg >=2.58.4,<3.0a0 + - libvorbis >=1.3.7,<1.4.0a0 + - libxml2 >=2.13.8,<2.14.0a0 + - libzlib >=1.3.1,<2.0a0 + - openh264 >=2.6.0,<2.6.1.0a0 + - openssl >=3.5.1,<4.0a0 + - sdl2 >=2.32.54,<3.0a0 + - svt-av1 >=3.0.2,<3.0.3.0a0 + - ucrt >=10.0.20348.0 + - vc >=14.3,<15 + - vc14_runtime >=14.44.35208 + - x264 >=1!164.3095,<1!165 + - x265 >=3.5,<3.6.0a0 + constrains: + - __cuda >=12.8 + license: GPL-2.0-or-later + license_family: GPL + size: 10027980 + timestamp: 1753273997805 +- conda: https://prefix.dev/conda-forge/noarch/flake8-7.3.0-pyhd8ed1ab_0.conda + sha256: a32e511ea71a9667666935fd9f497f00bcc6ed0099ef04b9416ac24606854d58 + md5: 04a55140685296b25b79ad942264c0ef + depends: + - mccabe >=0.7.0,<0.8.0 + - pycodestyle >=2.14.0,<2.15.0 + - pyflakes >=3.4.0,<3.5.0 + - python >=3.9 + license: MIT + license_family: MIT + size: 111916 + timestamp: 1750968083921 +- conda: https://prefix.dev/conda-forge/linux-64/flann-1.9.2-hc299af7_5.conda + sha256: e988c8abade5ff1fb072010fc5db59e2607ad8c823248a8acad6fc4ded544a86 + md5: ea6779ccd6859d8ab651c2078b07bcaf + depends: + - __glibc >=2.17,<3.0.a0 + - _openmp_mutex >=4.5 + - hdf5 >=1.14.6,<1.14.7.0a0 + - libgcc >=13 + - libstdcxx >=13 + - lz4-c >=1.10.0,<1.11.0a0 + license: BSD-3-Clause + license_family: BSD + size: 1569631 + timestamp: 1747942598014 +- conda: https://prefix.dev/conda-forge/linux-aarch64/flann-1.9.2-h8b5e525_5.conda + sha256: 288ac83d3f1cc396e3d33561713a7e23397c3f58dddb637dab7af9ae73a0111e + md5: 3e8ec370f10373b7621b071b971aad65 + depends: + - _openmp_mutex >=4.5 + - hdf5 >=1.14.6,<1.14.7.0a0 + - libgcc >=13 + - libstdcxx >=13 + - lz4-c >=1.10.0,<1.11.0a0 + license: BSD-3-Clause + license_family: BSD + size: 1790072 + timestamp: 1747942473411 +- conda: https://prefix.dev/conda-forge/osx-arm64/flann-1.9.2-hb343761_5.conda + sha256: 8b6b2643fb5f09ed36a9ce7488a4db9e049b01ae4b45887ef34e2460d47df937 + md5: 5f986e0653b81f94d5e57326c490e468 + depends: + - __osx >=11.0 + - hdf5 >=1.14.6,<1.14.7.0a0 + - libcxx >=18 + - llvm-openmp >=18.1.8 + - lz4-c >=1.10.0,<1.11.0a0 + license: BSD-3-Clause + license_family: BSD + size: 1468161 + timestamp: 1747942874136 +- conda: https://prefix.dev/conda-forge/win-64/flann-1.9.2-hb1d4b56_5.conda + sha256: 42d8c71118271023dfc34d23e8757e4661502a345e12b2355b8860a6e40bba67 + md5: 3f51bb7ae675f3d519c2576fcc46e8e6 + depends: + - hdf5 >=1.14.6,<1.14.7.0a0 + - lz4-c >=1.10.0,<1.11.0a0 + - ucrt >=10.0.20348.0 + - vc >=14.2,<15 + - vc14_runtime >=14.29.30139 + license: BSD-3-Clause + license_family: BSD + size: 4322435 + timestamp: 1747943021100 +- conda: https://prefix.dev/conda-forge/linux-64/fmt-11.2.0-h07f6e7f_0.conda + sha256: e0f53b7801d0bcb5d61a1ddcb873479bfe8365e56fd3722a232fbcc372a9ac52 + md5: 0c2f855a88fab6afa92a7aa41217dc8e + depends: + - __glibc >=2.17,<3.0.a0 + - libgcc >=13 + - libstdcxx >=13 + license: MIT + license_family: MIT + size: 192721 + timestamp: 1751277120358 +- conda: https://prefix.dev/conda-forge/linux-aarch64/fmt-11.2.0-h97e1849_0.conda + sha256: c5b9a5caeb37216aa97aa1ef6f742a5ad17264838ca3b485db5a37e16c6f1373 + md5: 3fc63892ea4acd46f652f8cf489007f9 + depends: + - libgcc >=13 + - libstdcxx >=13 + license: MIT + license_family: MIT + size: 189924 + timestamp: 1751277118345 +- conda: https://prefix.dev/conda-forge/osx-arm64/fmt-11.2.0-h440487c_0.conda + sha256: 1449ec46468860f6fb77edba87797ce22d4f6bfe8d5587c46fd5374c4f7383ee + md5: 24109723ac700cce5ff96ea3e63a83a3 + depends: + - __osx >=11.0 + - libcxx >=18 + license: MIT + license_family: MIT + size: 177090 + timestamp: 1751277262419 +- conda: https://prefix.dev/conda-forge/win-64/fmt-11.2.0-h1d4551f_0.conda + sha256: 890f2789e55b509ff1f14592a5b20a0d0ec19f6da463eff96e378a5d70f882da + md5: 15b63c3fb5b7d67b1cb63553a33e6090 + depends: + - ucrt >=10.0.20348.0 + - vc >=14.3,<15 + - vc14_runtime >=14.44.35208 + license: MIT + license_family: MIT + size: 185995 + timestamp: 1751277236879 +- conda: https://prefix.dev/conda-forge/noarch/font-ttf-dejavu-sans-mono-2.37-hab24e00_0.tar.bz2 + sha256: 58d7f40d2940dd0a8aa28651239adbf5613254df0f75789919c4e6762054403b + md5: 0c96522c6bdaed4b1566d11387caaf45 + license: BSD-3-Clause + license_family: BSD + size: 397370 + timestamp: 1566932522327 +- conda: https://prefix.dev/conda-forge/noarch/font-ttf-inconsolata-3.000-h77eed37_0.tar.bz2 + sha256: c52a29fdac682c20d252facc50f01e7c2e7ceac52aa9817aaf0bb83f7559ec5c + md5: 34893075a5c9e55cdafac56607368fc6 + license: OFL-1.1 + license_family: Other + size: 96530 + timestamp: 1620479909603 +- conda: https://prefix.dev/conda-forge/noarch/font-ttf-source-code-pro-2.038-h77eed37_0.tar.bz2 + sha256: 00925c8c055a2275614b4d983e1df637245e19058d79fc7dd1a93b8d9fb4b139 + md5: 4d59c254e01d9cde7957100457e2d5fb + license: OFL-1.1 + license_family: Other + size: 700814 + timestamp: 1620479612257 +- conda: https://prefix.dev/conda-forge/noarch/font-ttf-ubuntu-0.83-h77eed37_3.conda + sha256: 2821ec1dc454bd8b9a31d0ed22a7ce22422c0aef163c59f49dfdf915d0f0ca14 + md5: 49023d73832ef61042f6a237cb2687e7 + license: LicenseRef-Ubuntu-Font-Licence-Version-1.0 + license_family: Other + size: 1620504 + timestamp: 1727511233259 +- conda: https://prefix.dev/conda-forge/linux-64/fontconfig-2.15.0-h7e30c49_1.conda + sha256: 7093aa19d6df5ccb6ca50329ef8510c6acb6b0d8001191909397368b65b02113 + md5: 8f5b0b297b59e1ac160ad4beec99dbee + depends: + - __glibc >=2.17,<3.0.a0 + - freetype >=2.12.1,<3.0a0 + - libexpat >=2.6.3,<3.0a0 + - libgcc >=13 + - libuuid >=2.38.1,<3.0a0 + - libzlib >=1.3.1,<2.0a0 + license: MIT + license_family: MIT + size: 265599 + timestamp: 1730283881107 +- conda: https://prefix.dev/conda-forge/linux-aarch64/fontconfig-2.15.0-h8dda3cd_1.conda + sha256: fe023bb8917c8a3138af86ef537b70c8c5d60c44f93946a87d1e8bb1a6634b55 + md5: 112b71b6af28b47c624bcbeefeea685b + depends: + - freetype >=2.12.1,<3.0a0 + - libexpat >=2.6.3,<3.0a0 + - libgcc >=13 + - libuuid >=2.38.1,<3.0a0 + - libzlib >=1.3.1,<2.0a0 + license: MIT + license_family: MIT + size: 277832 + timestamp: 1730284967179 +- conda: https://prefix.dev/conda-forge/osx-arm64/fontconfig-2.15.0-h1383a14_1.conda + sha256: f79d3d816fafbd6a2b0f75ebc3251a30d3294b08af9bb747194121f5efa364bc + md5: 7b29f48742cea5d1ccb5edd839cb5621 + depends: + - __osx >=11.0 + - freetype >=2.12.1,<3.0a0 + - libexpat >=2.6.3,<3.0a0 + - libzlib >=1.3.1,<2.0a0 + license: MIT + license_family: MIT + size: 234227 + timestamp: 1730284037572 +- conda: https://prefix.dev/conda-forge/win-64/fontconfig-2.15.0-h765892d_1.conda + sha256: ed122fc858fb95768ca9ca77e73c8d9ddc21d4b2e13aaab5281e27593e840691 + md5: 9bb0026a2131b09404c59c4290c697cd + depends: + - freetype >=2.12.1,<3.0a0 + - libexpat >=2.6.3,<3.0a0 + - libiconv >=1.17,<2.0a0 + - libzlib >=1.3.1,<2.0a0 + - ucrt >=10.0.20348.0 + - vc >=14.2,<15 + - vc14_runtime >=14.29.30139 + license: MIT + license_family: MIT + size: 192355 + timestamp: 1730284147944 +- conda: https://prefix.dev/conda-forge/noarch/fonts-conda-ecosystem-1-0.tar.bz2 + sha256: a997f2f1921bb9c9d76e6fa2f6b408b7fa549edd349a77639c9fe7a23ea93e61 + md5: fee5683a3f04bd15cbd8318b096a27ab + depends: + - fonts-conda-forge + license: BSD-3-Clause + license_family: BSD + size: 3667 + timestamp: 1566974674465 +- conda: https://prefix.dev/conda-forge/noarch/fonts-conda-forge-1-0.tar.bz2 + sha256: 53f23a3319466053818540bcdf2091f253cbdbab1e0e9ae7b9e509dcaa2a5e38 + md5: f766549260d6815b0c52253f1fb1bb29 + depends: + - font-ttf-dejavu-sans-mono + - font-ttf-inconsolata + - font-ttf-source-code-pro + - font-ttf-ubuntu + license: BSD-3-Clause + license_family: BSD + size: 4102 + timestamp: 1566932280397 +- conda: https://prefix.dev/conda-forge/linux-64/fonttools-4.59.1-py311h3778330_0.conda + sha256: a272826eb8bda4c7207db735448f67f1e5ce79a08eb5a78271c62d9ea452a275 + md5: a879d36924dd853bf855ed423b02d92b + depends: + - __glibc >=2.17,<3.0.a0 + - brotli + - libgcc >=14 + - munkres + - python >=3.11,<3.12.0a0 + - python_abi 3.11.* *_cp311 + - unicodedata2 >=15.1.0 + license: MIT + license_family: MIT + size: 2924737 + timestamp: 1755224158802 +- conda: https://prefix.dev/conda-forge/linux-aarch64/fonttools-4.59.1-py311h164a683_0.conda + sha256: 674dbf6f00e4938e11ac135297788e778e23b4a9775d2f9e51f0b30c13d70b3f + md5: 2d1caec100ac5954c32bdc8c5eec1396 + depends: + - brotli + - libgcc >=14 + - munkres + - python >=3.11,<3.12.0a0 + - python >=3.11,<3.12.0a0 *_cpython + - python_abi 3.11.* *_cp311 + - unicodedata2 >=15.1.0 + license: MIT + license_family: MIT + size: 2933057 + timestamp: 1755224240609 +- conda: https://prefix.dev/conda-forge/osx-arm64/fonttools-4.59.1-py311h2fe624c_0.conda + sha256: 33cc2adcd9ac384a9cad0b5a48dcb34bd87462c56bb8e43cb20cc82ac9ba8225 + md5: 63fca626eb5dab4df417ebb705d2925d + depends: + - __osx >=11.0 + - brotli + - munkres + - python >=3.11,<3.12.0a0 + - python >=3.11,<3.12.0a0 *_cpython + - python_abi 3.11.* *_cp311 + - unicodedata2 >=15.1.0 + license: MIT + license_family: MIT + size: 2843657 + timestamp: 1755224315692 +- conda: https://prefix.dev/conda-forge/win-64/fonttools-4.59.1-py311h3f79411_0.conda + sha256: fe80ef99e7c4d7fcc1be28615a7d1e91396c3410cad245969633d1d1155f62ef + md5: 3d3e2e033fff6713ab0764b096075216 + depends: + - brotli + - munkres + - python >=3.11,<3.12.0a0 + - python_abi 3.11.* *_cp311 + - ucrt >=10.0.20348.0 + - unicodedata2 >=15.1.0 + - vc >=14.3,<15 + - vc14_runtime >=14.44.35208 + license: MIT + license_family: MIT + size: 2506999 + timestamp: 1755224269065 +- conda: https://prefix.dev/conda-forge/linux-64/foonathan-memory-0.7.3-h5888daf_1.conda + sha256: 28d9fce64ee8b5e94350feb0829e054811678f9638039f78ddff8a8615c1b693 + md5: 2a3316f47d7827afde5381ecd43b5e85 + depends: + - __glibc >=2.17,<3.0.a0 + - libgcc >=13 + - libstdcxx >=13 + license: Zlib + size: 227132 + timestamp: 1746246721660 +- conda: https://prefix.dev/conda-forge/linux-aarch64/foonathan-memory-0.7.3-h5ad3122_1.conda + sha256: eb4ba5713109333869069346f8a68ee5472d33fbfef19765608ac56e56ad11be + md5: f56a1c764fb72416280f786c80122dbd + depends: + - libgcc >=13 + - libstdcxx >=13 + license: Zlib + size: 225684 + timestamp: 1746248561179 +- conda: https://prefix.dev/conda-forge/osx-arm64/foonathan-memory-0.7.3-h286801f_1.conda + sha256: 5ca6622f451ffcbad4c248e5aa897364ee144f727317de53205f79598ae31e30 + md5: 5edb851ff08d42a33875ad9aa54a6b40 + depends: + - __osx >=11.0 + - libcxx >=18 + license: Zlib + size: 196029 + timestamp: 1746246781766 +- conda: https://prefix.dev/conda-forge/win-64/foonathan-memory-0.7.3-he0c23c2_1.conda + sha256: 38ebb703238d97b79b5d3c609e0ac2ded8f2afe25dbf968e443c3441de11148a + md5: f5fbab94ec67dde1fbb7c7cc04d6d134 + depends: + - ucrt >=10.0.20348.0 + - vc >=14.2,<15 + - vc14_runtime >=14.29.30139 + license: Zlib + size: 250652 + timestamp: 1746247124703 +- conda: https://prefix.dev/conda-forge/linux-64/freeglut-3.2.2-ha6d2627_3.conda + sha256: 676540a8e7f73a894cb1fcb870e7bec623ec1c0a2d277094fd713261a02d8d56 + md5: 84ec3f5b46f3076be49f2cf3f1cfbf02 + depends: + - libgcc-ng >=12 + - libstdcxx-ng >=12 + - libxcb >=1.16,<2.0.0a0 + - xorg-libx11 >=1.8.9,<2.0a0 + - xorg-libxau >=1.0.11,<2.0a0 + - xorg-libxext >=1.3.4,<2.0a0 + - xorg-libxfixes + - xorg-libxi + license: MIT + license_family: MIT + size: 144010 + timestamp: 1719014356708 +- conda: https://prefix.dev/conda-forge/linux-aarch64/freeglut-3.2.2-h5eeb66e_3.conda + sha256: 22a2104d5d6573e8445b7f264533bcd7595cff36d2b356cb1925af5ea62b6a47 + md5: c6c65566e07fec709e1ea4bc95fc56e4 + depends: + - libgcc-ng >=12 + - libstdcxx-ng >=12 + - libxcb >=1.16,<2.0.0a0 + - xorg-libx11 >=1.8.9,<2.0a0 + - xorg-libxau >=1.0.11,<2.0a0 + - xorg-libxext >=1.3.4,<2.0a0 + - xorg-libxfixes + - xorg-libxi + license: MIT + license_family: MIT + size: 144992 + timestamp: 1719014317113 +- conda: https://prefix.dev/conda-forge/win-64/freeglut-3.2.2-he0c23c2_3.conda + sha256: 8b41913ed6c8c0dadda463a649bc16f45e88faa58553efc6830f4de1138c97f2 + md5: 5872031ef7cba8435ff24af056777473 + depends: + - ucrt >=10.0.20348.0 + - vc >=14.2,<15 + - vc14_runtime >=14.29.30139 + license: MIT + license_family: MIT + size: 111956 + timestamp: 1719014753462 +- conda: https://prefix.dev/conda-forge/linux-64/freeimage-3.18.0-h3a85593_22.conda + sha256: 03ccff5d255eab7a1736de9eeb539fbb1333036fa5e37ea7c8ec428270067c99 + md5: bbdf3d43d752b793ac81f27b28c49e2d + depends: + - __glibc >=2.17,<3.0.a0 + - imath >=3.1.12,<3.1.13.0a0 + - jxrlib >=1.1,<1.2.0a0 + - libgcc >=13 + - libjpeg-turbo >=3.0.0,<4.0a0 + - libpng >=1.6.44,<1.7.0a0 + - libraw >=0.21.3,<0.22.0a0 + - libstdcxx >=13 + - libtiff >=4.7.0,<4.8.0a0 + - libwebp-base >=1.4.0,<2.0a0 + - libzlib >=1.3.1,<2.0a0 + - openexr >=3.3.1,<3.4.0a0 + - openjpeg >=2.5.2,<3.0a0 + license: GPL-2.0-or-later OR GPL-3.0-or-later OR FreeImage + size: 467860 + timestamp: 1729024045245 +- conda: https://prefix.dev/conda-forge/linux-aarch64/freeimage-3.18.0-h6cb32c8_22.conda + sha256: 0a0ed82992c87aa67604569d35b6180863ca21081e94739194e6adde3f92f84d + md5: f6891bd5c49b824889b065446edefe37 + depends: + - imath >=3.1.12,<3.1.13.0a0 + - jxrlib >=1.1,<1.2.0a0 + - libgcc >=13 + - libjpeg-turbo >=3.0.0,<4.0a0 + - libpng >=1.6.44,<1.7.0a0 + - libraw >=0.21.3,<0.22.0a0 + - libstdcxx >=13 + - libtiff >=4.7.0,<4.8.0a0 + - libwebp-base >=1.4.0,<2.0a0 + - libzlib >=1.3.1,<2.0a0 + - openexr >=3.3.1,<3.4.0a0 + - openjpeg >=2.5.2,<3.0a0 + license: GPL-2.0-or-later OR GPL-3.0-or-later OR FreeImage + size: 453451 + timestamp: 1729024016441 +- conda: https://prefix.dev/conda-forge/osx-arm64/freeimage-3.18.0-h2e169f6_22.conda + sha256: 74dec75a67f9e95058f188eccfb8d82f59e9bbd1444a733cb08f4a0c3e8f7489 + md5: 98187c5ae2ea4cd05afc2a8bf0fd3b1d + depends: + - __osx >=11.0 + - imath >=3.1.12,<3.1.13.0a0 + - jxrlib >=1.1,<1.2.0a0 + - libcxx >=17 + - libjpeg-turbo >=3.0.0,<4.0a0 + - libpng >=1.6.44,<1.7.0a0 + - libraw >=0.21.3,<0.22.0a0 + - libtiff >=4.7.0,<4.8.0a0 + - libwebp-base >=1.4.0,<2.0a0 + - libzlib >=1.3.1,<2.0a0 + - openexr >=3.3.1,<3.4.0a0 + - openjpeg >=2.5.2,<3.0a0 + license: GPL-2.0-or-later OR GPL-3.0-or-later OR FreeImage + size: 366466 + timestamp: 1729024195241 +- conda: https://prefix.dev/conda-forge/win-64/freeimage-3.18.0-h8310ca0_22.conda + sha256: 89ff5bd00c94d201b76f90b939cbd9ec013171c45d9967f7dac71d330cd10343 + md5: 5c8c15da921f6a9388d37c4fc81dad4a + depends: + - imath >=3.1.12,<3.1.13.0a0 + - jxrlib >=1.1,<1.2.0a0 + - libjpeg-turbo >=3.0.0,<4.0a0 + - libpng >=1.6.44,<1.7.0a0 + - libraw >=0.21.3,<0.22.0a0 + - libtiff >=4.7.0,<4.8.0a0 + - libwebp-base >=1.4.0,<2.0a0 + - libzlib >=1.3.1,<2.0a0 + - openexr >=3.3.1,<3.4.0a0 + - openjpeg >=2.5.2,<3.0a0 + - ucrt >=10.0.20348.0 + - vc >=14.2,<15 + - vc14_runtime >=14.29.30139 + license: GPL-2.0-or-later OR GPL-3.0-or-later OR FreeImage + size: 465887 + timestamp: 1729024520954 +- conda: https://prefix.dev/conda-forge/linux-64/freetype-2.13.3-ha770c72_1.conda + sha256: 7ef7d477c43c12a5b4cddcf048a83277414512d1116aba62ebadfa7056a7d84f + md5: 9ccd736d31e0c6e41f54e704e5312811 + depends: + - libfreetype 2.13.3 ha770c72_1 + - libfreetype6 2.13.3 h48d6fc4_1 + license: GPL-2.0-only OR FTL + size: 172450 + timestamp: 1745369996765 +- conda: https://prefix.dev/conda-forge/linux-aarch64/freetype-2.13.3-h8af1aa0_1.conda + sha256: 3b3ff45ac1fc880fbc8268477d29901a8fead32fb2241f98e4f2a1acffe6eea2 + md5: 71c4cbe1b384a8e7b56993394a435343 + depends: + - libfreetype 2.13.3 h8af1aa0_1 + - libfreetype6 2.13.3 he93130f_1 + license: GPL-2.0-only OR FTL + size: 172259 + timestamp: 1745370055170 +- conda: https://prefix.dev/conda-forge/osx-arm64/freetype-2.13.3-hce30654_1.conda + sha256: 6b63c72ea51a41d41964841404564c0729fdddd3e952e2715839fd759b7cfdfc + md5: e684de4644067f1956a580097502bf03 + depends: + - libfreetype 2.13.3 hce30654_1 + - libfreetype6 2.13.3 h1d14073_1 + license: GPL-2.0-only OR FTL + size: 172220 + timestamp: 1745370149658 +- conda: https://prefix.dev/conda-forge/win-64/freetype-2.13.3-h57928b3_1.conda + sha256: 0bcc9c868d769247c12324f957c97c4dbee7e4095485db90d9c295bcb3b1bb43 + md5: 633504fe3f96031192e40e3e6c18ef06 + depends: + - libfreetype 2.13.3 h57928b3_1 + - libfreetype6 2.13.3 h0b5ce68_1 + license: GPL-2.0-only OR FTL + size: 184162 + timestamp: 1745370242683 +- conda: https://prefix.dev/conda-forge/linux-64/fribidi-1.0.10-h36c2ea0_0.tar.bz2 + sha256: 5d7b6c0ee7743ba41399e9e05a58ccc1cfc903942e49ff6f677f6e423ea7a627 + md5: ac7bc6a654f8f41b352b38f4051135f8 + depends: + - libgcc-ng >=7.5.0 + license: LGPL-2.1 + size: 114383 + timestamp: 1604416621168 +- conda: https://prefix.dev/conda-forge/linux-aarch64/fribidi-1.0.10-hb9de7d4_0.tar.bz2 + sha256: bcb5a40f1aaf4ea8cda2fc6b2b12aa336403772121350281ce31fd2d9d3e214e + md5: f6c91a43eace6fb926a8730b3b9a8a50 + depends: + - libgcc-ng >=7.5.0 + license: LGPL-2.1 + size: 115689 + timestamp: 1604417149643 +- conda: https://prefix.dev/conda-forge/osx-arm64/fribidi-1.0.10-h27ca646_0.tar.bz2 + sha256: 4b37ea851a2cf85edf0a63d2a63266847ec3dcbba4a31156d430cdd6aa811303 + md5: c64443234ff91d70cb9c7dc926c58834 + license: LGPL-2.1 + size: 60255 + timestamp: 1604417405528 +- conda: https://prefix.dev/conda-forge/win-64/fribidi-1.0.10-h8d14728_0.tar.bz2 + sha256: e0323e6d7b6047042970812ee810c6b1e1a11a3af4025db26d0965ae5d206104 + md5: 807e81d915f2bb2e49951648615241f6 + depends: + - vc >=14.1,<15.0a0 + - vs2015_runtime >=14.16.27012 + license: LGPL-2.1 + size: 64567 + timestamp: 1604417122064 +- conda: https://prefix.dev/conda-forge/linux-64/frozenlist-1.7.0-py311h52bc045_0.conda + sha256: cc7ec26db5d61078057da6e24e23abdd973414a065311fe0547a7620dd98e6b8 + md5: d9be554be03e3f2012655012314167d6 + depends: + - __glibc >=2.17,<3.0.a0 + - libgcc >=14 + - libstdcxx >=14 + - python >=3.11,<3.12.0a0 + - python_abi 3.11.* *_cp311 + license: Apache-2.0 + license_family: APACHE + size: 55258 + timestamp: 1752167340913 +- conda: https://prefix.dev/conda-forge/linux-aarch64/frozenlist-1.7.0-py311h91c1192_0.conda + sha256: 1e022a44bf00c99eda4ab2c997950f8ac72ffc1e177efb9013be0e1c6876de1d + md5: 283efb3474356970eaf5d479c02afaf1 + depends: + - libgcc >=14 + - libstdcxx >=14 + - python >=3.11,<3.12.0a0 + - python >=3.11,<3.12.0a0 *_cpython + - python_abi 3.11.* *_cp311 + license: Apache-2.0 + license_family: APACHE + size: 55559 + timestamp: 1752167410138 +- conda: https://prefix.dev/conda-forge/osx-arm64/frozenlist-1.7.0-py311h8740443_0.conda + sha256: b0b21e436d52d15cd29996ddbaa9eff04151b57330e35f436aab6ba303601ae8 + md5: e15cfa88d7671c12a25a574b63f63d9d + depends: + - __osx >=11.0 + - libcxx >=19 + - python >=3.11,<3.12.0a0 + - python >=3.11,<3.12.0a0 *_cpython + - python_abi 3.11.* *_cp311 + license: Apache-2.0 + license_family: APACHE + size: 51115 + timestamp: 1752167450180 +- conda: https://prefix.dev/conda-forge/win-64/frozenlist-1.7.0-py311hdf60d3a_0.conda + sha256: 1d26194d4c6b3c54caf06cebb37ba9f82f2e4a24f6152d9fa9af61b0b0e42509 + md5: ddb0b81f564d1a876c4c1964649d1127 + depends: + - python >=3.11,<3.12.0a0 + - python_abi 3.11.* *_cp311 + - ucrt >=10.0.20348.0 + - vc >=14.3,<15 + - vc14_runtime >=14.44.35208 + license: Apache-2.0 + license_family: APACHE + size: 49827 + timestamp: 1752167413069 +- conda: https://prefix.dev/conda-forge/linux-64/gdk-pixbuf-2.42.12-h2b0a6b4_3.conda + sha256: d8a9d0df91e1939b1fb952b5214e097d681c49faf215d1ad69a7f0acb03c8e08 + md5: aeec474bd508d8aa6c015e2cc7d14651 + depends: + - __glibc >=2.17,<3.0.a0 + - libgcc >=14 + - libglib >=2.84.3,<3.0a0 + - libjpeg-turbo >=3.1.0,<4.0a0 + - liblzma >=5.8.1,<6.0a0 + - libpng >=1.6.50,<1.7.0a0 + - libtiff >=4.7.0,<4.8.0a0 + license: LGPL-2.1-or-later + license_family: LGPL + size: 579311 + timestamp: 1754960116630 +- conda: https://prefix.dev/conda-forge/linux-aarch64/gdk-pixbuf-2.42.12-h90308e0_3.conda + sha256: 284920c90a6cdd55d1d8f952832124f236a3965c092c8775741cd642550c270b + md5: 30356086cb14e87e34615800ec5284ad + depends: + - libgcc >=14 + - libglib >=2.84.3,<3.0a0 + - libjpeg-turbo >=3.1.0,<4.0a0 + - liblzma >=5.8.1,<6.0a0 + - libpng >=1.6.50,<1.7.0a0 + - libtiff >=4.7.0,<4.8.0a0 + license: LGPL-2.1-or-later + license_family: LGPL + size: 587555 + timestamp: 1754961524004 +- conda: https://prefix.dev/conda-forge/osx-arm64/gdk-pixbuf-2.42.12-h7af3d76_3.conda + sha256: b9a928be779da5ce90e4dbc1f70829ac6bb45c3b244d6913c71439ce6a0d631b + md5: da68375a855e361d5833f84a7d012ef1 + depends: + - __osx >=11.0 + - libglib >=2.84.3,<3.0a0 + - libintl >=0.25.1,<1.0a0 + - libjpeg-turbo >=3.1.0,<4.0a0 + - liblzma >=5.8.1,<6.0a0 + - libpng >=1.6.50,<1.7.0a0 + - libtiff >=4.7.0,<4.8.0a0 + license: LGPL-2.1-or-later + license_family: LGPL + size: 549845 + timestamp: 1754960472079 +- conda: https://prefix.dev/conda-forge/win-64/gdk-pixbuf-2.42.12-h1f5b9c4_3.conda + sha256: 1276e8d2164701ddf4ff708ac6131e95d9030e11fe0ca2df3657e9a54319ade4 + md5: df24f48f53cd1fdeb9fe8bf6e323c715 + depends: + - libglib >=2.84.3,<3.0a0 + - libintl >=0.22.5,<1.0a0 + - libjpeg-turbo >=3.1.0,<4.0a0 + - liblzma >=5.8.1,<6.0a0 + - libpng >=1.6.50,<1.7.0a0 + - libtiff >=4.7.0,<4.8.0a0 + - ucrt >=10.0.20348.0 + - vc >=14.3,<15 + - vc14_runtime >=14.44.35208 + license: LGPL-2.1-or-later + license_family: LGPL + size: 579008 + timestamp: 1754960318590 +- conda: https://prefix.dev/conda-forge/win-64/getopt-win32-0.1-h6a83c73_3.conda + sha256: d04c4a6c11daa72c4a0242602e1d00c03291ef66ca2d7cd0e171088411d57710 + md5: 49c36fcad2e9af6b91e91f2ce5be8ebd + depends: + - vc >=14.3,<15 + - vc14_runtime >=14.44.35208 + - ucrt >=10.0.20348.0 + - vc >=14.3,<15 + - vc14_runtime >=14.44.35208 + - ucrt >=10.0.20348.0 + license: LGPL-3.0-only + license_family: LGPL + size: 26238 + timestamp: 1750744808182 +- conda: https://prefix.dev/conda-forge/linux-64/gettext-0.25.1-h3f43e3d_1.conda + sha256: cbfa8c80771d1842c2687f6016c5e200b52d4ca8f2cc119f6377f64f899ba4ff + md5: c42356557d7f2e37676e121515417e3b + depends: + - __glibc >=2.17,<3.0.a0 + - gettext-tools 0.25.1 h3f43e3d_1 + - libasprintf 0.25.1 h3f43e3d_1 + - libasprintf-devel 0.25.1 h3f43e3d_1 + - libgcc >=14 + - libgettextpo 0.25.1 h3f43e3d_1 + - libgettextpo-devel 0.25.1 h3f43e3d_1 + - libiconv >=1.18,<2.0a0 + - libstdcxx >=14 + license: LGPL-2.1-or-later AND GPL-3.0-or-later + size: 541357 + timestamp: 1753343006214 +- conda: https://prefix.dev/conda-forge/linux-aarch64/gettext-0.25.1-h5ad3122_0.conda + sha256: 510e7eba15e6ba71cd5a2ae403128d56b3bb990878c8110f3abc652f823b4af8 + md5: 1e99d353785a5302bce1a5a86d249b2b + depends: + - gettext-tools 0.25.1 h5ad3122_0 + - libasprintf 0.25.1 h5e0f5ae_0 + - libasprintf-devel 0.25.1 h5e0f5ae_0 + - libgcc >=13 + - libgettextpo 0.25.1 h5ad3122_0 + - libgettextpo-devel 0.25.1 h5ad3122_0 + - libstdcxx >=13 + license: LGPL-2.1-or-later AND GPL-3.0-or-later + size: 534760 + timestamp: 1751557634743 +- conda: https://prefix.dev/conda-forge/osx-arm64/gettext-0.25.1-h3dcc1bd_0.conda + sha256: 129a81e9da9f60ae6955b49938447e7faeb7e1be815b2db99e76956dddf8c392 + md5: 7059ba83fd98707b2cd9a5f06f589dd4 + depends: + - __osx >=11.0 + - gettext-tools 0.25.1 h493aca8_0 + - libasprintf 0.25.1 h493aca8_0 + - libasprintf-devel 0.25.1 h493aca8_0 + - libcxx >=18 + - libgettextpo 0.25.1 h493aca8_0 + - libgettextpo-devel 0.25.1 h493aca8_0 + - libiconv >=1.18,<2.0a0 + - libintl 0.25.1 h493aca8_0 + - libintl-devel 0.25.1 h493aca8_0 + license: LGPL-2.1-or-later AND GPL-3.0-or-later + size: 543276 + timestamp: 1751558682952 +- conda: https://prefix.dev/conda-forge/linux-64/gettext-tools-0.25.1-h3f43e3d_1.conda + sha256: c792729288bdd94f21f25f80802d4c66957b4e00a57f7cb20513f07aadfaff06 + md5: a59c05d22bdcbb4e984bf0c021a2a02f + depends: + - __glibc >=2.17,<3.0.a0 + - libgcc >=14 + - libiconv >=1.18,<2.0a0 + license: GPL-3.0-or-later + license_family: GPL + size: 3644103 + timestamp: 1753342966311 +- conda: https://prefix.dev/conda-forge/linux-aarch64/gettext-tools-0.25.1-h5ad3122_0.conda + sha256: 7b03cc531c9c2d567eb81dffe9f5688c83fbcdfa4882eec3a2045ec43218806f + md5: 4215d91c0eaae5274a36a3f211898c91 + depends: + - libgcc >=13 + license: GPL-3.0-or-later + license_family: GPL + size: 3999301 + timestamp: 1751557600737 +- conda: https://prefix.dev/conda-forge/osx-arm64/gettext-tools-0.25.1-h493aca8_0.conda + sha256: e8dd68706676d5b6f6ee09240936a0ecd1ae12b87dbb37e4c4be263e332ab125 + md5: 817042c017930497931da6aa04a47f09 + depends: + - __osx >=11.0 + - libiconv >=1.18,<2.0a0 + - libintl 0.25.1 h493aca8_0 + license: GPL-3.0-or-later + license_family: GPL + size: 3748044 + timestamp: 1751558602508 +- conda: https://prefix.dev/conda-forge/linux-64/gl2ps-1.4.2-hae5d5c5_1.conda + sha256: 68f071ea25e79ee427c0d6c35ccc137d66f093a37660a4e41bafe0c49d64f2d6 + md5: 00e642ec191a19bf806a3915800e9524 + depends: + - libgcc-ng >=12 + - libpng >=1.6.43,<1.7.0a0 + - libzlib >=1.3.1,<2.0a0 + license: LGPL-2.0-or-later + license_family: LGPL + size: 74102 + timestamp: 1718542981099 +- conda: https://prefix.dev/conda-forge/linux-aarch64/gl2ps-1.4.2-hedfd65a_1.conda + sha256: e6500b15fd2dbd776df204556702bb2c90d037523c18cd0a111c7c0f0d314aa2 + md5: 6a087dc84254035cbde984f2c010c9ef + depends: + - libgcc-ng >=12 + - libpng >=1.6.43,<1.7.0a0 + - libzlib >=1.3.1,<2.0a0 + license: LGPL-2.0-or-later + license_family: LGPL + size: 72023 + timestamp: 1718542978037 +- conda: https://prefix.dev/conda-forge/win-64/gl2ps-1.4.2-had7236b_1.conda + sha256: 5a18f0aa963adb4402dbce93516f40756beaa206e82c56592aafb1eb88060ba5 + md5: 033491c5cb1ce4e915238307f0136fa0 + depends: + - libpng >=1.6.43,<1.7.0a0 + - libzlib >=1.3.1,<2.0a0 + - ucrt >=10.0.20348.0 + - vc >=14.2,<15 + - vc14_runtime >=14.29.30139 + license: LGPL-2.0-or-later + license_family: LGPL + size: 71943 + timestamp: 1718543473790 +- conda: https://prefix.dev/conda-forge/linux-64/glew-2.1.0-h9c3ff4c_2.tar.bz2 + sha256: 86f5484e38f4604f7694b14f64238e932e8fd8d7364e86557f4911eded2843ae + md5: fb05eb5c47590b247658243d27fc32f1 + depends: + - libgcc-ng >=9.3.0 + - libglu + - libstdcxx-ng >=9.3.0 + - xorg-libx11 + - xorg-libxext + license: BSD-3-Clause + license_family: BSD + size: 662569 + timestamp: 1607113198887 +- conda: https://prefix.dev/conda-forge/linux-aarch64/glew-2.1.0-h01db608_2.tar.bz2 + sha256: f872cc93507b833ec5f2f08e479cc0074e5d73defe4f91d54f667a324d0b4f61 + md5: 2a46529de1ff766f31333d3cdff2b734 + depends: + - libgcc-ng >=9.3.0 + - libglu + - libstdcxx-ng >=9.3.0 + - xorg-libx11 + - xorg-libxext + license: BSD-3-Clause + license_family: BSD + size: 649830 + timestamp: 1607113149975 +- conda: https://prefix.dev/conda-forge/osx-arm64/glew-2.1.0-h9f76cd9_2.tar.bz2 + sha256: 582991e48b1000eea38a1df68309652a92c1af62fa96f78e6659c799d28d00cf + md5: ec67d4b810ad567618722a2772e9755c + depends: + - libcxx >=11.0.0 + license: BSD-3-Clause + license_family: BSD + size: 783742 + timestamp: 1607113139225 +- conda: https://prefix.dev/conda-forge/win-64/glew-2.1.0-h39d44d4_2.tar.bz2 + sha256: 6a780b5ca7253129ea5e63671f0aeafc8f119167e170a60ccbd8573669ef848d + md5: 840d21c1ee66b91af3d0211e7766393a + depends: + - vc >=14.1,<15.0a0 + - vs2015_runtime >=14.16.27012 + license: BSD-3-Clause + license_family: BSD + size: 963275 + timestamp: 1607113700054 +- conda: https://prefix.dev/conda-forge/linux-64/glib-2.84.3-h89d24bf_0.conda + sha256: a2fce828a72dbdde983908eafee6fc54f0189cb3e04cf172d83a1e9f4d11b113 + md5: 9d1844ab51651cc3d034bb55fff83b99 + depends: + - glib-tools 2.84.3 hf516916_0 + - libffi >=3.4.6,<3.5.0a0 + - libglib 2.84.3 hf39c6af_0 + - packaging + - python * + license: LGPL-2.1-or-later + size: 610194 + timestamp: 1754315094547 +- conda: https://prefix.dev/conda-forge/linux-aarch64/glib-2.84.3-h701fa2e_0.conda + sha256: aa23b2033dd6a8c96eed79f2f45e9fdccac34139c3f9cac11beeb9f282629a03 + md5: 97327ee197bb0bd9f6924603ae58f622 + depends: + - glib-tools 2.84.3 hc87f4d4_0 + - libffi >=3.4.6,<3.5.0a0 + - libglib 2.84.3 h75d4a95_0 + - packaging + - python * + license: LGPL-2.1-or-later + size: 623374 + timestamp: 1754315082467 +- conda: https://prefix.dev/conda-forge/osx-arm64/glib-2.84.3-hef37679_0.conda + sha256: 2711a8500fb1add18c2f543a2d64ff9559c060a7e379dcd5b59b340d4cf0c552 + md5: 61eb547640737ce84c854f54bddeaaf5 + depends: + - glib-tools 2.84.3 h857b2e6_0 + - libffi >=3.4.6,<3.5.0a0 + - libglib 2.84.3 h587fa63_0 + - libintl >=0.25.1,<1.0a0 + - libintl-devel + - packaging + - python * + license: LGPL-2.1-or-later + size: 591052 + timestamp: 1754315778288 +- conda: https://prefix.dev/conda-forge/win-64/glib-2.84.3-h36503ca_0.conda + sha256: c86d4ca8c3084d9cd33d18a9b13f484722d6a5eb306e5b77aa1087603c9c62b0 + md5: 5f92085cb2bc2cc516df14d76e6b6c0f + depends: + - glib-tools 2.84.3 he647baa_0 + - libffi >=3.4.6,<3.5.0a0 + - libglib 2.84.3 h1c1036b_0 + - libintl >=0.22.5,<1.0a0 + - libintl-devel + - packaging + - python * + - ucrt >=10.0.20348.0 + - vc >=14.3,<15 + - vc14_runtime >=14.44.35208 + license: LGPL-2.1-or-later + size: 574659 + timestamp: 1754315482929 +- conda: https://prefix.dev/conda-forge/linux-64/glib-tools-2.84.3-hf516916_0.conda + sha256: bf744e0eaacff469196f6a18b3799fde15b8afbffdac4f5ff0fdd82c3321d0f6 + md5: 39f817fb8e0bb88a63bbdca0448143ea + depends: + - __glibc >=2.17,<3.0.a0 + - libgcc >=14 + - libglib 2.84.3 hf39c6af_0 + license: LGPL-2.1-or-later + size: 116716 + timestamp: 1754315054614 +- conda: https://prefix.dev/conda-forge/linux-aarch64/glib-tools-2.84.3-hc87f4d4_0.conda + sha256: 73f5b222c14c129ff2f9a0bc3a3e46b465538f7df5c75e887eaae565be87c45a + md5: 30b9606d542f16646bb627b127871848 + depends: + - libgcc >=14 + - libglib 2.84.3 h75d4a95_0 + license: LGPL-2.1-or-later + size: 127160 + timestamp: 1754315056153 +- conda: https://prefix.dev/conda-forge/osx-arm64/glib-tools-2.84.3-h857b2e6_0.conda + sha256: c0cebe4a3e41e20bfadd9d7b9b93fe314c55f80d5bb2d45373e04a7878c856c3 + md5: c018d74ec3d1c6d27e1e4714117b653a + depends: + - __osx >=11.0 + - libglib 2.84.3 h587fa63_0 + - libintl >=0.25.1,<1.0a0 + license: LGPL-2.1-or-later + size: 101984 + timestamp: 1754315707816 +- conda: https://prefix.dev/conda-forge/win-64/glib-tools-2.84.3-he647baa_0.conda + sha256: 3cda9c0aadfff70be2f7b48b1a13aae2bbcc6bcda4ef7784d3d94364575746c7 + md5: 0c4c0fe0c2da1a192268ef7beab8b3e9 + depends: + - libglib 2.84.3 h1c1036b_0 + - libintl >=0.22.5,<1.0a0 + - ucrt >=10.0.20348.0 + - vc >=14.3,<15 + - vc14_runtime >=14.44.35208 + license: LGPL-2.1-or-later + size: 98161 + timestamp: 1754315429043 +- conda: https://prefix.dev/conda-forge/linux-64/gmock-1.17.0-ha770c72_1.conda + sha256: 80ca13dc518962fcd86856586cb5fb612fe69914234eab322f9dee25f628090f + md5: 33e7a8280999b958df24a95f0cb86b1a + depends: + - gtest 1.17.0 h84d6215_1 + license: BSD-3-Clause + license_family: BSD + size: 7578 + timestamp: 1748320126956 +- conda: https://prefix.dev/conda-forge/linux-aarch64/gmock-1.17.0-h8af1aa0_1.conda + sha256: 514dc47c5e0808b3478be5a23be9437b88856b5ce76cf864c81a51e212fe2d33 + md5: a5c91c7d57692b282c9fccef97394057 + depends: + - gtest 1.17.0 h17cf362_1 + license: BSD-3-Clause + license_family: BSD + size: 7659 + timestamp: 1748320119582 +- conda: https://prefix.dev/conda-forge/osx-arm64/gmock-1.17.0-hce30654_1.conda + sha256: 8ffcdb59c4087268163eac6ba76eaaec8f953c569eb0b2de96d2094391104db7 + md5: 032a8260ea052e9ed5b3cffbb6ec0831 + depends: + - gtest 1.17.0 ha393de7_1 + license: BSD-3-Clause + license_family: BSD + size: 7681 + timestamp: 1748320227048 +- conda: https://prefix.dev/conda-forge/win-64/gmock-1.17.0-h57928b3_1.conda + sha256: 833b2320a8f9e2742114342070634e002ca2b094d8cadcfe03a6e8339938df26 + md5: 6c8e74d3fd2b75971e931b3b8e37b4cb + depends: + - gtest 1.17.0 hc790b64_1 + license: BSD-3-Clause + license_family: BSD + size: 8054 + timestamp: 1748320557126 +- conda: https://prefix.dev/conda-forge/linux-64/gmp-6.3.0-hac33072_2.conda + sha256: 309cf4f04fec0c31b6771a5809a1909b4b3154a2208f52351e1ada006f4c750c + md5: c94a5994ef49749880a8139cf9afcbe1 + depends: + - libgcc-ng >=12 + - libstdcxx-ng >=12 + license: GPL-2.0-or-later OR LGPL-3.0-or-later + size: 460055 + timestamp: 1718980856608 +- conda: https://prefix.dev/conda-forge/linux-aarch64/gmp-6.3.0-h0a1ffab_2.conda + sha256: a5e341cbf797c65d2477b27d99091393edbaa5178c7d69b7463bb105b0488e69 + md5: 7cbfb3a8bb1b78a7f5518654ac6725ad + depends: + - libgcc-ng >=12 + - libstdcxx-ng >=12 + license: GPL-2.0-or-later OR LGPL-3.0-or-later + size: 417323 + timestamp: 1718980707330 +- conda: https://prefix.dev/conda-forge/osx-arm64/gmp-6.3.0-h7bae524_2.conda + sha256: 76e222e072d61c840f64a44e0580c2503562b009090f55aa45053bf1ccb385dd + md5: eed7278dfbab727b56f2c0b64330814b + depends: + - __osx >=11.0 + - libcxx >=16 + license: GPL-2.0-or-later OR LGPL-3.0-or-later + size: 365188 + timestamp: 1718981343258 +- conda: https://prefix.dev/conda-forge/linux-64/graphite2-1.3.14-hecca717_2.conda + sha256: 25ba37da5c39697a77fce2c9a15e48cf0a84f1464ad2aafbe53d8357a9f6cc8c + md5: 2cd94587f3a401ae05e03a6caf09539d + depends: + - __glibc >=2.17,<3.0.a0 + - libgcc >=14 + - libstdcxx >=14 + license: LGPL-2.0-or-later + license_family: LGPL + size: 99596 + timestamp: 1755102025473 +- conda: https://prefix.dev/conda-forge/linux-aarch64/graphite2-1.3.14-hfae3067_2.conda + sha256: c9b1781fe329e0b77c5addd741e58600f50bef39321cae75eba72f2f381374b7 + md5: 4aa540e9541cc9d6581ab23ff2043f13 + depends: + - libgcc >=14 + - libstdcxx >=14 + license: LGPL-2.0-or-later + license_family: LGPL + size: 102400 + timestamp: 1755102000043 +- conda: https://prefix.dev/conda-forge/osx-arm64/graphite2-1.3.14-hec049ff_2.conda + sha256: c507ae9989dbea7024aa6feaebb16cbf271faac67ac3f0342ef1ab747c20475d + md5: 0fc46fee39e88bbcf5835f71a9d9a209 + depends: + - __osx >=11.0 + - libcxx >=19 + license: LGPL-2.0-or-later + license_family: LGPL + size: 81202 + timestamp: 1755102333712 +- conda: https://prefix.dev/conda-forge/win-64/graphite2-1.3.14-hac47afa_2.conda + sha256: 5f1714b07252f885a62521b625898326ade6ca25fbc20727cfe9a88f68a54bfd + md5: b785694dd3ec77a011ccf0c24725382b + depends: + - ucrt >=10.0.20348.0 + - vc >=14.3,<15 + - vc14_runtime >=14.44.35208 + license: LGPL-2.0-or-later + license_family: LGPL + size: 96336 + timestamp: 1755102441729 +- conda: https://prefix.dev/conda-forge/linux-64/graphviz-12.2.1-h5ae0cbf_1.conda + sha256: e6866409ba03df392ac5ec6f0d6ff9751a685ed917bfbcd8a73f550c5fe83c2b + md5: df7835d2c73cd1889d377cfd6694ada4 + depends: + - __glibc >=2.17,<3.0.a0 + - adwaita-icon-theme + - cairo >=1.18.2,<2.0a0 + - fonts-conda-ecosystem + - gdk-pixbuf >=2.42.12,<3.0a0 + - gtk3 >=3.24.43,<4.0a0 + - gts >=0.7.6,<0.8.0a0 + - libexpat >=2.6.4,<3.0a0 + - libgcc >=13 + - libgd >=2.3.3,<2.4.0a0 + - libglib >=2.82.2,<3.0a0 + - librsvg >=2.58.4,<3.0a0 + - libstdcxx >=13 + - libwebp-base >=1.5.0,<2.0a0 + - libzlib >=1.3.1,<2.0a0 + - pango >=1.56.1,<2.0a0 + license: EPL-1.0 + license_family: Other + size: 2413095 + timestamp: 1738602910851 +- conda: https://prefix.dev/conda-forge/linux-aarch64/graphviz-12.2.1-h044d27a_1.conda + sha256: 233f5cda023ac275644e3e3b3663adeca99d7d71cf2379b483d00c3c37163d33 + md5: c9c0b953e77213e1fd0cdb4a2590ba02 + depends: + - adwaita-icon-theme + - cairo >=1.18.2,<2.0a0 + - fonts-conda-ecosystem + - gdk-pixbuf >=2.42.12,<3.0a0 + - gtk3 >=3.24.43,<4.0a0 + - gts >=0.7.6,<0.8.0a0 + - libexpat >=2.6.4,<3.0a0 + - libgcc >=13 + - libgd >=2.3.3,<2.4.0a0 + - libglib >=2.82.2,<3.0a0 + - librsvg >=2.58.4,<3.0a0 + - libstdcxx >=13 + - libwebp-base >=1.5.0,<2.0a0 + - libzlib >=1.3.1,<2.0a0 + - pango >=1.56.1,<2.0a0 + license: EPL-1.0 + license_family: Other + size: 2530145 + timestamp: 1738603119015 +- conda: https://prefix.dev/conda-forge/osx-arm64/graphviz-12.2.1-hff64154_1.conda + sha256: 54e3ce5668b17ea41fed515e57fbd9e805969df468eaf7ff65389d7f53b46d54 + md5: b0b656550a16dfba7efa1479756c5b63 + depends: + - __osx >=11.0 + - adwaita-icon-theme + - cairo >=1.18.2,<2.0a0 + - fonts-conda-ecosystem + - gdk-pixbuf >=2.42.12,<3.0a0 + - gtk3 >=3.24.43,<4.0a0 + - gts >=0.7.6,<0.8.0a0 + - libcxx >=18 + - libexpat >=2.6.4,<3.0a0 + - libgd >=2.3.3,<2.4.0a0 + - libglib >=2.82.2,<3.0a0 + - librsvg >=2.58.4,<3.0a0 + - libwebp-base >=1.5.0,<2.0a0 + - libzlib >=1.3.1,<2.0a0 + - pango >=1.56.1,<2.0a0 + license: EPL-1.0 + license_family: Other + size: 2189259 + timestamp: 1738603343083 +- conda: https://prefix.dev/conda-forge/win-64/graphviz-12.2.1-hf40819d_1.conda + sha256: f68aa78450917dd0e3c18340b249bdaed05425e0ab5d64e1ebbe16c1416b807c + md5: 981641a62e6786479ac4d425dc853989 + depends: + - cairo >=1.18.2,<2.0a0 + - getopt-win32 >=0.1,<0.2.0a0 + - gts >=0.7.6,<0.8.0a0 + - libexpat >=2.6.4,<3.0a0 + - libgd >=2.3.3,<2.4.0a0 + - libglib >=2.82.2,<3.0a0 + - libwebp-base >=1.5.0,<2.0a0 + - libzlib >=1.3.1,<2.0a0 + - pango >=1.56.1,<2.0a0 + - ucrt >=10.0.20348.0 + - vc >=14.2,<15 + - vc14_runtime >=14.29.30139 + license: EPL-1.0 + license_family: Other + size: 1172679 + timestamp: 1738603383430 +- conda: https://prefix.dev/conda-forge/linux-64/gst-plugins-base-1.24.11-h651a532_0.conda + sha256: a497d2ba34fdfa4bead423cba5261b7e619df3ac491fb0b6231d91da45bd05fc + md5: d8d8894f8ced2c9be76dc9ad1ae531ce + depends: + - __glibc >=2.17,<3.0.a0 + - alsa-lib >=1.2.14,<1.3.0a0 + - gstreamer 1.24.11 hc37bda9_0 + - libdrm >=2.4.124,<2.5.0a0 + - libegl >=1.7.0,<2.0a0 + - libexpat >=2.7.0,<3.0a0 + - libgcc >=13 + - libgl >=1.7.0,<2.0a0 + - libglib >=2.84.1,<3.0a0 + - libogg >=1.3.5,<1.4.0a0 + - libopus >=1.5.2,<2.0a0 + - libpng >=1.6.47,<1.7.0a0 + - libstdcxx >=13 + - libvorbis >=1.3.7,<1.4.0a0 + - libxcb >=1.17.0,<2.0a0 + - libzlib >=1.3.1,<2.0a0 + - xorg-libx11 >=1.8.12,<2.0a0 + - xorg-libxau >=1.0.12,<2.0a0 + - xorg-libxdamage >=1.1.6,<2.0a0 + - xorg-libxext >=1.3.6,<2.0a0 + - xorg-libxfixes >=6.0.1,<7.0a0 + - xorg-libxrender >=0.9.12,<0.10.0a0 + - xorg-libxshmfence >=1.3.3,<2.0a0 + - xorg-libxxf86vm >=1.1.6,<2.0a0 + license: LGPL-2.0-or-later + license_family: LGPL + size: 2859572 + timestamp: 1745093626455 +- conda: https://prefix.dev/conda-forge/linux-aarch64/gst-plugins-base-1.24.11-h83ffb7f_0.conda + sha256: a13e1059f23497243100b5786e5a7ffac2182885dd56bd7813f518faff959b26 + md5: 2328f6ad67fc8d33402091e3d770ca73 + depends: + - alsa-lib >=1.2.14,<1.3.0a0 + - gstreamer 1.24.11 h17c303d_0 + - libdrm >=2.4.124,<2.5.0a0 + - libegl >=1.7.0,<2.0a0 + - libexpat >=2.7.0,<3.0a0 + - libgcc >=13 + - libgl >=1.7.0,<2.0a0 + - libglib >=2.84.1,<3.0a0 + - libogg >=1.3.5,<1.4.0a0 + - libopus >=1.5.2,<2.0a0 + - libpng >=1.6.47,<1.7.0a0 + - libstdcxx >=13 + - libvorbis >=1.3.7,<1.4.0a0 + - libxcb >=1.17.0,<2.0a0 + - libzlib >=1.3.1,<2.0a0 + - xorg-libx11 >=1.8.12,<2.0a0 + - xorg-libxau >=1.0.12,<2.0a0 + - xorg-libxdamage >=1.1.6,<2.0a0 + - xorg-libxext >=1.3.6,<2.0a0 + - xorg-libxfixes >=6.0.1,<7.0a0 + - xorg-libxrender >=0.9.12,<0.10.0a0 + - xorg-libxshmfence >=1.3.3,<2.0a0 + - xorg-libxxf86vm >=1.1.6,<2.0a0 + license: LGPL-2.0-or-later + license_family: LGPL + size: 2806661 + timestamp: 1745097877029 +- conda: https://prefix.dev/conda-forge/osx-arm64/gst-plugins-base-1.24.11-h3c5c1d0_0.conda + sha256: dcf14207de4d203189d2b470a011bde9d1d213f5024113ecd417ceaa71997f49 + md5: b3b603ab8143ee78e2b327397e91c928 + depends: + - __osx >=11.0 + - gstreamer 1.24.11 hfe24232_0 + - libcxx >=18 + - libglib >=2.84.0,<3.0a0 + - libintl >=0.23.1,<1.0a0 + - libogg >=1.3.5,<1.4.0a0 + - libopus >=1.5.2,<2.0a0 + - libpng >=1.6.47,<1.7.0a0 + - libvorbis >=1.3.7,<1.4.0a0 + - libzlib >=1.3.1,<2.0a0 + license: LGPL-2.0-or-later + license_family: LGPL + size: 1998255 + timestamp: 1745094132475 +- conda: https://prefix.dev/conda-forge/win-64/gst-plugins-base-1.24.11-h3fe0a9e_0.conda + sha256: 74112d7bb1dc0a652326cff5223927f344df40f1610dbad77af58126c02ee989 + md5: da29d9c5bce532d29b35867f037f0722 + depends: + - gstreamer 1.24.11 h233a61a_0 + - libglib >=2.84.1,<3.0a0 + - libintl >=0.22.5,<1.0a0 + - libogg >=1.3.5,<1.4.0a0 + - libvorbis >=1.3.7,<1.4.0a0 + - libzlib >=1.3.1,<2.0a0 + - ucrt >=10.0.20348.0 + - vc >=14.2,<15 + - vc14_runtime >=14.29.30139 + license: LGPL-2.0-or-later + license_family: LGPL + size: 4222881 + timestamp: 1745093856231 +- conda: https://prefix.dev/conda-forge/linux-64/gstreamer-1.24.11-hc37bda9_0.conda + sha256: 6e93b99d77ac7f7b3eb29c1911a0a463072a40748b96dbe37c18b2c0a90b34de + md5: 056d86cacf2b48c79c6a562a2486eb8c + depends: + - __glibc >=2.17,<3.0.a0 + - glib >=2.84.1,<3.0a0 + - libgcc >=13 + - libglib >=2.84.1,<3.0a0 + - libiconv >=1.18,<2.0a0 + - libstdcxx >=13 + - libzlib >=1.3.1,<2.0a0 + license: LGPL-2.0-or-later + license_family: LGPL + size: 2021832 + timestamp: 1745093493354 +- conda: https://prefix.dev/conda-forge/linux-aarch64/gstreamer-1.24.11-h17c303d_0.conda + sha256: 49a399a7c6e2f3d4ad6338fed8d5f3548baa6edeeaec716cca3505f84f3473fb + md5: 8cc29506178d015d91d8b28725f0bd0c + depends: + - glib >=2.84.1,<3.0a0 + - libgcc >=13 + - libglib >=2.84.1,<3.0a0 + - libiconv >=1.18,<2.0a0 + - libstdcxx >=13 + - libzlib >=1.3.1,<2.0a0 + license: LGPL-2.0-or-later + license_family: LGPL + size: 2032739 + timestamp: 1745095972722 +- conda: https://prefix.dev/conda-forge/osx-arm64/gstreamer-1.24.11-hfe24232_0.conda + sha256: 1a67175216abf57fd3b3b4b10308551bb2bde1227b0a3a79b4c526c9c911db4c + md5: 75376f1f20ba28dfa1f737e5bb19cbad + depends: + - __osx >=11.0 + - glib >=2.84.0,<3.0a0 + - libcxx >=18 + - libglib >=2.84.0,<3.0a0 + - libiconv >=1.18,<2.0a0 + - libintl >=0.23.1,<1.0a0 + - libzlib >=1.3.1,<2.0a0 + license: LGPL-2.0-or-later + license_family: LGPL + size: 1357920 + timestamp: 1745093829693 +- conda: https://prefix.dev/conda-forge/win-64/gstreamer-1.24.11-h233a61a_0.conda + sha256: 727b10b5bdebf52cf9899211d1f74cb09d6bec3afb7e2b313b14ac9465e64d39 + md5: 879e92327aea553145c760e5939f1493 + depends: + - glib >=2.84.1,<3.0a0 + - libglib >=2.84.1,<3.0a0 + - libiconv >=1.18,<2.0a0 + - libintl >=0.22.5,<1.0a0 + - libzlib >=1.3.1,<2.0a0 + - ucrt >=10.0.20348.0 + - vc >=14.2,<15 + - vc14_runtime >=14.29.30139 + license: LGPL-2.0-or-later + license_family: LGPL + size: 3099976 + timestamp: 1745093701747 +- conda: https://prefix.dev/conda-forge/linux-64/gtest-1.17.0-h84d6215_1.conda + sha256: 1f738280f245863c5ac78bcc04bb57266357acda45661c4aa25823030c6fb5db + md5: 55e29b72a71339bc651f9975492db71f + depends: + - __glibc >=2.17,<3.0.a0 + - libgcc >=13 + - libstdcxx >=13 + constrains: + - gmock 1.17.0 + license: BSD-3-Clause + license_family: BSD + size: 416610 + timestamp: 1748320117187 +- conda: https://prefix.dev/conda-forge/linux-aarch64/gtest-1.17.0-h17cf362_1.conda + sha256: 9f48b9cd4393fb033882cd456fb3310d42fc853885c6c263db66c06769903061 + md5: a058f4fa55dea20cdc8a7664c8537b6a + depends: + - libgcc >=13 + - libstdcxx >=13 + constrains: + - gmock 1.17.0 + license: BSD-3-Clause + license_family: BSD + size: 409213 + timestamp: 1748320114722 +- conda: https://prefix.dev/conda-forge/osx-arm64/gtest-1.17.0-ha393de7_1.conda + sha256: 441fb779db5f14eff8997ddde88c90c30ab64ea8bd4c219b76724e4d3d736c76 + md5: f277a9eb8063fe7c4e33d91b8296fb0c + depends: + - __osx >=11.0 + - libcxx >=18 + constrains: + - gmock 1.17.0 + license: BSD-3-Clause + license_family: BSD + size: 378391 + timestamp: 1748320218212 +- conda: https://prefix.dev/conda-forge/win-64/gtest-1.17.0-hc790b64_1.conda + sha256: 6738f3af9fe0cff9b8bd54eab34544e0334f2932c4314e1cb1b322ba7a5f26b7 + md5: 0314c047c9d7ffc19cfd13457d82e254 + depends: + - ucrt >=10.0.20348.0 + - vc >=14.2,<15 + - vc14_runtime >=14.29.30139 + constrains: + - gmock 1.17.0 + license: BSD-3-Clause + license_family: BSD + size: 497237 + timestamp: 1748320535941 +- conda: https://prefix.dev/conda-forge/linux-64/gtk3-3.24.43-h0c6a113_5.conda + sha256: d36263cbcbce34ec463ce92bd72efa198b55d987959eab6210cc256a0e79573b + md5: 67d00e9cfe751cfe581726c5eff7c184 + depends: + - __glibc >=2.17,<3.0.a0 + - at-spi2-atk >=2.38.0,<3.0a0 + - atk-1.0 >=2.38.0 + - cairo >=1.18.4,<2.0a0 + - epoxy >=1.5.10,<1.6.0a0 + - fontconfig >=2.15.0,<3.0a0 + - fonts-conda-ecosystem + - fribidi >=1.0.10,<2.0a0 + - gdk-pixbuf >=2.42.12,<3.0a0 + - glib-tools + - harfbuzz >=11.0.0,<12.0a0 + - hicolor-icon-theme + - libcups >=2.3.3,<2.4.0a0 + - libcups >=2.3.3,<3.0a0 + - libexpat >=2.6.4,<3.0a0 + - libgcc >=13 + - libglib >=2.84.0,<3.0a0 + - liblzma >=5.6.4,<6.0a0 + - libxkbcommon >=1.8.1,<2.0a0 + - libzlib >=1.3.1,<2.0a0 + - pango >=1.56.3,<2.0a0 + - wayland >=1.23.1,<2.0a0 + - xorg-libx11 >=1.8.12,<2.0a0 + - xorg-libxcomposite >=0.4.6,<1.0a0 + - xorg-libxcursor >=1.2.3,<2.0a0 + - xorg-libxdamage >=1.1.6,<2.0a0 + - xorg-libxext >=1.3.6,<2.0a0 + - xorg-libxfixes >=6.0.1,<7.0a0 + - xorg-libxi >=1.8.2,<2.0a0 + - xorg-libxinerama >=1.1.5,<1.2.0a0 + - xorg-libxrandr >=1.5.4,<2.0a0 + - xorg-libxrender >=0.9.12,<0.10.0a0 + license: LGPL-2.0-or-later + license_family: LGPL + size: 5585389 + timestamp: 1743405684985 +- conda: https://prefix.dev/conda-forge/linux-aarch64/gtk3-3.24.43-hc7d089d_5.conda + sha256: e33f6c88c63ea6e53e15fc7b599a18141ef86a211b3770df59024f60e178192b + md5: 5c2197efa63776720377d23517a862ce + depends: + - at-spi2-atk >=2.38.0,<3.0a0 + - atk-1.0 >=2.38.0 + - cairo >=1.18.4,<2.0a0 + - epoxy >=1.5.10,<1.6.0a0 + - fontconfig >=2.15.0,<3.0a0 + - fonts-conda-ecosystem + - fribidi >=1.0.10,<2.0a0 + - gdk-pixbuf >=2.42.12,<3.0a0 + - glib-tools + - harfbuzz >=11.0.0,<12.0a0 + - hicolor-icon-theme + - libcups >=2.3.3,<2.4.0a0 + - libcups >=2.3.3,<3.0a0 + - libexpat >=2.6.4,<3.0a0 + - libgcc >=13 + - libglib >=2.84.0,<3.0a0 + - liblzma >=5.6.4,<6.0a0 + - libxkbcommon >=1.8.1,<2.0a0 + - libzlib >=1.3.1,<2.0a0 + - pango >=1.56.3,<2.0a0 + - wayland >=1.23.1,<2.0a0 + - xorg-libx11 >=1.8.12,<2.0a0 + - xorg-libxcomposite >=0.4.6,<1.0a0 + - xorg-libxcursor >=1.2.3,<2.0a0 + - xorg-libxdamage >=1.1.6,<2.0a0 + - xorg-libxext >=1.3.6,<2.0a0 + - xorg-libxfixes >=6.0.1,<7.0a0 + - xorg-libxi >=1.8.2,<2.0a0 + - xorg-libxinerama >=1.1.5,<1.2.0a0 + - xorg-libxrandr >=1.5.4,<2.0a0 + - xorg-libxrender >=0.9.12,<0.10.0a0 + license: LGPL-2.0-or-later + license_family: LGPL + size: 5656952 + timestamp: 1743411517388 +- conda: https://prefix.dev/conda-forge/osx-arm64/gtk3-3.24.43-h07173f4_5.conda + sha256: 9650ac1a02975ae0a3917443dc3c35ddc4d8e87a1cb04fda115af5f98e5d457c + md5: 8353369d4c2ecc5afd888405d3226fd9 + depends: + - __osx >=11.0 + - atk-1.0 >=2.38.0 + - cairo >=1.18.4,<2.0a0 + - epoxy >=1.5.10,<1.6.0a0 + - fribidi >=1.0.10,<2.0a0 + - gdk-pixbuf >=2.42.12,<3.0a0 + - glib-tools + - harfbuzz >=11.0.0,<12.0a0 + - hicolor-icon-theme + - libexpat >=2.6.4,<3.0a0 + - libglib >=2.84.0,<3.0a0 + - libintl >=0.23.1,<1.0a0 + - liblzma >=5.6.4,<6.0a0 + - libzlib >=1.3.1,<2.0a0 + - pango >=1.56.3,<2.0a0 + license: LGPL-2.0-or-later + license_family: LGPL + size: 4792338 + timestamp: 1743406461562 +- conda: https://prefix.dev/conda-forge/linux-64/gts-0.7.6-h977cf35_4.conda + sha256: b5cd16262fefb836f69dc26d879b6508d29f8a5c5948a966c47fe99e2e19c99b + md5: 4d8df0b0db060d33c9a702ada998a8fe + depends: + - libgcc-ng >=12 + - libglib >=2.76.3,<3.0a0 + - libstdcxx-ng >=12 + license: LGPL-2.0-or-later + license_family: LGPL + size: 318312 + timestamp: 1686545244763 +- conda: https://prefix.dev/conda-forge/linux-aarch64/gts-0.7.6-he293c15_4.conda + sha256: 1e9cc30d1c746d5a3399a279f5f642a953f37d9f9c82fd4d55b301e9c2a23f7c + md5: 2aeaeddbd89e84b60165463225814cfc + depends: + - libgcc-ng >=12 + - libglib >=2.76.3,<3.0a0 + - libstdcxx-ng >=12 + license: LGPL-2.0-or-later + license_family: LGPL + size: 332673 + timestamp: 1686545222091 +- conda: https://prefix.dev/conda-forge/osx-arm64/gts-0.7.6-he42f4ea_4.conda + sha256: e0f8c7bc1b9ea62ded78ffa848e37771eeaaaf55b3146580513c7266862043ba + md5: 21b4dd3098f63a74cf2aa9159cbef57d + depends: + - libcxx >=15.0.7 + - libglib >=2.76.3,<3.0a0 + license: LGPL-2.0-or-later + license_family: LGPL + size: 304331 + timestamp: 1686545503242 +- conda: https://prefix.dev/conda-forge/win-64/gts-0.7.6-h6b5321d_4.conda + sha256: b79755d2f9fc2113b6949bfc170c067902bc776e2c20da26e746e780f4f5a2d4 + md5: a41f14768d5e377426ad60c613f2923b + depends: + - libglib >=2.76.3,<3.0a0 + - ucrt >=10.0.20348.0 + - vc >=14.2,<15 + - vc14_runtime >=14.29.30139 + license: LGPL-2.0-or-later + license_family: LGPL + size: 188688 + timestamp: 1686545648050 +- conda: https://prefix.dev/conda-forge/linux-64/harfbuzz-11.4.2-h15599e2_0.conda + sha256: 8c0b7e578c3b0f08d224c849a4e607bba630da7a9383cb05af5d4101d9bfe108 + md5: 63eb5b7e4230dfa0ee37b8fe26bc4dbd + depends: + - __glibc >=2.17,<3.0.a0 + - cairo >=1.18.4,<2.0a0 + - graphite2 >=1.3.14,<2.0a0 + - icu >=75.1,<76.0a0 + - libexpat >=2.7.1,<3.0a0 + - libfreetype >=2.13.3 + - libfreetype6 >=2.13.3 + - libgcc >=14 + - libglib >=2.84.3,<3.0a0 + - libstdcxx >=14 + - libzlib >=1.3.1,<2.0a0 + license: MIT + license_family: MIT + size: 2037741 + timestamp: 1755783293127 +- conda: https://prefix.dev/conda-forge/linux-aarch64/harfbuzz-11.4.2-he4899c9_0.conda + sha256: 5f6dabb5acfa4658df823f4c2cf022dc365caa798f53535607d3d2ed21fc4c34 + md5: fe8b2e27d8c3b9f635b899b1d486acad + depends: + - cairo >=1.18.4,<2.0a0 + - graphite2 >=1.3.14,<2.0a0 + - icu >=75.1,<76.0a0 + - libexpat >=2.7.1,<3.0a0 + - libfreetype >=2.13.3 + - libfreetype6 >=2.13.3 + - libgcc >=14 + - libglib >=2.84.3,<3.0a0 + - libstdcxx >=14 + - libzlib >=1.3.1,<2.0a0 + license: MIT + license_family: MIT + size: 2092372 + timestamp: 1755787231871 +- conda: https://prefix.dev/conda-forge/osx-arm64/harfbuzz-11.4.2-hf4e55d4_0.conda + sha256: d1ff9f15a3d175f0b8e240b6231191e2e5e464ab4d382a9c6c6d1069da5e2c70 + md5: f930186401d7fa62354a450931356284 + depends: + - __osx >=11.0 + - cairo >=1.18.4,<2.0a0 + - graphite2 >=1.3.14,<2.0a0 + - icu >=75.1,<76.0a0 + - libcxx >=19 + - libexpat >=2.7.1,<3.0a0 + - libfreetype >=2.13.3 + - libfreetype6 >=2.13.3 + - libglib >=2.84.3,<3.0a0 + - libzlib >=1.3.1,<2.0a0 + license: MIT + license_family: MIT + size: 1748147 + timestamp: 1755783863970 +- conda: https://prefix.dev/conda-forge/win-64/harfbuzz-11.4.2-h5f2951f_0.conda + sha256: 282873d428c4db83c1affafc58af1f4302c7fc48376adb19ce9e5fb58c67b2d2 + md5: 7a412ac4d8e8642f8c87093334909a02 + depends: + - cairo >=1.18.4,<2.0a0 + - graphite2 >=1.3.14,<2.0a0 + - icu >=75.1,<76.0a0 + - libexpat >=2.7.1,<3.0a0 + - libfreetype >=2.13.3 + - libfreetype6 >=2.13.3 + - libglib >=2.84.3,<3.0a0 + - libzlib >=1.3.1,<2.0a0 + - ucrt >=10.0.20348.0 + - vc >=14.2,<15 + - vc14_runtime >=14.29.30139 + license: MIT + license_family: MIT + size: 1133056 + timestamp: 1755783749642 +- conda: https://prefix.dev/conda-forge/linux-64/hdf4-4.2.15-h2a13503_7.conda + sha256: 0d09b6dc1ce5c4005ae1c6a19dc10767932ef9a5e9c755cfdbb5189ac8fb0684 + md5: bd77f8da987968ec3927990495dc22e4 + depends: + - libgcc-ng >=12 + - libjpeg-turbo >=3.0.0,<4.0a0 + - libstdcxx-ng >=12 + - libzlib >=1.2.13,<2.0.0a0 + license: BSD-3-Clause + license_family: BSD + size: 756742 + timestamp: 1695661547874 +- conda: https://prefix.dev/conda-forge/linux-aarch64/hdf4-4.2.15-hb6ba311_7.conda + sha256: 70d1e2d3e0b9ae1b149a31a4270adfbb5a4ceb2f8c36d17feffcd7bcb6208022 + md5: e1b6676b77b9690d07ea25de48aed97e + depends: + - libgcc-ng >=12 + - libjpeg-turbo >=3.0.0,<4.0a0 + - libstdcxx-ng >=12 + - libzlib >=1.2.13,<2.0.0a0 + license: BSD-3-Clause + license_family: BSD + size: 773862 + timestamp: 1695661552544 +- conda: https://prefix.dev/conda-forge/osx-arm64/hdf4-4.2.15-h2ee6834_7.conda + sha256: c3b01e3c3fe4ca1c4d28c287eaa5168a4f2fd3ffd76690082ac919244c22fa90 + md5: ff5d749fd711dc7759e127db38005924 + depends: + - libcxx >=15.0.7 + - libjpeg-turbo >=3.0.0,<4.0a0 + - libzlib >=1.2.13,<2.0.0a0 + license: BSD-3-Clause + license_family: BSD + size: 762257 + timestamp: 1695661864625 +- conda: https://prefix.dev/conda-forge/win-64/hdf4-4.2.15-h5557f11_7.conda + sha256: 52fa5dde69758c19c69ab68a3d7ebfb2c9042e3a55d405c29a59d3b0584fd790 + md5: 84344a916a73727c1326841007b52ca8 + depends: + - libjpeg-turbo >=3.0.0,<4.0a0 + - libzlib >=1.2.13,<2.0.0a0 + - ucrt >=10.0.20348.0 + - vc >=14.2,<15 + - vc14_runtime >=14.29.30139 + license: BSD-3-Clause + license_family: BSD + size: 779637 + timestamp: 1695662145568 +- conda: https://prefix.dev/conda-forge/linux-64/hdf5-1.14.6-nompi_h6e4c0c1_103.conda + sha256: 4f173af9e2299de7eee1af3d79e851bca28ee71e7426b377e841648b51d48614 + md5: c74d83614aec66227ae5199d98852aaf + depends: + - __glibc >=2.17,<3.0.a0 + - libaec >=1.1.4,<2.0a0 + - libcurl >=8.14.1,<9.0a0 + - libgcc >=14 + - libgfortran + - libgfortran5 >=14.3.0 + - libstdcxx >=14 + - libzlib >=1.3.1,<2.0a0 + - openssl >=3.5.1,<4.0a0 + license: BSD-3-Clause + license_family: BSD + size: 3710057 + timestamp: 1753357500665 +- conda: https://prefix.dev/conda-forge/linux-aarch64/hdf5-1.14.6-nompi_h587839b_103.conda + sha256: 504720da04682560dbc02cf22e01ed6c4b5504c65becd79418f3887460cd45c7 + md5: eab19e17ea4dce5068ec649f3717969d + depends: + - libaec >=1.1.4,<2.0a0 + - libcurl >=8.14.1,<9.0a0 + - libgcc >=14 + - libgfortran + - libgfortran5 >=14.3.0 + - libstdcxx >=14 + - libzlib >=1.3.1,<2.0a0 + - openssl >=3.5.1,<4.0a0 + license: BSD-3-Clause + license_family: BSD + size: 3915364 + timestamp: 1753363295810 +- conda: https://prefix.dev/conda-forge/osx-arm64/hdf5-1.14.6-nompi_he65715a_103.conda + sha256: 8948a63fc4a56536ce7b2716b781616c3909507300d26e9f265a3c13d59708a0 + md5: fcc9aca330f13d071bfc4de3d0942d78 + depends: + - __osx >=11.0 + - libaec >=1.1.4,<2.0a0 + - libcurl >=8.14.1,<9.0a0 + - libcxx >=19 + - libgfortran + - libgfortran5 >=14.3.0 + - libgfortran5 >=15.1.0 + - libzlib >=1.3.1,<2.0a0 + - openssl >=3.5.1,<4.0a0 + license: BSD-3-Clause + license_family: BSD + size: 3308443 + timestamp: 1753356976982 +- conda: https://prefix.dev/conda-forge/win-64/hdf5-1.14.6-nompi_he30205f_103.conda + sha256: 0a90263b97e9860cec6c2540160ff1a1fff2a609b3d96452f8716ae63489dac5 + md5: f1f7aaf642cefd2190582550eaca4658 + depends: + - libaec >=1.1.4,<2.0a0 + - libcurl >=8.14.1,<9.0a0 + - libzlib >=1.3.1,<2.0a0 + - openssl >=3.5.1,<4.0a0 + - ucrt >=10.0.20348.0 + - vc >=14.3,<15 + - vc14_runtime >=14.44.35208 + license: BSD-3-Clause + license_family: BSD + size: 2031491 + timestamp: 1753357255237 +- conda: https://prefix.dev/conda-forge/linux-64/hicolor-icon-theme-0.17-ha770c72_2.tar.bz2 + sha256: 336f29ceea9594f15cc8ec4c45fdc29e10796573c697ee0d57ebb7edd7e92043 + md5: bbf6f174dcd3254e19a2f5d2295ce808 + license: GPL-2.0-or-later + license_family: GPL + size: 13841 + timestamp: 1605162808667 +- conda: https://prefix.dev/conda-forge/linux-aarch64/hicolor-icon-theme-0.17-h8af1aa0_2.tar.bz2 + sha256: 479a0f95cf3e7d7db795fb7a14337cab73c2c926a5599c8512a3e8f8466f9e54 + md5: 331add9f855e921695d7b569aa23d5ec + license: GPL-2.0-or-later + license_family: GPL + size: 13896 + timestamp: 1605162856037 +- conda: https://prefix.dev/conda-forge/osx-arm64/hicolor-icon-theme-0.17-hce30654_2.tar.bz2 + sha256: 286e33fb452f61133a3a61d002890235d1d1378554218ab063d6870416440281 + md5: 237b05b7eb284d7eebc3c5d93f5e4bca + license: GPL-2.0-or-later + license_family: GPL + size: 13800 + timestamp: 1611053664863 +- conda: https://prefix.dev/conda-forge/linux-64/icu-75.1-he02047a_0.conda + sha256: 71e750d509f5fa3421087ba88ef9a7b9be11c53174af3aa4d06aff4c18b38e8e + md5: 8b189310083baabfb622af68fd9d3ae3 + depends: + - __glibc >=2.17,<3.0.a0 + - libgcc-ng >=12 + - libstdcxx-ng >=12 + license: MIT + license_family: MIT + size: 12129203 + timestamp: 1720853576813 +- conda: https://prefix.dev/conda-forge/linux-aarch64/icu-75.1-hf9b3779_0.conda + sha256: 813298f2e54ef087dbfc9cc2e56e08ded41de65cff34c639cc8ba4e27e4540c9 + md5: 268203e8b983fddb6412b36f2024e75c + depends: + - libgcc-ng >=12 + - libstdcxx-ng >=12 + license: MIT + license_family: MIT + size: 12282786 + timestamp: 1720853454991 +- conda: https://prefix.dev/conda-forge/osx-arm64/icu-75.1-hfee45f7_0.conda + sha256: 9ba12c93406f3df5ab0a43db8a4b4ef67a5871dfd401010fbe29b218b2cbe620 + md5: 5eb22c1d7b3fc4abb50d92d621583137 + depends: + - __osx >=11.0 + license: MIT + license_family: MIT + size: 11857802 + timestamp: 1720853997952 +- conda: https://prefix.dev/conda-forge/win-64/icu-75.1-he0c23c2_0.conda + sha256: 1d04369a1860a1e9e371b9fc82dd0092b616adcf057d6c88371856669280e920 + md5: 8579b6bb8d18be7c0b27fb08adeeeb40 + depends: + - ucrt >=10.0.20348.0 + - vc >=14.2,<15 + - vc14_runtime >=14.29.30139 + license: MIT + license_family: MIT + size: 14544252 + timestamp: 1720853966338 +- conda: https://prefix.dev/conda-forge/noarch/idna-3.10-pyhd8ed1ab_1.conda + sha256: d7a472c9fd479e2e8dcb83fb8d433fce971ea369d704ece380e876f9c3494e87 + md5: 39a4f67be3286c86d696df570b1201b7 + depends: + - python >=3.9 + license: BSD-3-Clause + license_family: BSD + size: 49765 + timestamp: 1733211921194 +- conda: https://prefix.dev/conda-forge/linux-64/imath-3.1.12-h7955e40_0.conda + sha256: 4d8d07a4d5079d198168b44556fb86d094e6a716e8979b25a9f6c9c610e9fe56 + md5: 37f5e1ab0db3691929f37dee78335d1b + depends: + - __glibc >=2.17,<3.0.a0 + - libgcc >=13 + - libstdcxx >=13 + - libzlib >=1.3.1,<2.0a0 + license: BSD-3-Clause + license_family: BSD + size: 159630 + timestamp: 1725971591485 +- conda: https://prefix.dev/conda-forge/linux-aarch64/imath-3.1.12-hf428078_0.conda + sha256: ad8f18472425da83ba0e9324ab715f5d232cece8b0efaf218bd2ea9e1b6adb6d + md5: ae8535ff689663fe430bec00be24a854 + depends: + - libgcc >=13 + - libstdcxx >=13 + - libzlib >=1.3.1,<2.0a0 + license: BSD-3-Clause + license_family: BSD + size: 153368 + timestamp: 1725971683794 +- conda: https://prefix.dev/conda-forge/osx-arm64/imath-3.1.12-h025cafa_0.conda + sha256: 8fcf6c3bf91993451412c0003b92044c9fc7980fe3f178ab3260f90ac4099072 + md5: b7e259bd81b5a7432ca045083959b83a + depends: + - __osx >=11.0 + - libcxx >=17 + - libzlib >=1.3.1,<2.0a0 + license: BSD-3-Clause + license_family: BSD + size: 153017 + timestamp: 1725971790238 +- conda: https://prefix.dev/conda-forge/win-64/imath-3.1.12-hbb528cf_0.conda + sha256: 184c796615cebaa73246f351144f164ee7b61ea809e4ba3c5d98fa9ca333e058 + md5: c25af729c8c1c41f96202f8a96652bbe + depends: + - libzlib >=1.3.1,<2.0a0 + - ucrt >=10.0.20348.0 + - vc >=14.2,<15 + - vc14_runtime >=14.29.30139 + license: BSD-3-Clause + license_family: BSD + size: 160408 + timestamp: 1725972042635 +- conda: https://prefix.dev/conda-forge/noarch/importlib-metadata-8.7.0-pyhe01879c_1.conda + sha256: c18ab120a0613ada4391b15981d86ff777b5690ca461ea7e9e49531e8f374745 + md5: 63ccfdc3a3ce25b027b8767eb722fca8 + depends: + - python >=3.9 + - zipp >=3.20 + - python + license: Apache-2.0 + license_family: APACHE + size: 34641 + timestamp: 1747934053147 +- conda: https://prefix.dev/conda-forge/noarch/importlib_resources-6.5.2-pyhd8ed1ab_0.conda + sha256: acc1d991837c0afb67c75b77fdc72b4bf022aac71fedd8b9ea45918ac9b08a80 + md5: c85c76dc67d75619a92f51dfbce06992 + depends: + - python >=3.9 + - zipp >=3.1.0 + constrains: + - importlib-resources >=6.5.2,<6.5.3.0a0 + license: Apache-2.0 + license_family: APACHE + size: 33781 + timestamp: 1736252433366 +- conda: https://prefix.dev/conda-forge/noarch/iniconfig-2.0.0-pyhd8ed1ab_1.conda + sha256: 0ec8f4d02053cd03b0f3e63168316530949484f80e16f5e2fb199a1d117a89ca + md5: 6837f3eff7dcea42ecd714ce1ac2b108 + depends: + - python >=3.9 + license: MIT + license_family: MIT + size: 11474 + timestamp: 1733223232820 +- conda: https://prefix.dev/conda-forge/win-64/intel-openmp-2025.2.0-h57928b3_757.conda + sha256: 0857277f8e854a43b070112b7eb280f5c8be15384c76994c7f24d81ffa6df301 + md5: 664dae0c154c42ca84c8ca0a337cc9a4 + license: LicenseRef-IntelSimplifiedSoftwareOct2022 + license_family: Proprietary + size: 22438820 + timestamp: 1753886268296 +- conda: https://prefix.dev/conda-forge/linux-64/jasper-4.2.8-he3c4edf_0.conda + sha256: 0e919ec86d980901d8cbb665e91f5e9bddb5ff662178f25aed6d63f999fd9afc + md5: a04073db11c2c86c555fb088acc8f8c1 + depends: + - __glibc >=2.17,<3.0.a0 + - freeglut >=3.2.2,<4.0a0 + - libgcc >=14 + - libglu >=9.0.3,<10.0a0 + - libglu >=9.0.3,<9.1.0a0 + - libjpeg-turbo >=3.1.0,<4.0a0 + license: JasPer-2.0 + size: 681643 + timestamp: 1754514437930 +- conda: https://prefix.dev/conda-forge/linux-aarch64/jasper-4.2.8-h27a9ab5_0.conda + sha256: 9a35d2fa6f74df0952303e1ba951ed4928d36ba7149a07c3c896b5619be731c3 + md5: 310b168e7084345675ba0cd30b1dc1ce + depends: + - freeglut >=3.2.2,<4.0a0 + - libgcc >=14 + - libglu >=9.0.3,<10.0a0 + - libglu >=9.0.3,<9.1.0a0 + - libjpeg-turbo >=3.1.0,<4.0a0 + license: JasPer-2.0 + size: 727096 + timestamp: 1754514489871 +- conda: https://prefix.dev/conda-forge/osx-arm64/jasper-4.2.8-hc0e5025_0.conda + sha256: 0d8a77e026a441c2c65616046a6ddcfffa42c5987bce1c51d352959653e2fb07 + md5: 54d2328b8db98729ab21f60a4aba9f7c + depends: + - __osx >=11.0 + - libjpeg-turbo >=3.1.0,<4.0a0 + license: JasPer-2.0 + size: 585257 + timestamp: 1754514688308 +- conda: https://prefix.dev/conda-forge/win-64/jasper-4.2.8-h8ad263b_0.conda + sha256: 67a171de9975e583d1cd860d67e67552b28bd992ed6d0b6b8f3311ff0f7fb6cf + md5: f25a27d9c58ef3a63173f372edef0639 + depends: + - freeglut >=3.2.2,<4.0a0 + - libjpeg-turbo >=3.1.0,<4.0a0 + - ucrt >=10.0.20348.0 + - vc >=14.3,<15 + - vc14_runtime >=14.44.35208 + license: JasPer-2.0 + size: 447036 + timestamp: 1754514582523 +- conda: https://prefix.dev/conda-forge/linux-64/jsoncpp-1.9.6-hf42df4d_1.conda + sha256: ed4b1878be103deb2e4c6d0eea3c9bdddfd7fc3178383927dce7578fb1063520 + md5: 7bdc5e2cc11cb0a0f795bdad9732b0f2 + depends: + - __glibc >=2.17,<3.0.a0 + - libgcc >=13 + - libstdcxx >=13 + license: LicenseRef-Public-Domain OR MIT + size: 169093 + timestamp: 1733780223643 +- conda: https://prefix.dev/conda-forge/linux-aarch64/jsoncpp-1.9.6-h34915d9_1.conda + sha256: 12f2d001e4e9ad255f1de139e873876d03d53f16396d73f7849b114eefec5291 + md5: 2f23d5c1884fac280816ac2e5f858a65 + depends: + - libgcc >=13 + - libstdcxx >=13 + license: LicenseRef-Public-Domain OR MIT + size: 162312 + timestamp: 1733779925983 +- conda: https://prefix.dev/conda-forge/osx-arm64/jsoncpp-1.9.6-h726d253_1.conda + sha256: 415c2376eef1bb47f8cc07279ecc54a2fa92f6dfdb508d337dd21d0157e3c8ad + md5: 0ff996d1cf523fa1f7ed63113f6cc052 + depends: + - __osx >=11.0 + - libcxx >=18 + license: LicenseRef-Public-Domain OR MIT + size: 145287 + timestamp: 1733780601066 +- conda: https://prefix.dev/conda-forge/win-64/jsoncpp-1.9.6-hda1637e_1.conda + sha256: 5cbd1ca5b2196a9d2bce6bd3bab16674faedc2f7de56b726e8748128d81d0956 + md5: 623fa3cfe037326999434d50c9362e90 + depends: + - ucrt >=10.0.20348.0 + - vc >=14.2,<15 + - vc14_runtime >=14.29.30139 + license: LicenseRef-Public-Domain OR MIT + size: 342126 + timestamp: 1733780675474 +- conda: https://prefix.dev/conda-forge/linux-64/jxrlib-1.1-hd590300_3.conda + sha256: 2057ca87b313bde5b74b93b0e696f8faab69acd4cb0edebb78469f3f388040c0 + md5: 5aeabe88534ea4169d4c49998f293d6c + depends: + - libgcc-ng >=12 + license: BSD-2-Clause + license_family: BSD + size: 239104 + timestamp: 1703333860145 +- conda: https://prefix.dev/conda-forge/linux-aarch64/jxrlib-1.1-h31becfc_3.conda + sha256: 157e151068d44042c56d6dd6f634d0b2c1fe084114ae56125299f518dd8b1500 + md5: 720f7b9ccdf426ac73dafcf92f7d7bf4 + depends: + - libgcc-ng >=12 + license: BSD-2-Clause + license_family: BSD + size: 238091 + timestamp: 1703333994798 +- conda: https://prefix.dev/conda-forge/osx-arm64/jxrlib-1.1-h93a5062_3.conda + sha256: c9e0d3cf9255d4585fa9b3d07ace3bd934fdc6a67ef4532e5507282eff2364ab + md5: 879997fd868f8e9e4c2a12aec8583799 + license: BSD-2-Clause + license_family: BSD + size: 197843 + timestamp: 1703334079437 +- conda: https://prefix.dev/conda-forge/win-64/jxrlib-1.1-hcfcfb64_3.conda + sha256: a9ac265bcf65fce57cfb6512a1b072d5489445d14aa1b60c9bdf73370cf261b2 + md5: a9dff8432c11dfa980346e934c29ca3f + depends: + - ucrt >=10.0.20348.0 + - vc >=14.2,<15 + - vc14_runtime >=14.29.30139 + license: BSD-2-Clause + license_family: BSD + size: 355340 + timestamp: 1703334132631 +- conda: https://prefix.dev/conda-forge/linux-64/keyutils-1.6.3-hb9d3cd8_0.conda + sha256: 0960d06048a7185d3542d850986d807c6e37ca2e644342dd0c72feefcf26c2a4 + md5: b38117a3c920364aff79f870c984b4a3 + depends: + - __glibc >=2.17,<3.0.a0 + - libgcc >=13 + license: LGPL-2.1-or-later + size: 134088 + timestamp: 1754905959823 +- conda: https://prefix.dev/conda-forge/linux-aarch64/keyutils-1.6.3-h86ecc28_0.conda + sha256: 5ce830ca274b67de11a7075430a72020c1fb7d486161a82839be15c2b84e9988 + md5: e7df0aab10b9cbb73ab2a467ebfaf8c7 + depends: + - libgcc >=13 + license: LGPL-2.1-or-later + size: 129048 + timestamp: 1754906002667 +- conda: https://prefix.dev/conda-forge/win-64/khronos-opencl-icd-loader-2024.10.24-h2466b09_1.conda + sha256: 881f92399f706df1185ec4372e59c5c9832f2dbb8e7587c6030a2a9a6e8ce7f8 + md5: 71a72eb0eed16a4a76fd88359be48fec + depends: + - opencl-headers >=2024.10.24 + - ucrt >=10.0.20348.0 + - vc >=14.2,<15 + - vc14_runtime >=14.29.30139 + license: Apache-2.0 + license_family: APACHE + size: 46768 + timestamp: 1732916943523 +- conda: https://prefix.dev/conda-forge/linux-64/kiwisolver-1.4.9-py311h724c32c_0.conda + sha256: 51813a024ff9ed172ebd8042ad5927400ece08da2498f815cb61f93c6a455b34 + md5: 9c869454a8fdb86fabd93df6cf6075a3 + depends: + - python + - libstdcxx >=14 + - libgcc >=14 + - __glibc >=2.17,<3.0.a0 + - python_abi 3.11.* *_cp311 + license: BSD-3-Clause + license_family: BSD + size: 78152 + timestamp: 1754889395523 +- conda: https://prefix.dev/conda-forge/linux-aarch64/kiwisolver-1.4.9-py311h229e7f7_0.conda + sha256: cec332c24d7d01a0d4f722f6a822cc26ce110dd23a53aaf825a12f76174b8fcc + md5: 1ff42c0e7a7cee8a3039163ab52c348a + depends: + - python + - libstdcxx >=14 + - libgcc >=14 + - python_abi 3.11.* *_cp311 + license: BSD-3-Clause + license_family: BSD + size: 85115 + timestamp: 1754889576101 +- conda: https://prefix.dev/conda-forge/osx-arm64/kiwisolver-1.4.9-py311h63e5c0c_0.conda + sha256: b7d27d0daa8cd119935e9e80060b928b9723c1c7f463184b444c9355eceaea48 + md5: c11b1f9354c6a5298b5c389b2daa4358 + depends: + - python + - __osx >=11.0 + - libcxx >=19 + - python 3.11.* *_cpython + - python_abi 3.11.* *_cp311 + license: BSD-3-Clause + license_family: BSD + size: 66079 + timestamp: 1754889457729 +- conda: https://prefix.dev/conda-forge/win-64/kiwisolver-1.4.9-py311h275cad7_0.conda + sha256: 8654a25270345bc32d72e4346bc923f25cd8791092736c32b2c82a68d81710a0 + md5: 6be4fb00d6e23f9d027262dc503efd11 + depends: + - python + - vc >=14.3,<15 + - vc14_runtime >=14.44.35208 + - ucrt >=10.0.20348.0 + - vc >=14.3,<15 + - vc14_runtime >=14.44.35208 + - ucrt >=10.0.20348.0 + - python_abi 3.11.* *_cp311 + license: BSD-3-Clause + license_family: BSD + size: 73575 + timestamp: 1754889407013 +- conda: https://prefix.dev/conda-forge/linux-64/krb5-1.21.3-h659f571_0.conda + sha256: 99df692f7a8a5c27cd14b5fb1374ee55e756631b9c3d659ed3ee60830249b238 + md5: 3f43953b7d3fb3aaa1d0d0723d91e368 + depends: + - keyutils >=1.6.1,<2.0a0 + - libedit >=3.1.20191231,<3.2.0a0 + - libedit >=3.1.20191231,<4.0a0 + - libgcc-ng >=12 + - libstdcxx-ng >=12 + - openssl >=3.3.1,<4.0a0 + license: MIT + license_family: MIT + size: 1370023 + timestamp: 1719463201255 +- conda: https://prefix.dev/conda-forge/linux-aarch64/krb5-1.21.3-h50a48e9_0.conda + sha256: 0ec272afcf7ea7fbf007e07a3b4678384b7da4047348107b2ae02630a570a815 + md5: 29c10432a2ca1472b53f299ffb2ffa37 + depends: + - keyutils >=1.6.1,<2.0a0 + - libedit >=3.1.20191231,<3.2.0a0 + - libedit >=3.1.20191231,<4.0a0 + - libgcc-ng >=12 + - libstdcxx-ng >=12 + - openssl >=3.3.1,<4.0a0 + license: MIT + license_family: MIT + size: 1474620 + timestamp: 1719463205834 +- conda: https://prefix.dev/conda-forge/osx-arm64/krb5-1.21.3-h237132a_0.conda + sha256: 4442f957c3c77d69d9da3521268cad5d54c9033f1a73f99cde0a3658937b159b + md5: c6dc8a0fdec13a0565936655c33069a1 + depends: + - __osx >=11.0 + - libcxx >=16 + - libedit >=3.1.20191231,<3.2.0a0 + - libedit >=3.1.20191231,<4.0a0 + - openssl >=3.3.1,<4.0a0 + license: MIT + license_family: MIT + size: 1155530 + timestamp: 1719463474401 +- conda: https://prefix.dev/conda-forge/win-64/krb5-1.21.3-hdf4eb48_0.conda + sha256: 18e8b3430d7d232dad132f574268f56b3eb1a19431d6d5de8c53c29e6c18fa81 + md5: 31aec030344e962fbd7dbbbbd68e60a9 + depends: + - openssl >=3.3.1,<4.0a0 + - ucrt >=10.0.20348.0 + - vc >=14.2,<15 + - vc14_runtime >=14.29.30139 + license: MIT + license_family: MIT + size: 712034 + timestamp: 1719463874284 +- conda: https://prefix.dev/conda-forge/linux-64/lame-3.100-h166bdaf_1003.tar.bz2 + sha256: aad2a703b9d7b038c0f745b853c6bb5f122988fe1a7a096e0e606d9cbec4eaab + md5: a8832b479f93521a9e7b5b743803be51 + depends: + - libgcc-ng >=12 + license: LGPL-2.0-only + license_family: LGPL + size: 508258 + timestamp: 1664996250081 +- conda: https://prefix.dev/conda-forge/linux-aarch64/lame-3.100-h4e544f5_1003.tar.bz2 + sha256: 2502904a42df6d94bd743f7b73915415391dd6d31d5f50cb57c0a54a108e7b0a + md5: ab05bcf82d8509b4243f07e93bada144 + depends: + - libgcc-ng >=12 + license: LGPL-2.0-only + license_family: LGPL + size: 604863 + timestamp: 1664997611416 +- conda: https://prefix.dev/conda-forge/osx-arm64/lame-3.100-h1a8c8d9_1003.tar.bz2 + sha256: f40ce7324b2cf5338b766d4cdb8e0453e4156a4f83c2f31bbfff750785de304c + md5: bff0e851d66725f78dc2fd8b032ddb7e + license: LGPL-2.0-only + license_family: LGPL + size: 528805 + timestamp: 1664996399305 +- conda: https://prefix.dev/conda-forge/win-64/lame-3.100-hcfcfb64_1003.tar.bz2 + sha256: 824988a396b97bb9138823a1b3aabd8326e06da5834b3011253d72bb45fd3a88 + md5: d92e64077c44c9e32c72d4b5799d47e4 + depends: + - ucrt >=10.0.20348.0 + - vc >=14.2,<15 + - vs2015_runtime >=14.29.30139 + license: LGPL-2.0-only + license_family: LGPL + size: 570583 + timestamp: 1664996824680 +- conda: https://prefix.dev/conda-forge/noarch/lark-parser-0.12.0-pyhd8ed1ab_1.conda + sha256: 7f1ad9630a87005a90099ad3ff883ac7a3fe5e85b9eb232d1f8ad0a670059cca + md5: 222dd97cb2d5da1638de5077da60712f + depends: + - python >=3.6 + license: MIT + license_family: MIT + size: 86134 + timestamp: 1725742423890 +- conda: https://prefix.dev/conda-forge/linux-64/lcms2-2.17-h717163a_0.conda + sha256: d6a61830a354da022eae93fa896d0991385a875c6bba53c82263a289deda9db8 + md5: 000e85703f0fd9594c81710dd5066471 + depends: + - __glibc >=2.17,<3.0.a0 + - libgcc >=13 + - libjpeg-turbo >=3.0.0,<4.0a0 + - libtiff >=4.7.0,<4.8.0a0 + license: MIT + license_family: MIT + size: 248046 + timestamp: 1739160907615 +- conda: https://prefix.dev/conda-forge/linux-aarch64/lcms2-2.17-hc88f144_0.conda + sha256: 47cf6a4780dc41caa9bc95f020eed485b07010c9ccc85e9ef44b538fedb5341d + md5: b87b1abd2542cf65a00ad2e2461a3083 + depends: + - libgcc >=13 + - libjpeg-turbo >=3.0.0,<4.0a0 + - libtiff >=4.7.0,<4.8.0a0 + license: MIT + license_family: MIT + size: 287007 + timestamp: 1739161069194 +- conda: https://prefix.dev/conda-forge/osx-arm64/lcms2-2.17-h7eeda09_0.conda + sha256: 310a62c2f074ebd5aa43b3cd4b00d46385ce680fa2132ecee255a200e2d2f15f + md5: 92a61fd30b19ebd5c1621a5bfe6d8b5f + depends: + - __osx >=11.0 + - libjpeg-turbo >=3.0.0,<4.0a0 + - libtiff >=4.7.0,<4.8.0a0 + license: MIT + license_family: MIT + size: 212125 + timestamp: 1739161108467 +- conda: https://prefix.dev/conda-forge/win-64/lcms2-2.17-hbcf6048_0.conda + sha256: 7712eab5f1a35ca3ea6db48ead49e0d6ac7f96f8560da8023e61b3dbe4f3b25d + md5: 3538827f77b82a837fa681a4579e37a1 + depends: + - libjpeg-turbo >=3.0.0,<4.0a0 + - libtiff >=4.7.0,<4.8.0a0 + - ucrt >=10.0.20348.0 + - vc >=14.2,<15 + - vc14_runtime >=14.29.30139 + license: MIT + license_family: MIT + size: 510641 + timestamp: 1739161381270 +- conda: https://prefix.dev/conda-forge/linux-64/ld_impl_linux-64-2.44-h1423503_1.conda + sha256: 1a620f27d79217c1295049ba214c2f80372062fd251b569e9873d4a953d27554 + md5: 0be7c6e070c19105f966d3758448d018 + depends: + - __glibc >=2.17,<3.0.a0 + constrains: + - binutils_impl_linux-64 2.44 + license: GPL-3.0-only + license_family: GPL + size: 676044 + timestamp: 1752032747103 +- conda: https://prefix.dev/conda-forge/linux-aarch64/ld_impl_linux-aarch64-2.44-h5e2c951_1.conda + sha256: 80e75aed7ea8af589b9171e90d042a20f111bbb21f62d06f32ec124ec9fd1f58 + md5: c10832808cf155953061892b3656470a + constrains: + - binutils_impl_linux-aarch64 2.44 + license: GPL-3.0-only + license_family: GPL + size: 708449 + timestamp: 1752032823484 +- conda: https://prefix.dev/conda-forge/linux-64/lerc-4.0.0-h0aef613_1.conda + sha256: 412381a43d5ff9bbed82cd52a0bbca5b90623f62e41007c9c42d3870c60945ff + md5: 9344155d33912347b37f0ae6c410a835 + depends: + - __glibc >=2.17,<3.0.a0 + - libgcc >=13 + - libstdcxx >=13 + license: Apache-2.0 + license_family: Apache + size: 264243 + timestamp: 1745264221534 +- conda: https://prefix.dev/conda-forge/linux-aarch64/lerc-4.0.0-hfdc4d58_1.conda + sha256: f01df5bbf97783fac9b89be602b4d02f94353f5221acfd80c424ec1c9a8d276c + md5: 60dceb7e876f4d74a9cbd42bbbc6b9cf + depends: + - libgcc >=13 + - libstdcxx >=13 + license: Apache-2.0 + license_family: Apache + size: 227184 + timestamp: 1745265544057 +- conda: https://prefix.dev/conda-forge/osx-arm64/lerc-4.0.0-hd64df32_1.conda + sha256: 12361697f8ffc9968907d1a7b5830e34c670e4a59b638117a2cdfed8f63a38f8 + md5: a74332d9b60b62905e3d30709df08bf1 + depends: + - __osx >=11.0 + - libcxx >=18 + license: Apache-2.0 + license_family: Apache + size: 188306 + timestamp: 1745264362794 +- conda: https://prefix.dev/conda-forge/win-64/lerc-4.0.0-h6470a55_1.conda + sha256: 868a3dff758cc676fa1286d3f36c3e0101cca56730f7be531ab84dc91ec58e9d + md5: c1b81da6d29a14b542da14a36c9fbf3f + depends: + - ucrt >=10.0.20348.0 + - vc >=14.2,<15 + - vc14_runtime >=14.29.30139 + license: Apache-2.0 + license_family: Apache + size: 164701 + timestamp: 1745264384716 +- conda: https://prefix.dev/conda-forge/linux-64/level-zero-1.24.1-hb700be7_0.conda + sha256: 9ae7d094bbd103d2864800dfd863868194c6147f334bdd6e9d4d95053781eb24 + md5: 277077b1e24a2f1cb845298150bbf0e6 + depends: + - __glibc >=2.17,<3.0.a0 + - libgcc >=14 + - libstdcxx >=14 + license: MIT + license_family: MIT + size: 607453 + timestamp: 1754434431152 +- conda: https://prefix.dev/conda-forge/linux-64/libabseil-20250127.1-cxx17_hbbce691_0.conda + sha256: 65d5ca837c3ee67b9d769125c21dc857194d7f6181bb0e7bd98ae58597b457d0 + md5: 00290e549c5c8a32cc271020acc9ec6b + depends: + - __glibc >=2.17,<3.0.a0 + - libgcc >=13 + - libstdcxx >=13 + constrains: + - abseil-cpp =20250127.1 + - libabseil-static =20250127.1=cxx17* + license: Apache-2.0 + license_family: Apache + size: 1325007 + timestamp: 1742369558286 +- conda: https://prefix.dev/conda-forge/linux-aarch64/libabseil-20250127.1-cxx17_h18dbdb1_0.conda + sha256: 55b7f9d8faa4a0a08f9fc7bcbd7f4cdd3c232120bafa2e8f7e19014ea4aa1278 + md5: 71b972e18b2747a9d47bbbafc346b765 + depends: + - libgcc >=13 + - libstdcxx >=13 + constrains: + - libabseil-static =20250127.1=cxx17* + - abseil-cpp =20250127.1 + license: Apache-2.0 + license_family: Apache + size: 1348653 + timestamp: 1742369595937 +- conda: https://prefix.dev/conda-forge/osx-arm64/libabseil-20250127.1-cxx17_h07bc746_0.conda + sha256: 9884f855bdfd5cddac209df90bdddae8b3a6d8accfd2d3f52bc9db2f9ebb69c9 + md5: 26aabb99a8c2806d8f617fd135f2fc6f + depends: + - __osx >=11.0 + - libcxx >=18 + constrains: + - abseil-cpp =20250127.1 + - libabseil-static =20250127.1=cxx17* + license: Apache-2.0 + license_family: Apache + size: 1192962 + timestamp: 1742369814061 +- conda: https://prefix.dev/conda-forge/win-64/libabseil-20250127.1-cxx17_h4eb7d71_0.conda + sha256: 61ece8d3768604eae2c7c869a5c032a61fbfb8eb86cc85dc39cc2de48d3827b4 + md5: 9619870922c18fa283a3ee703a14cfcc + depends: + - ucrt >=10.0.20348.0 + - vc >=14.2,<15 + - vc14_runtime >=14.29.30139 + constrains: + - libabseil-static =20250127.1=cxx17* + - abseil-cpp =20250127.1 + license: Apache-2.0 + license_family: Apache + size: 1836732 + timestamp: 1742370096247 +- conda: https://prefix.dev/conda-forge/linux-64/libacl-2.3.2-h0f662aa_0.conda + sha256: 1b704cf161c6f84658a7ac534555ef365ec982f23576b1c4ae4cac4baeb61685 + md5: ef8039969013acacf5b741092aef2ee7 + depends: + - attr >=2.5.1,<2.6.0a0 + - libgcc-ng >=12 + license: GPL-2.0-or-later + license_family: GPL + size: 110600 + timestamp: 1706132570609 +- conda: https://prefix.dev/conda-forge/linux-aarch64/libacl-2.3.2-h883460d_0.conda + sha256: 6d24a61f466f50dcab30f16663f5064cb1e0837a64103c21b0e14f265c29e31a + md5: b1d08a80bfea3391c32fb429d3dc02f3 + depends: + - attr >=2.5.1,<2.6.0a0 + - libgcc-ng >=12 + license: GPL-2.0-or-later + license_family: GPL + size: 115093 + timestamp: 1706132568525 +- conda: https://prefix.dev/conda-forge/linux-64/libaec-1.1.4-h3f801dc_0.conda + sha256: 410ab78fe89bc869d435de04c9ffa189598ac15bb0fe1ea8ace8fb1b860a2aa3 + md5: 01ba04e414e47f95c03d6ddd81fd37be + depends: + - __glibc >=2.17,<3.0.a0 + - libgcc >=13 + - libstdcxx >=13 + license: BSD-2-Clause + license_family: BSD + size: 36825 + timestamp: 1749993532943 +- conda: https://prefix.dev/conda-forge/linux-aarch64/libaec-1.1.4-h1e66f74_0.conda + sha256: 891844586d02bb528c18fddc6aa14dfd995532fbb8795156d215318e1de242f7 + md5: 6360d4091c919d6e185f1fc3ac36716e + depends: + - libgcc >=13 + - libstdcxx >=13 + license: BSD-2-Clause + license_family: BSD + size: 36847 + timestamp: 1749993545798 +- conda: https://prefix.dev/conda-forge/osx-arm64/libaec-1.1.4-h51d1e36_0.conda + sha256: 0ea6b73b3fb1511615d9648186a7409e73b7a8d9b3d890d39df797730e3d1dbb + md5: 8ed0f86b7a5529b98ec73b43a53ce800 + depends: + - __osx >=11.0 + - libcxx >=18 + license: BSD-2-Clause + license_family: BSD + size: 30173 + timestamp: 1749993648288 +- conda: https://prefix.dev/conda-forge/win-64/libaec-1.1.4-h20038f6_0.conda + sha256: 0be89085effce9fdcbb6aea7acdb157b18793162f68266ee0a75acf615d4929b + md5: 85a2bed45827d77d5b308cb2b165404f + depends: + - ucrt >=10.0.20348.0 + - vc >=14.2,<15 + - vc14_runtime >=14.29.30139 + license: BSD-2-Clause + license_family: BSD + size: 33847 + timestamp: 1749993666162 +- conda: https://prefix.dev/conda-forge/linux-64/libasprintf-0.25.1-h3f43e3d_1.conda + sha256: cb728a2a95557bb6a5184be2b8be83a6f2083000d0c7eff4ad5bbe5792133541 + md5: 3b0d184bc9404516d418d4509e418bdc + depends: + - __glibc >=2.17,<3.0.a0 + - libgcc >=14 + - libstdcxx >=14 + license: LGPL-2.1-or-later + size: 53582 + timestamp: 1753342901341 +- conda: https://prefix.dev/conda-forge/linux-aarch64/libasprintf-0.25.1-h5e0f5ae_0.conda + sha256: 146be90c237cf3d8399e44afe5f5d21ef9a15a7983ccea90e72d4ae0362f9b28 + md5: 1c5813f6be57f087b6659593248daf00 + depends: + - libgcc >=13 + - libstdcxx >=13 + license: LGPL-2.1-or-later + size: 53434 + timestamp: 1751557548397 +- conda: https://prefix.dev/conda-forge/osx-arm64/libasprintf-0.25.1-h493aca8_0.conda + sha256: 7265547424e978ea596f51cc8e7b81638fb1c660b743e98cc4deb690d9d524ab + md5: 0deb80a2d6097c5fb98b495370b2435b + depends: + - __osx >=11.0 + - libcxx >=18 + license: LGPL-2.1-or-later + size: 52316 + timestamp: 1751558366611 +- conda: https://prefix.dev/conda-forge/win-64/libasprintf-0.22.5-h5728263_3.conda + sha256: 8e41136b7e4ec44c1c0bae0ff51cdb0d04e026d0b44eaaf5a9ff8b4e1b6b019b + md5: 9f661052be1d477dcf61ee3cd77ce5ee + license: LGPL-2.1-or-later + size: 49776 + timestamp: 1723629333404 +- conda: https://prefix.dev/conda-forge/linux-64/libasprintf-devel-0.25.1-h3f43e3d_1.conda + sha256: 2fc95060efc3d76547b7872875af0b7212d4b1407165be11c5f830aeeb57fc3a + md5: fd9cf4a11d07f0ef3e44fc061611b1ed + depends: + - __glibc >=2.17,<3.0.a0 + - libasprintf 0.25.1 h3f43e3d_1 + - libgcc >=14 + license: LGPL-2.1-or-later + size: 34734 + timestamp: 1753342921605 +- conda: https://prefix.dev/conda-forge/linux-aarch64/libasprintf-devel-0.25.1-h5e0f5ae_0.conda + sha256: cc2bb8ca349ba4dd4af7971a3dba006bc8643353acd9757b4d645a817ec0f899 + md5: 5df92d925fba917586f3ca31c96d8e6d + depends: + - libasprintf 0.25.1 h5e0f5ae_0 + - libgcc >=13 + license: LGPL-2.1-or-later + size: 34824 + timestamp: 1751557562978 +- conda: https://prefix.dev/conda-forge/osx-arm64/libasprintf-devel-0.25.1-h493aca8_0.conda + sha256: fc76b07620eabde52928c69bcdcb5497da3fdad3331a76f9d4bffeb27e0bdd8f + md5: c18067d2d5864e77f84456d97c1c17cc + depends: + - __osx >=11.0 + - libasprintf 0.25.1 h493aca8_0 + license: LGPL-2.1-or-later + size: 35256 + timestamp: 1751558418167 +- conda: https://prefix.dev/conda-forge/linux-64/libass-0.17.3-h52826cd_2.conda + sha256: 8a94e634de73be1e7548deaf6e3b992e0d30c628a24f23333af06ebb3a3e74cb + md5: 01de25a48490709850221135890e09eb + depends: + - libgcc >=13 + - __glibc >=2.17,<3.0.a0 + - libzlib >=1.3.1,<2.0a0 + - libiconv >=1.18,<2.0a0 + - fribidi >=1.0.10,<2.0a0 + - freetype >=2.13.3,<3.0a0 + - fontconfig >=2.15.0,<3.0a0 + - fonts-conda-ecosystem + - harfbuzz >=11.0.0,<12.0a0 + license: ISC + size: 152563 + timestamp: 1743206970222 +- conda: https://prefix.dev/conda-forge/linux-aarch64/libass-0.17.3-h3c9f632_2.conda + sha256: 72551f77103bd9725cc57a1e6dff71059970ccc76c48c45240cdfd1987dfebd8 + md5: e7714c1e8fdaf41d5125dd73b28667bc + depends: + - libgcc >=13 + - freetype >=2.13.3,<3.0a0 + - harfbuzz >=11.0.0,<12.0a0 + - libzlib >=1.3.1,<2.0a0 + - libiconv >=1.18,<2.0a0 + - fribidi >=1.0.10,<2.0a0 + - fontconfig >=2.15.0,<3.0a0 + - fonts-conda-ecosystem + license: ISC + size: 173682 + timestamp: 1743206972213 +- conda: https://prefix.dev/conda-forge/osx-arm64/libass-0.17.3-h68e5b86_2.conda + sha256: bba6588c2699353a419b3f627b023f1606f37cad25e37a906337710ab84badfa + md5: 47db4495c24bd2d2da1af0ab11351892 + depends: + - __osx >=11.0 + - libzlib >=1.3.1,<2.0a0 + - harfbuzz >=11.0.0,<12.0a0 + - fontconfig >=2.15.0,<3.0a0 + - fonts-conda-ecosystem + - fribidi >=1.0.10,<2.0a0 + - freetype >=2.13.3,<3.0a0 + - libiconv >=1.18,<2.0a0 + license: ISC + size: 138347 + timestamp: 1743207022781 +- conda: https://prefix.dev/conda-forge/linux-64/libavif16-1.3.0-h766b0b6_0.conda + sha256: 170b51a3751c2f842ff9e11d22423494ef7254b448ef2b24751256ef18aa1302 + md5: f17f2d0e5c9ad6b958547fd67b155771 + depends: + - __glibc >=2.17,<3.0.a0 + - aom >=3.9.1,<3.10.0a0 + - dav1d >=1.2.1,<1.2.2.0a0 + - libgcc >=13 + - rav1e >=0.7.1,<0.8.0a0 + - svt-av1 >=3.0.2,<3.0.3.0a0 + license: BSD-2-Clause + license_family: BSD + size: 140052 + timestamp: 1746836263991 +- conda: https://prefix.dev/conda-forge/linux-aarch64/libavif16-1.3.0-hb72faec_0.conda + sha256: f9f788398dbb5eea297132ba7dcade06a2d59c61aa722708d30b4a2f69def1ac + md5: 6f699633a5967c4d44c777b7f7856d40 + depends: + - aom >=3.9.1,<3.10.0a0 + - dav1d >=1.2.1,<1.2.2.0a0 + - libgcc >=13 + - rav1e >=0.7.1,<0.8.0a0 + - svt-av1 >=3.0.2,<3.0.3.0a0 + license: BSD-2-Clause + license_family: BSD + size: 137787 + timestamp: 1746836360100 +- conda: https://prefix.dev/conda-forge/osx-arm64/libavif16-1.3.0-hf1e31eb_0.conda + sha256: bd8bc77a0c81c73ba955a05c4b4179b1bf9d0fef1a379bdb37fcd41961650175 + md5: c61522d664c4ee27234f802d631ddb88 + depends: + - __osx >=11.0 + - aom >=3.9.1,<3.10.0a0 + - dav1d >=1.2.1,<1.2.2.0a0 + - rav1e >=0.7.1,<0.8.0a0 + - svt-av1 >=3.0.2,<3.0.3.0a0 + license: BSD-2-Clause + license_family: BSD + size: 111817 + timestamp: 1746836468929 +- conda: https://prefix.dev/conda-forge/win-64/libavif16-1.3.0-hf2698fe_0.conda + sha256: 648bfe7404db62cc9c908341fbdc68f5b94254a8de31ede23f5abc3213c6651b + md5: cd552166ea3c57d74c797d68e643a659 + depends: + - _libavif_api >=1.3.0,<1.3.1.0a0 + - aom >=3.9.1,<3.10.0a0 + - dav1d >=1.2.1,<1.2.2.0a0 + - rav1e >=0.7.1,<0.8.0a0 + - svt-av1 >=3.0.2,<3.0.3.0a0 + - ucrt >=10.0.20348.0 + - vc >=14.2,<15 + - vc14_runtime >=14.29.30139 + license: BSD-2-Clause + license_family: BSD + size: 115816 + timestamp: 1746836897887 +- conda: https://prefix.dev/conda-forge/linux-64/libblas-3.9.0-34_h59b9bed_openblas.conda + build_number: 34 + sha256: 08a394ba934f68f102298259b150eb5c17a97c30c6da618e1baab4247366eab3 + md5: 064c22bac20fecf2a99838f9b979374c + depends: + - libopenblas >=0.3.30,<0.3.31.0a0 + - libopenblas >=0.3.30,<1.0a0 + constrains: + - mkl <2025 + - blas 2.134 openblas + - liblapacke 3.9.0 34*_openblas + - libcblas 3.9.0 34*_openblas + - liblapack 3.9.0 34*_openblas + license: BSD-3-Clause + license_family: BSD + size: 19306 + timestamp: 1754678416811 +- conda: https://prefix.dev/conda-forge/linux-aarch64/libblas-3.9.0-34_h1a9f1db_openblas.conda + build_number: 34 + sha256: a7758c6170d390240a9ead10e8a46e82c63035132bbe6a6821c6c652c9182922 + md5: fa386090d063f7d763d9e74d33202279 + depends: + - libopenblas >=0.3.30,<0.3.31.0a0 + - libopenblas >=0.3.30,<1.0a0 + constrains: + - liblapacke 3.9.0 34*_openblas + - liblapack 3.9.0 34*_openblas + - blas 2.134 openblas + - libcblas 3.9.0 34*_openblas + - mkl <2025 + license: BSD-3-Clause + license_family: BSD + size: 19403 + timestamp: 1754678744823 +- conda: https://prefix.dev/conda-forge/osx-arm64/libblas-3.9.0-34_h10e41b3_openblas.conda + build_number: 34 + sha256: 5de3c3bfcdc8ba05da1a7815c9953fe392c2065d9efdc2491f91df6d0d1d9e76 + md5: cdb3e1ca1661dbf19f9aad7dad524996 + depends: + - libopenblas >=0.3.30,<0.3.31.0a0 + - libopenblas >=0.3.30,<1.0a0 + constrains: + - blas 2.134 openblas + - mkl <2025 + - liblapacke 3.9.0 34*_openblas + - libcblas 3.9.0 34*_openblas + - liblapack 3.9.0 34*_openblas + license: BSD-3-Clause + license_family: BSD + size: 19533 + timestamp: 1754678956963 +- conda: https://prefix.dev/conda-forge/win-64/libblas-3.9.0-8_mkl.tar.bz2 + build_number: 8 + sha256: 03abee1e77d7eec602f8599bf0d5045f47d0000a3ce36bbb13ca64faac1c45e1 + md5: 6de24bc80d8a3dcd5e2f06641a5d1da3 + depends: + - mkl 2020.4 hb70f87d_311 + constrains: + - liblapacke 3.9.0 8_mkl + - blas * mkl + - liblapack 3.9.0 8_mkl + - libcblas 3.9.0 8_mkl + - mkl <2025 + license: BSD-3-Clause + license_family: BSD + size: 4071895 + timestamp: 1612394585198 +- conda: https://prefix.dev/conda-forge/linux-64/libboost-1.86.0-h6c02f8c_3.conda + sha256: bad622863b3e4c8f0d107d8efd5b808e52d79cb502a20d700d05357b59a51e8f + md5: eead4e74198698d1c74f06572af753bc + depends: + - __glibc >=2.17,<3.0.a0 + - bzip2 >=1.0.8,<2.0a0 + - icu >=75.1,<76.0a0 + - libgcc >=13 + - liblzma >=5.6.3,<6.0a0 + - libstdcxx >=13 + - libzlib >=1.3.1,<2.0a0 + - zstd >=1.5.6,<1.6.0a0 + constrains: + - boost-cpp <0.0a0 + license: BSL-1.0 + size: 2946990 + timestamp: 1733501899743 +- conda: https://prefix.dev/conda-forge/linux-aarch64/libboost-1.86.0-h4d13611_3.conda + sha256: 2793e4d102d5822dfeb71ba1c0844df8357d041810eedf8144a7292921f89498 + md5: b5042cc0004a036390a6e4b007d77966 + depends: + - bzip2 >=1.0.8,<2.0a0 + - icu >=75.1,<76.0a0 + - libgcc >=13 + - liblzma >=5.6.3,<6.0a0 + - libstdcxx >=13 + - libzlib >=1.3.1,<2.0a0 + - zstd >=1.5.6,<1.6.0a0 + constrains: + - boost-cpp <0.0a0 + license: BSL-1.0 + size: 3049840 + timestamp: 1733502105682 +- conda: https://prefix.dev/conda-forge/osx-arm64/libboost-1.86.0-hc9fb7c5_3.conda + sha256: 793da2d2f7e2e14ed34549e3085771eefcc13ee6e06de2409a681ff0a545e905 + md5: 722715e61d51bcc7bd74f7a2b133f0d7 + depends: + - __osx >=11.0 + - bzip2 >=1.0.8,<2.0a0 + - icu >=75.1,<76.0a0 + - libcxx >=18 + - liblzma >=5.6.3,<6.0a0 + - libzlib >=1.3.1,<2.0a0 + - zstd >=1.5.6,<1.6.0a0 + constrains: + - boost-cpp <0.0a0 + license: BSL-1.0 + size: 1937185 + timestamp: 1733503730683 +- conda: https://prefix.dev/conda-forge/win-64/libboost-1.86.0-hb0986bb_3.conda + sha256: 0e1f19d03c2755f424321e0bebf3a62f864e084e812d172b3953e5215d4e4d36 + md5: d0550e3c23e9e9885bf410fe6f519361 + depends: + - bzip2 >=1.0.8,<2.0a0 + - libiconv >=1.17,<2.0a0 + - liblzma >=5.6.3,<6.0a0 + - libzlib >=1.3.1,<2.0a0 + - ucrt >=10.0.20348.0 + - vc >=14.2,<15 + - vc14_runtime >=14.29.30139 + - zstd >=1.5.6,<1.6.0a0 + constrains: + - boost-cpp <0.0a0 + license: BSL-1.0 + size: 2502049 + timestamp: 1733503877084 +- conda: https://prefix.dev/conda-forge/linux-64/libboost-devel-1.86.0-h1a2810e_3.conda + sha256: 1bbc13f4bed720af80e67e5df1e609f4efd801ae27d85107c36416de20ebb84c + md5: ffe09ce10ce1e03e1e762ab5bc006a35 + depends: + - libboost 1.86.0 h6c02f8c_3 + - libboost-headers 1.86.0 ha770c72_3 + constrains: + - boost-cpp <0.0a0 + license: BSL-1.0 + size: 37554 + timestamp: 1733502001252 +- conda: https://prefix.dev/conda-forge/linux-aarch64/libboost-devel-1.86.0-h37bb5a9_3.conda + sha256: becf307faa62532c232c8a761469527bdd8f23b1c2243b9b5075f04ce5ac6b34 + md5: 0cf50fd836e92c72ce0b609339d8325d + depends: + - libboost 1.86.0 h4d13611_3 + - libboost-headers 1.86.0 h8af1aa0_3 + constrains: + - boost-cpp <0.0a0 + license: BSL-1.0 + size: 36489 + timestamp: 1733502210742 +- conda: https://prefix.dev/conda-forge/osx-arm64/libboost-devel-1.86.0-hf450f58_3.conda + sha256: 785fec14fff95b87b1ef1e947367255cb54e8a580c67a9544ef51cf44399d638 + md5: b5ee687fa1ca8cb36149519a9e14541c + depends: + - libboost 1.86.0 hc9fb7c5_3 + - libboost-headers 1.86.0 hce30654_3 + constrains: + - boost-cpp <0.0a0 + license: BSL-1.0 + size: 37678 + timestamp: 1733503973845 +- conda: https://prefix.dev/conda-forge/win-64/libboost-devel-1.86.0-h91493d7_3.conda + sha256: 604bbee4cc195b2ed745efc4bd9b3172c82ff1468ffbba25f6d0fc176b10b995 + md5: 2e5f24412d1cebea7fd9f9a41ffc7a85 + depends: + - libboost 1.86.0 hb0986bb_3 + - libboost-headers 1.86.0 h57928b3_3 + constrains: + - boost-cpp <0.0a0 + license: BSL-1.0 + size: 40415 + timestamp: 1733504121541 +- conda: https://prefix.dev/conda-forge/linux-64/libboost-headers-1.86.0-ha770c72_3.conda + sha256: 322be3cc409ee8b7f46a6e237c91cdcf810bc528af5865f6b7c46cc56ad5f070 + md5: be60ca34cfa7a867c2911506cad8f7c3 + constrains: + - boost-cpp <0.0a0 + license: BSL-1.0 + size: 13991670 + timestamp: 1733501914699 +- conda: https://prefix.dev/conda-forge/linux-aarch64/libboost-headers-1.86.0-h8af1aa0_3.conda + sha256: 1b0fbba3c07fb7ad91e33795ce7ab6625e1fc89a86759ec357d645f50109831d + md5: 3dfbb18ef594487356d106f8ce5d3c2b + constrains: + - boost-cpp <0.0a0 + license: BSL-1.0 + size: 14031351 + timestamp: 1733502121821 +- conda: https://prefix.dev/conda-forge/osx-arm64/libboost-headers-1.86.0-hce30654_3.conda + sha256: b5287d295bb3ee2f074f8bfede7c021f220ecee681da3843d8e537a51aad83f2 + md5: 81b1cfe069c865273f8809ade3e80bf8 + constrains: + - boost-cpp <0.0a0 + license: BSL-1.0 + size: 14139980 + timestamp: 1733503796088 +- conda: https://prefix.dev/conda-forge/win-64/libboost-headers-1.86.0-h57928b3_3.conda + sha256: 231042814cfdb494b63b2829ce832f352ff8bcb8cc10eef148db7c799c9c8c29 + md5: 4bc32387538adb61353d76c629fb20e6 + constrains: + - boost-cpp <0.0a0 + license: BSL-1.0 + size: 14179084 + timestamp: 1733503940017 +- conda: https://prefix.dev/conda-forge/linux-64/libboost-python-1.86.0-py311h5b7b71f_3.conda + sha256: 1ae2533b2b3b38fac2e06f742c0cd2dbadcd899c0b21d49fa6ca4f2f1c5d6d92 + md5: 1f2e5e17b5d0c42dba4c8740b64f5ac3 + depends: + - __glibc >=2.17,<3.0.a0 + - libgcc >=13 + - libstdcxx >=13 + - numpy >=1.19,<3 + - python >=3.11,<3.12.0a0 + - python_abi 3.11.* *_cp311 + constrains: + - boost <0.0a0 + - py-boost <0.0a0 + license: BSL-1.0 + size: 121008 + timestamp: 1733502281031 +- conda: https://prefix.dev/conda-forge/linux-aarch64/libboost-python-1.86.0-py311hb9acf69_3.conda + sha256: 6fc680e0db0d7d557d44862918285e29327f7a5e790fee8add2374f1271401d3 + md5: 7e015ef14cadca9688a5d1733f8bb927 + depends: + - libgcc >=13 + - libstdcxx >=13 + - numpy >=1.19,<3 + - python >=3.11,<3.12.0a0 + - python >=3.11,<3.12.0a0 *_cpython + - python_abi 3.11.* *_cp311 + constrains: + - py-boost <0.0a0 + - boost <0.0a0 + license: BSL-1.0 + size: 117377 + timestamp: 1733502415732 +- conda: https://prefix.dev/conda-forge/osx-arm64/libboost-python-1.86.0-py311h8fc16d6_3.conda + sha256: 030bb19312d66c05b600d92391800d6c77149d531b6de9baccb48a9b7e89b500 + md5: a6a4231c44250975a0f97af3da2510c9 + depends: + - __osx >=11.0 + - libcxx >=18 + - numpy >=1.19,<3 + - python >=3.11,<3.12.0a0 + - python >=3.11,<3.12.0a0 *_cpython + - python_abi 3.11.* *_cp311 + constrains: + - py-boost <0.0a0 + - boost <0.0a0 + license: BSL-1.0 + size: 103521 + timestamp: 1733504401140 +- conda: https://prefix.dev/conda-forge/win-64/libboost-python-1.86.0-py311h9b10771_3.conda + sha256: 348e1bc0f30c4d69e0fb83a9534a776a0e7b576a06a6388c2549993563f55946 + md5: 2bfebe8baec79466dc74d7e142814cbf + depends: + - numpy >=1.19,<3 + - python >=3.11,<3.12.0a0 + - python_abi 3.11.* *_cp311 + - ucrt >=10.0.20348.0 + - vc >=14.2,<15 + - vc14_runtime >=14.29.30139 + constrains: + - boost <0.0a0 + - py-boost <0.0a0 + license: BSL-1.0 + size: 111204 + timestamp: 1733504545521 +- conda: https://prefix.dev/conda-forge/linux-64/libbrotlicommon-1.1.0-hb9d3cd8_3.conda + sha256: 462a8ed6a7bb9c5af829ec4b90aab322f8bcd9d8987f793e6986ea873bbd05cf + md5: cb98af5db26e3f482bebb80ce9d947d3 + depends: + - __glibc >=2.17,<3.0.a0 + - libgcc >=13 + license: MIT + license_family: MIT + size: 69233 + timestamp: 1749230099545 +- conda: https://prefix.dev/conda-forge/linux-aarch64/libbrotlicommon-1.1.0-h86ecc28_3.conda + sha256: a974f63f71ccb198300c606204846a65a7d62abffcbfbc4f557f71d0243a1fab + md5: 76295055ce278970227759bdf3490827 + depends: + - libgcc >=13 + license: MIT + license_family: MIT + size: 69590 + timestamp: 1749230272157 +- conda: https://prefix.dev/conda-forge/osx-arm64/libbrotlicommon-1.1.0-h5505292_3.conda + sha256: 0e9c196ad8569ca199ea05103707cde0ae3c7e97d0cdf0417d873148ea9ad640 + md5: fbc4d83775515e433ef22c058768b84d + depends: + - __osx >=11.0 + license: MIT + license_family: MIT + size: 68972 + timestamp: 1749230317752 +- conda: https://prefix.dev/conda-forge/win-64/libbrotlicommon-1.1.0-h2466b09_3.conda + sha256: e70ea4b773fadddda697306a80a29d9cbd36b7001547cd54cbfe9a97a518993f + md5: cf20c8b8b48ab5252ec64b9c66bfe0a4 + depends: + - ucrt >=10.0.20348.0 + - vc >=14.2,<15 + - vc14_runtime >=14.29.30139 + license: MIT + license_family: MIT + size: 71289 + timestamp: 1749230827419 +- conda: https://prefix.dev/conda-forge/linux-64/libbrotlidec-1.1.0-hb9d3cd8_3.conda + sha256: 3eb27c1a589cbfd83731be7c3f19d6d679c7a444c3ba19db6ad8bf49172f3d83 + md5: 1c6eecffad553bde44c5238770cfb7da + depends: + - __glibc >=2.17,<3.0.a0 + - libbrotlicommon 1.1.0 hb9d3cd8_3 + - libgcc >=13 + license: MIT + license_family: MIT + size: 33148 + timestamp: 1749230111397 +- conda: https://prefix.dev/conda-forge/linux-aarch64/libbrotlidec-1.1.0-h86ecc28_3.conda + sha256: a9664ec3acc9dbb33425d057154f6802b0c4d723fbb7939ee40eb379dbe5150b + md5: 3a4b4fc0864a4dc0f4012ac1abe069a9 + depends: + - libbrotlicommon 1.1.0 h86ecc28_3 + - libgcc >=13 + license: MIT + license_family: MIT + size: 32248 + timestamp: 1749230286642 +- conda: https://prefix.dev/conda-forge/osx-arm64/libbrotlidec-1.1.0-h5505292_3.conda + sha256: d888c228e7d4f0f2303538f6a9705498c81d56fedaab7811e1186cb6e24d689b + md5: 01c4b35a1c4b94b60801f189f1ac6ee3 + depends: + - __osx >=11.0 + - libbrotlicommon 1.1.0 h5505292_3 + license: MIT + license_family: MIT + size: 29249 + timestamp: 1749230338861 +- conda: https://prefix.dev/conda-forge/win-64/libbrotlidec-1.1.0-h2466b09_3.conda + sha256: a35a0db7e3257e011b10ffb371735b2b24074412d0b27c3dab7ca9f2c549cfcf + md5: a342933dbc6d814541234c7c81cb5205 + depends: + - libbrotlicommon 1.1.0 h2466b09_3 + - ucrt >=10.0.20348.0 + - vc >=14.2,<15 + - vc14_runtime >=14.29.30139 + license: MIT + license_family: MIT + size: 33451 + timestamp: 1749230869051 +- conda: https://prefix.dev/conda-forge/linux-64/libbrotlienc-1.1.0-hb9d3cd8_3.conda + sha256: 76e8492b0b0a0d222bfd6081cae30612aa9915e4309396fdca936528ccf314b7 + md5: 3facafe58f3858eb95527c7d3a3fc578 + depends: + - __glibc >=2.17,<3.0.a0 + - libbrotlicommon 1.1.0 hb9d3cd8_3 + - libgcc >=13 + license: MIT + license_family: MIT + size: 282657 + timestamp: 1749230124839 +- conda: https://prefix.dev/conda-forge/linux-aarch64/libbrotlienc-1.1.0-h86ecc28_3.conda + sha256: 3a225e42ef7293217177ba9ca8559915f14b74ab238652c7aa32f20a3dbbee2d + md5: 2b8199de1016a56c49bfced37c7f0882 + depends: + - libbrotlicommon 1.1.0 h86ecc28_3 + - libgcc >=13 + license: MIT + license_family: MIT + size: 290695 + timestamp: 1749230300899 +- conda: https://prefix.dev/conda-forge/osx-arm64/libbrotlienc-1.1.0-h5505292_3.conda + sha256: 0734a54db818ddfdfbf388fa53c5036a06bbe17de14005f33215d865d51d8a5e + md5: 1ce5e315293309b5bf6778037375fb08 + depends: + - __osx >=11.0 + - libbrotlicommon 1.1.0 h5505292_3 + license: MIT + license_family: MIT + size: 274404 + timestamp: 1749230355483 +- conda: https://prefix.dev/conda-forge/win-64/libbrotlienc-1.1.0-h2466b09_3.conda + sha256: 9d0703c5a01c10d346587ff0535a0eb81042364333caa4a24a0e4a0c08fd490b + md5: 7ef0af55d70cbd9de324bb88b7f9d81e + depends: + - libbrotlicommon 1.1.0 h2466b09_3 + - ucrt >=10.0.20348.0 + - vc >=14.2,<15 + - vc14_runtime >=14.29.30139 + license: MIT + license_family: MIT + size: 245845 + timestamp: 1749230909225 +- conda: https://prefix.dev/conda-forge/linux-64/libcap-2.75-h39aace5_0.conda + sha256: 9c84448305e7c9cc44ccec7757cf5afcb5a021f4579aa750a1fa6ea398783950 + md5: c44c16d6976d2aebbd65894d7741e67e + depends: + - __glibc >=2.17,<3.0.a0 + - attr >=2.5.1,<2.6.0a0 + - libgcc >=13 + license: BSD-3-Clause + license_family: BSD + size: 120375 + timestamp: 1741176638215 +- conda: https://prefix.dev/conda-forge/linux-aarch64/libcap-2.75-h51d75a7_0.conda + sha256: d77e8bd8d5714a80c1fa88037e71d5c29f21bae1e9281528006c9c5a6175ac1a + md5: c5456e13665779bf7a62dc7724ca2938 + depends: + - attr >=2.5.1,<2.6.0a0 + - libgcc >=13 + license: BSD-3-Clause + license_family: BSD + size: 108212 + timestamp: 1741177682469 +- conda: https://prefix.dev/conda-forge/linux-64/libcblas-3.9.0-34_he106b2a_openblas.conda + build_number: 34 + sha256: edde454897c7889c0323216516abb570a593de728c585b14ef41eda2b08ddf3a + md5: 148b531b5457ad666ed76ceb4c766505 + depends: + - libblas 3.9.0 34_h59b9bed_openblas + constrains: + - liblapacke 3.9.0 34*_openblas + - blas 2.134 openblas + - liblapack 3.9.0 34*_openblas + license: BSD-3-Clause + license_family: BSD + size: 19313 + timestamp: 1754678426220 +- conda: https://prefix.dev/conda-forge/linux-aarch64/libcblas-3.9.0-34_hab92f65_openblas.conda + build_number: 34 + sha256: 4bb4f0ccff3073f2cbc7762483caf034893b2ed61b6f8b9eef36bcafd189901c + md5: 1abb083ef60123a9f952d6c3ee94f05b + depends: + - libblas 3.9.0 34_h1a9f1db_openblas + constrains: + - liblapack 3.9.0 34*_openblas + - liblapacke 3.9.0 34*_openblas + - blas 2.134 openblas + license: BSD-3-Clause + license_family: BSD + size: 19386 + timestamp: 1754678755261 +- conda: https://prefix.dev/conda-forge/osx-arm64/libcblas-3.9.0-34_hb3479ef_openblas.conda + build_number: 34 + sha256: 6639f6c6b2e76cb1be62cd6d9033bda7dc3fab2e5a80f5be4b5c522c27dcba17 + md5: e15018d609b8957c146dcb6c356dd50c + depends: + - libblas 3.9.0 34_h10e41b3_openblas + constrains: + - liblapack 3.9.0 34*_openblas + - blas 2.134 openblas + - liblapacke 3.9.0 34*_openblas + license: BSD-3-Clause + license_family: BSD + size: 19521 + timestamp: 1754678970336 +- conda: https://prefix.dev/conda-forge/win-64/libcblas-3.9.0-8_mkl.tar.bz2 + build_number: 8 + sha256: badcc00849870297861a70c65484a0697ef9f1cdbe8d42cd363004ccdbd8923a + md5: 3bac56af014b2ef22ebd87d4f5ee2774 + depends: + - libblas 3.9.0 8_mkl + constrains: + - liblapacke 3.9.0 8_mkl + - blas * mkl + - liblapack 3.9.0 8_mkl + - mkl <2025 + license: BSD-3-Clause + license_family: BSD + size: 4071811 + timestamp: 1612394617920 +- conda: https://prefix.dev/conda-forge/osx-arm64/libclang-cpp17-17.0.6-default_hf90f093_8.conda + sha256: b4c51be4c16b5e4d250b5863f1e1db9eafb4b007d84e4e1e3785267febcfd388 + md5: 72b4d7dc789ea3fe3ee49e3ca7c5d971 + depends: + - __osx >=11.0 + - libcxx >=17.0.6 + - libllvm17 >=17.0.6,<17.1.0a0 + license: Apache-2.0 WITH LLVM-exception + license_family: Apache + size: 12785300 + timestamp: 1738083576490 +- conda: https://prefix.dev/conda-forge/osx-arm64/libclang-cpp19.1-19.1.7-default_hf90f093_3.conda + sha256: 581014d18bb6a9c2c7b46ca932b338b54b351bd8e9ccfd5ad665fd2d9810b8d0 + md5: 560546d163a6622b494ce92204e67540 + depends: + - __osx >=11.0 + - libcxx >=19.1.7 + - libllvm19 >=19.1.7,<19.2.0a0 + license: Apache-2.0 WITH LLVM-exception + license_family: Apache + size: 14084825 + timestamp: 1747709563086 +- conda: https://prefix.dev/conda-forge/linux-64/libclang-cpp20.1-20.1.8-default_hddf928d_0.conda + sha256: 202742a287db5889ae5511fab24b4aff40f0c515476c1ea130ff56fae4dd565a + md5: b939740734ad5a8e8f6c942374dee68d + depends: + - __glibc >=2.17,<3.0.a0 + - libgcc >=14 + - libllvm20 >=20.1.8,<20.2.0a0 + - libstdcxx >=14 + license: Apache-2.0 WITH LLVM-exception + license_family: Apache + size: 21250278 + timestamp: 1752223579291 +- conda: https://prefix.dev/conda-forge/linux-aarch64/libclang-cpp20.1-20.1.8-default_hf07bfb7_0.conda + sha256: 70d77eda40be7c4688a21631f8c9c986dcd01312c37f946a86e17bc4e38274f2 + md5: c7a64cd7dd2bf72956d2f3b1b1aa13a7 + depends: + - libgcc >=14 + - libllvm20 >=20.1.8,<20.2.0a0 + - libstdcxx >=14 + license: Apache-2.0 WITH LLVM-exception + license_family: Apache + size: 20787483 + timestamp: 1752227588867 +- conda: https://prefix.dev/conda-forge/linux-64/libclang13-20.1.8-default_ha444ac7_0.conda + sha256: 39fdf9616df5dd13dee881fc19e8f9100db2319e121d9b673a3fc6a0c76743a3 + md5: 783f9cdcb0255ed00e3f1be22e16de40 + depends: + - __glibc >=2.17,<3.0.a0 + - libgcc >=14 + - libllvm20 >=20.1.8,<20.2.0a0 + - libstdcxx >=14 + license: Apache-2.0 WITH LLVM-exception + license_family: Apache + size: 12353158 + timestamp: 1752223792409 +- conda: https://prefix.dev/conda-forge/linux-aarch64/libclang13-20.1.8-default_h173080d_0.conda + sha256: f1df0f18624040983c26ed2d16c62b675b5378c43727cc3938bc45761ef85088 + md5: c9a9e8c0477f9c915f106fd6254b2a9c + depends: + - libgcc >=14 + - libllvm20 >=20.1.8,<20.2.0a0 + - libstdcxx >=14 + license: Apache-2.0 WITH LLVM-exception + license_family: Apache + size: 12082176 + timestamp: 1752227774128 +- conda: https://prefix.dev/conda-forge/osx-arm64/libclang13-20.1.8-default_h91d7d2a_0.conda + sha256: 919d3c208255f0c4c4f2a0508c6b91664f7fde8b2465575f6951bdfbf59621c6 + md5: 292bf8b81f563debcfc47c3286140a9d + depends: + - __osx >=11.0 + - libcxx >=20.1.8 + - libllvm20 >=20.1.8,<20.2.0a0 + license: Apache-2.0 WITH LLVM-exception + license_family: Apache + size: 8418025 + timestamp: 1752219842543 +- conda: https://prefix.dev/conda-forge/win-64/libclang13-20.1.8-default_hadf22e1_0.conda + sha256: b11a844f4d88f7785050b71ef1f70613100b518c02f23ec6401904a09820d8bf + md5: cf1a9a4c7395c5d6cc0dcf8f7c40acb3 + depends: + - libzlib >=1.3.1,<2.0a0 + - ucrt >=10.0.20348.0 + - vc >=14.3,<15 + - vc14_runtime >=14.44.35208 + - zstd >=1.5.7,<1.6.0a0 + license: Apache-2.0 WITH LLVM-exception + license_family: Apache + size: 28306754 + timestamp: 1752232456043 +- conda: https://prefix.dev/conda-forge/linux-64/libcups-2.3.3-hb8b1518_5.conda + sha256: cb83980c57e311783ee831832eb2c20ecb41e7dee6e86e8b70b8cef0e43eab55 + md5: d4a250da4737ee127fb1fa6452a9002e + depends: + - __glibc >=2.17,<3.0.a0 + - krb5 >=1.21.3,<1.22.0a0 + - libgcc >=13 + - libstdcxx >=13 + - libzlib >=1.3.1,<2.0a0 + license: Apache-2.0 + license_family: Apache + size: 4523621 + timestamp: 1749905341688 +- conda: https://prefix.dev/conda-forge/linux-aarch64/libcups-2.3.3-h5cdc715_5.conda + sha256: f3282d27be35e5d29b5b798e5136427ec798916ee6374499be7b7682c8582b72 + md5: ac0333d338076ef19170938bbaf97582 + depends: + - krb5 >=1.21.3,<1.22.0a0 + - libgcc >=13 + - libstdcxx >=13 + - libzlib >=1.3.1,<2.0a0 + license: Apache-2.0 + license_family: Apache + size: 4550533 + timestamp: 1749906839681 +- conda: https://prefix.dev/conda-forge/linux-64/libcurl-8.14.1-h332b0f4_0.conda + sha256: b6c5cf340a4f80d70d64b3a29a7d9885a5918d16a5cb952022820e6d3e79dc8b + md5: 45f6713cb00f124af300342512219182 + depends: + - __glibc >=2.17,<3.0.a0 + - krb5 >=1.21.3,<1.22.0a0 + - libgcc >=13 + - libnghttp2 >=1.64.0,<2.0a0 + - libssh2 >=1.11.1,<2.0a0 + - libzlib >=1.3.1,<2.0a0 + - openssl >=3.5.0,<4.0a0 + - zstd >=1.5.7,<1.6.0a0 + license: curl + license_family: MIT + size: 449910 + timestamp: 1749033146806 +- conda: https://prefix.dev/conda-forge/linux-aarch64/libcurl-8.14.1-h6702fde_0.conda + sha256: 13f7cc9f6b4bdc9a3544339abf2662bc61018c415fe7a1518137db782eb85343 + md5: 1d92dbf43358f0774dc91764fa77a9f5 + depends: + - krb5 >=1.21.3,<1.22.0a0 + - libgcc >=13 + - libnghttp2 >=1.64.0,<2.0a0 + - libssh2 >=1.11.1,<2.0a0 + - libzlib >=1.3.1,<2.0a0 + - openssl >=3.5.0,<4.0a0 + - zstd >=1.5.7,<1.6.0a0 + license: curl + license_family: MIT + size: 469143 + timestamp: 1749033114882 +- conda: https://prefix.dev/conda-forge/osx-arm64/libcurl-8.14.1-h73640d1_0.conda + sha256: 0055b68137309db41ec34c938d95aec71d1f81bd9d998d5be18f32320c3ccba0 + md5: 1af57c823803941dfc97305248a56d57 + depends: + - __osx >=11.0 + - krb5 >=1.21.3,<1.22.0a0 + - libnghttp2 >=1.64.0,<2.0a0 + - libssh2 >=1.11.1,<2.0a0 + - libzlib >=1.3.1,<2.0a0 + - openssl >=3.5.0,<4.0a0 + - zstd >=1.5.7,<1.6.0a0 + license: curl + license_family: MIT + size: 403456 + timestamp: 1749033320430 +- conda: https://prefix.dev/conda-forge/win-64/libcurl-8.14.1-h88aaa65_0.conda + sha256: b2cface2cf35d8522289df7fffc14370596db6f6dc481cc1b6ca313faeac19d8 + md5: 836b9c08f34d2017dbcaec907c6a1138 + depends: + - krb5 >=1.21.3,<1.22.0a0 + - libssh2 >=1.11.1,<2.0a0 + - libzlib >=1.3.1,<2.0a0 + - ucrt >=10.0.20348.0 + - vc >=14.2,<15 + - vc14_runtime >=14.29.30139 + license: curl + license_family: MIT + size: 368346 + timestamp: 1749033492826 +- conda: https://prefix.dev/conda-forge/osx-arm64/libcxx-21.1.0-hf598326_1.conda + sha256: 58427116dc1b58b13b48163808daa46aacccc2c79d40000f8a3582938876fed7 + md5: 0fb2c0c9b1c1259bc7db75c1342b1d99 + depends: + - __osx >=11.0 + license: Apache-2.0 WITH LLVM-exception + license_family: Apache + size: 568692 + timestamp: 1756698505599 +- conda: https://prefix.dev/conda-forge/linux-64/libdeflate-1.24-h86f0d12_0.conda + sha256: 8420748ea1cc5f18ecc5068b4f24c7a023cc9b20971c99c824ba10641fb95ddf + md5: 64f0c503da58ec25ebd359e4d990afa8 + depends: + - __glibc >=2.17,<3.0.a0 + - libgcc >=13 + license: MIT + license_family: MIT + size: 72573 + timestamp: 1747040452262 +- conda: https://prefix.dev/conda-forge/linux-aarch64/libdeflate-1.24-he377734_0.conda + sha256: dd0e4baa983803227ec50457731d6f41258b90b3530f579b5d3151d5a98af191 + md5: f0b3d6494663b3385bf87fc206d7451a + depends: + - libgcc >=13 + license: MIT + license_family: MIT + size: 70417 + timestamp: 1747040440762 +- conda: https://prefix.dev/conda-forge/osx-arm64/libdeflate-1.24-h5773f1b_0.conda + sha256: 417d52b19c679e1881cce3f01cad3a2d542098fa2d6df5485aac40f01aede4d1 + md5: 3baf58a5a87e7c2f4d243ce2f8f2fe5c + depends: + - __osx >=11.0 + license: MIT + license_family: MIT + size: 54790 + timestamp: 1747040549847 +- conda: https://prefix.dev/conda-forge/win-64/libdeflate-1.24-h76ddb4d_0.conda + sha256: 65347475c0009078887ede77efe60db679ea06f2b56f7853b9310787fe5ad035 + md5: 08d988e266c6ae77e03d164b83786dc4 + depends: + - ucrt >=10.0.20348.0 + - vc >=14.2,<15 + - vc14_runtime >=14.29.30139 + license: MIT + license_family: MIT + size: 156292 + timestamp: 1747040812624 +- conda: https://prefix.dev/conda-forge/linux-64/libdrm-2.4.125-hb9d3cd8_0.conda + sha256: f53458db897b93b4a81a6dbfd7915ed8fa4a54951f97c698dde6faa028aadfd2 + md5: 4c0ab57463117fbb8df85268415082f5 + depends: + - __glibc >=2.17,<3.0.a0 + - libgcc >=13 + - libpciaccess >=0.18,<0.19.0a0 + license: MIT + license_family: MIT + size: 246161 + timestamp: 1749904704373 +- conda: https://prefix.dev/conda-forge/linux-aarch64/libdrm-2.4.125-h86ecc28_0.conda + sha256: 4413fda35527cf7a746c5e386fa5406349c0948d51fc20f7896732795a369e5d + md5: c5e4a8dad08e393b3616651e963304e5 + depends: + - libgcc >=13 + - libpciaccess >=0.18,<0.19.0a0 + license: MIT + license_family: MIT + size: 252778 + timestamp: 1749904786465 +- conda: https://prefix.dev/conda-forge/linux-64/libedit-3.1.20250104-pl5321h7949ede_0.conda + sha256: d789471216e7aba3c184cd054ed61ce3f6dac6f87a50ec69291b9297f8c18724 + md5: c277e0a4d549b03ac1e9d6cbbe3d017b + depends: + - ncurses + - __glibc >=2.17,<3.0.a0 + - libgcc >=13 + - ncurses >=6.5,<7.0a0 + license: BSD-2-Clause + license_family: BSD + size: 134676 + timestamp: 1738479519902 +- conda: https://prefix.dev/conda-forge/linux-aarch64/libedit-3.1.20250104-pl5321h976ea20_0.conda + sha256: c0b27546aa3a23d47919226b3a1635fccdb4f24b94e72e206a751b33f46fd8d6 + md5: fb640d776fc92b682a14e001980825b1 + depends: + - ncurses + - libgcc >=13 + - ncurses >=6.5,<7.0a0 + license: BSD-2-Clause + license_family: BSD + size: 148125 + timestamp: 1738479808948 +- conda: https://prefix.dev/conda-forge/osx-arm64/libedit-3.1.20250104-pl5321hafb1f1b_0.conda + sha256: 66aa216a403de0bb0c1340a88d1a06adaff66bae2cfd196731aa24db9859d631 + md5: 44083d2d2c2025afca315c7a172eab2b + depends: + - ncurses + - __osx >=11.0 + - ncurses >=6.5,<7.0a0 + license: BSD-2-Clause + license_family: BSD + size: 107691 + timestamp: 1738479560845 +- conda: https://prefix.dev/conda-forge/linux-64/libegl-1.7.0-ha4b6fd6_2.conda + sha256: 7fd5408d359d05a969133e47af580183fbf38e2235b562193d427bb9dad79723 + md5: c151d5eb730e9b7480e6d48c0fc44048 + depends: + - __glibc >=2.17,<3.0.a0 + - libglvnd 1.7.0 ha4b6fd6_2 + license: LicenseRef-libglvnd + size: 44840 + timestamp: 1731330973553 +- conda: https://prefix.dev/conda-forge/linux-aarch64/libegl-1.7.0-hd24410f_2.conda + sha256: 8962abf38a58c235611ce356b9899f6caeb0352a8bce631b0bcc59352fda455e + md5: cf105bce884e4ef8c8ccdca9fe6695e7 + depends: + - libglvnd 1.7.0 hd24410f_2 + license: LicenseRef-libglvnd + size: 53551 + timestamp: 1731330990477 +- conda: https://prefix.dev/conda-forge/linux-64/libev-4.33-hd590300_2.conda + sha256: 1cd6048169fa0395af74ed5d8f1716e22c19a81a8a36f934c110ca3ad4dd27b4 + md5: 172bf1cd1ff8629f2b1179945ed45055 + depends: + - libgcc-ng >=12 + license: BSD-2-Clause + license_family: BSD + size: 112766 + timestamp: 1702146165126 +- conda: https://prefix.dev/conda-forge/linux-aarch64/libev-4.33-h31becfc_2.conda + sha256: 973af77e297f1955dd1f69c2cbdc5ab9dfc88388a5576cd152cda178af0fd006 + md5: a9a13cb143bbaa477b1ebaefbe47a302 + depends: + - libgcc-ng >=12 + license: BSD-2-Clause + license_family: BSD + size: 115123 + timestamp: 1702146237623 +- conda: https://prefix.dev/conda-forge/osx-arm64/libev-4.33-h93a5062_2.conda + sha256: 95cecb3902fbe0399c3a7e67a5bed1db813e5ab0e22f4023a5e0f722f2cc214f + md5: 36d33e440c31857372a72137f78bacf5 + license: BSD-2-Clause + license_family: BSD + size: 107458 + timestamp: 1702146414478 +- conda: https://prefix.dev/conda-forge/linux-64/libevent-2.1.12-hf998b51_1.conda + sha256: 2e14399d81fb348e9d231a82ca4d816bf855206923759b69ad006ba482764131 + md5: a1cfcc585f0c42bf8d5546bb1dfb668d + depends: + - libgcc-ng >=12 + - openssl >=3.1.1,<4.0a0 + license: BSD-3-Clause + license_family: BSD + size: 427426 + timestamp: 1685725977222 +- conda: https://prefix.dev/conda-forge/linux-aarch64/libevent-2.1.12-h4ba1bb4_1.conda + sha256: 01333cc7d6e6985dd5700b43660d90e9e58049182017fd24862088ecbe1458e4 + md5: 96ae6083cd1ac9f6bc81631ac835b317 + depends: + - libgcc-ng >=12 + - openssl >=3.1.1,<4.0a0 + license: BSD-3-Clause + license_family: BSD + size: 438992 + timestamp: 1685726046519 +- conda: https://prefix.dev/conda-forge/linux-64/libexpat-2.7.1-hecca717_0.conda + sha256: da2080da8f0288b95dd86765c801c6e166c4619b910b11f9a8446fb852438dc2 + md5: 4211416ecba1866fab0c6470986c22d6 + depends: + - __glibc >=2.17,<3.0.a0 + - libgcc >=14 + constrains: + - expat 2.7.1.* + license: MIT + license_family: MIT + size: 74811 + timestamp: 1752719572741 +- conda: https://prefix.dev/conda-forge/linux-aarch64/libexpat-2.7.1-hfae3067_0.conda + sha256: 378cabff44ea83ce4d9f9c59f47faa8d822561d39166608b3e65d1e06c927415 + md5: f75d19f3755461db2eb69401f5514f4c + depends: + - libgcc >=14 + constrains: + - expat 2.7.1.* + license: MIT + license_family: MIT + size: 74309 + timestamp: 1752719762749 +- conda: https://prefix.dev/conda-forge/osx-arm64/libexpat-2.7.1-hec049ff_0.conda + sha256: 8fbb17a56f51e7113ed511c5787e0dec0d4b10ef9df921c4fd1cccca0458f648 + md5: b1ca5f21335782f71a8bd69bdc093f67 + depends: + - __osx >=11.0 + constrains: + - expat 2.7.1.* + license: MIT + license_family: MIT + size: 65971 + timestamp: 1752719657566 +- conda: https://prefix.dev/conda-forge/win-64/libexpat-2.7.1-hac47afa_0.conda + sha256: 8432ca842bdf8073ccecf016ccc9140c41c7114dc4ec77ca754551c01f780845 + md5: 3608ffde260281fa641e70d6e34b1b96 + depends: + - ucrt >=10.0.20348.0 + - vc >=14.3,<15 + - vc14_runtime >=14.44.35208 + constrains: + - expat 2.7.1.* + license: MIT + license_family: MIT + size: 141322 + timestamp: 1752719767870 +- conda: https://prefix.dev/conda-forge/linux-64/libffi-3.4.6-h2dba641_1.conda + sha256: 764432d32db45466e87f10621db5b74363a9f847d2b8b1f9743746cd160f06ab + md5: ede4673863426c0883c0063d853bbd85 + depends: + - __glibc >=2.17,<3.0.a0 + - libgcc >=13 + license: MIT + license_family: MIT + size: 57433 + timestamp: 1743434498161 +- conda: https://prefix.dev/conda-forge/linux-aarch64/libffi-3.4.6-he21f813_1.conda + sha256: 608b8c8b0315423e524b48733d91edd43f95cb3354a765322ac306a858c2cd2e + md5: 15a131f30cae36e9a655ca81fee9a285 + depends: + - libgcc >=13 + license: MIT + license_family: MIT + size: 55847 + timestamp: 1743434586764 +- conda: https://prefix.dev/conda-forge/osx-arm64/libffi-3.4.6-h1da3d7d_1.conda + sha256: c6a530924a9b14e193ea9adfe92843de2a806d1b7dbfd341546ece9653129e60 + md5: c215a60c2935b517dcda8cad4705734d + depends: + - __osx >=11.0 + license: MIT + license_family: MIT + size: 39839 + timestamp: 1743434670405 +- conda: https://prefix.dev/conda-forge/win-64/libffi-3.4.6-h537db12_1.conda + sha256: d3b0b8812eab553d3464bbd68204f007f1ebadf96ce30eb0cbc5159f72e353f5 + md5: 85d8fa5e55ed8f93f874b3b23ed54ec6 + depends: + - ucrt >=10.0.20348.0 + - vc >=14.2,<15 + - vc14_runtime >=14.29.30139 + license: MIT + license_family: MIT + size: 44978 + timestamp: 1743435053850 +- conda: https://prefix.dev/conda-forge/linux-64/libflac-1.4.3-h59595ed_0.conda + sha256: 65908b75fa7003167b8a8f0001e11e58ed5b1ef5e98b96ab2ba66d7c1b822c7d + md5: ee48bf17cc83a00f59ca1494d5646869 + depends: + - gettext >=0.21.1,<1.0a0 + - libgcc-ng >=12 + - libogg 1.3.* + - libogg >=1.3.4,<1.4.0a0 + - libstdcxx-ng >=12 + license: BSD-3-Clause + license_family: BSD + size: 394383 + timestamp: 1687765514062 +- conda: https://prefix.dev/conda-forge/linux-aarch64/libflac-1.4.3-h2f0025b_0.conda + sha256: b54935360349d3418b0663d787f20b3cba0b7ce3fcdf3ba5e7ef02b884759049 + md5: 520b12eab32a92e19b1f239ac545ec03 + depends: + - gettext >=0.21.1,<1.0a0 + - libgcc-ng >=12 + - libogg 1.3.* + - libogg >=1.3.4,<1.4.0a0 + - libstdcxx-ng >=12 + license: BSD-3-Clause + license_family: BSD + size: 371550 + timestamp: 1687765491794 +- conda: https://prefix.dev/conda-forge/linux-64/libfreetype-2.13.3-ha770c72_1.conda + sha256: 7be9b3dac469fe3c6146ff24398b685804dfc7a1de37607b84abd076f57cc115 + md5: 51f5be229d83ecd401fb369ab96ae669 + depends: + - libfreetype6 >=2.13.3 + license: GPL-2.0-only OR FTL + size: 7693 + timestamp: 1745369988361 +- conda: https://prefix.dev/conda-forge/linux-aarch64/libfreetype-2.13.3-h8af1aa0_1.conda + sha256: c1bb6726b054b00ad509b9ace5e04f4bfe97e6fdaf5c4473c537e6c03d1f660b + md5: 2d4a1c3dcabb80b4a56d5c34bdacea08 + depends: + - libfreetype6 >=2.13.3 + license: GPL-2.0-only OR FTL + size: 7774 + timestamp: 1745370050680 +- conda: https://prefix.dev/conda-forge/osx-arm64/libfreetype-2.13.3-hce30654_1.conda + sha256: 1f8c16703fe333cdc2639f7cdaf677ac2120843453222944a7c6c85ec342903c + md5: d06282e08e55b752627a707d58779b8f + depends: + - libfreetype6 >=2.13.3 + license: GPL-2.0-only OR FTL + size: 7813 + timestamp: 1745370144506 +- conda: https://prefix.dev/conda-forge/win-64/libfreetype-2.13.3-h57928b3_1.conda + sha256: e5bc7d0a8d11b7b234da4fcd9d78f297f7dec3fec8bd06108fd3ac7b2722e32e + md5: 410ba2c8e7bdb278dfbb5d40220e39d2 + depends: + - libfreetype6 >=2.13.3 + license: GPL-2.0-only OR FTL + size: 8159 + timestamp: 1745370227235 +- conda: https://prefix.dev/conda-forge/linux-64/libfreetype6-2.13.3-h48d6fc4_1.conda + sha256: 7759bd5c31efe5fbc36a7a1f8ca5244c2eabdbeb8fc1bee4b99cf989f35c7d81 + md5: 3c255be50a506c50765a93a6644f32fe + depends: + - __glibc >=2.17,<3.0.a0 + - libgcc >=13 + - libpng >=1.6.47,<1.7.0a0 + - libzlib >=1.3.1,<2.0a0 + constrains: + - freetype >=2.13.3 + license: GPL-2.0-only OR FTL + size: 380134 + timestamp: 1745369987697 +- conda: https://prefix.dev/conda-forge/linux-aarch64/libfreetype6-2.13.3-he93130f_1.conda + sha256: 9f189f75bb79f6b97c48804e89b4f1db5dc3fba5729551e4cbd2deca98580635 + md5: 51eae9012d75b8f7e4b0adfe61a83330 + depends: + - libgcc >=13 + - libpng >=1.6.47,<1.7.0a0 + - libzlib >=1.3.1,<2.0a0 + constrains: + - freetype >=2.13.3 + license: GPL-2.0-only OR FTL + size: 408198 + timestamp: 1745370049871 +- conda: https://prefix.dev/conda-forge/osx-arm64/libfreetype6-2.13.3-h1d14073_1.conda + sha256: c278df049b1a071841aa0aca140a338d087ea594e07dcf8a871d2cfe0e330e75 + md5: b163d446c55872ef60530231879908b9 + depends: + - __osx >=11.0 + - libpng >=1.6.47,<1.7.0a0 + - libzlib >=1.3.1,<2.0a0 + constrains: + - freetype >=2.13.3 + license: GPL-2.0-only OR FTL + size: 333529 + timestamp: 1745370142848 +- conda: https://prefix.dev/conda-forge/win-64/libfreetype6-2.13.3-h0b5ce68_1.conda + sha256: 61308653e7758ff36f80a60d598054168a1389ddfbac46d7864c415fafe18e69 + md5: a84b7d1a13060a9372bea961a8131dbc + depends: + - libpng >=1.6.47,<1.7.0a0 + - libzlib >=1.3.1,<2.0a0 + - ucrt >=10.0.20348.0 + - vc >=14.2,<15 + - vc14_runtime >=14.29.30139 + constrains: + - freetype >=2.13.3 + license: GPL-2.0-only OR FTL + size: 337007 + timestamp: 1745370226578 +- conda: https://prefix.dev/conda-forge/linux-64/libgcc-15.1.0-h767d61c_4.conda + sha256: 144e35c1c2840f2dc202f6915fc41879c19eddbb8fa524e3ca4aa0d14018b26f + md5: f406dcbb2e7bef90d793e50e79a2882b + depends: + - __glibc >=2.17,<3.0.a0 + - _openmp_mutex >=4.5 + constrains: + - libgcc-ng ==15.1.0=*_4 + - libgomp 15.1.0 h767d61c_4 + license: GPL-3.0-only WITH GCC-exception-3.1 + license_family: GPL + size: 824153 + timestamp: 1753903866511 +- conda: https://prefix.dev/conda-forge/linux-aarch64/libgcc-15.1.0-he277a41_4.conda + sha256: bc8fe2729b1c6d1ea38f7079b92775fca3b39d5925da5370b02e358c77f5da66 + md5: 56f856e779238c93320d265cc20d0191 + depends: + - _openmp_mutex >=4.5 + constrains: + - libgcc-ng ==15.1.0=*_4 + - libgomp 15.1.0 he277a41_4 + license: GPL-3.0-only WITH GCC-exception-3.1 + license_family: GPL + size: 510641 + timestamp: 1753904775021 +- conda: https://prefix.dev/conda-forge/win-64/libgcc-15.1.0-h1383e82_4.conda + sha256: c169606e148f8df3375fdc9fe76ee3f44b8ffc2515e8131ede8f2d75cf7d6f0c + md5: 59fe76f0ff39b512ff889459b9fc3054 + depends: + - _openmp_mutex >=4.5 + - libwinpthread >=12.0.0.r4.gg4f2fc60ca + constrains: + - msys2-conda-epoch <0.0a0 + - libgcc-ng ==15.1.0=*_4 + - libgomp 15.1.0 h1383e82_4 + license: GPL-3.0-only WITH GCC-exception-3.1 + license_family: GPL + size: 668220 + timestamp: 1753904114303 +- conda: https://prefix.dev/conda-forge/linux-64/libgcc-ng-15.1.0-h69a702a_4.conda + sha256: 76ceac93ed98f208363d6e9c75011b0ff7b97b20f003f06461a619557e726637 + md5: 28771437ffcd9f3417c66012dc49a3be + depends: + - libgcc 15.1.0 h767d61c_4 + license: GPL-3.0-only WITH GCC-exception-3.1 + license_family: GPL + size: 29249 + timestamp: 1753903872571 +- conda: https://prefix.dev/conda-forge/linux-aarch64/libgcc-ng-15.1.0-he9431aa_4.conda + sha256: 007fe484d7721c5f6fad58dca88ad450092c28e4881e06537f882c0cb2535bc8 + md5: fddaeda6653bf30779a821819152d567 + depends: + - libgcc 15.1.0 he277a41_4 + license: GPL-3.0-only WITH GCC-exception-3.1 + license_family: GPL + size: 29319 + timestamp: 1753904781601 +- conda: https://prefix.dev/conda-forge/linux-64/libgcrypt-lib-1.11.1-hb9d3cd8_0.conda + sha256: dc9c7d7a6c0e6639deee6fde2efdc7e119e7739a6b229fa5f9049a449bae6109 + md5: 8504a291085c9fb809b66cabd5834307 + depends: + - __glibc >=2.17,<3.0.a0 + - libgcc >=13 + - libgpg-error >=1.55,<2.0a0 + license: LGPL-2.1-or-later + size: 590353 + timestamp: 1747060639058 +- conda: https://prefix.dev/conda-forge/linux-aarch64/libgcrypt-lib-1.11.1-h86ecc28_0.conda + sha256: 5c572886ae3bf8f55fbc8f18275317679b559a9dd00cf1f128d24057dc6de70e + md5: 50df370cbbbcfb4aa67556879e6643a1 + depends: + - libgcc >=13 + - libgpg-error >=1.55,<2.0a0 + license: LGPL-2.1-or-later + size: 652592 + timestamp: 1747060671875 +- conda: https://prefix.dev/conda-forge/linux-64/libgd-2.3.3-h6f5c62b_11.conda + sha256: 19e5be91445db119152217e8e8eec4fd0499d854acc7d8062044fb55a70971cd + md5: 68fc66282364981589ef36868b1a7c78 + depends: + - __glibc >=2.17,<3.0.a0 + - fontconfig >=2.15.0,<3.0a0 + - fonts-conda-ecosystem + - freetype >=2.12.1,<3.0a0 + - icu >=75.1,<76.0a0 + - libexpat >=2.6.4,<3.0a0 + - libgcc >=13 + - libjpeg-turbo >=3.0.0,<4.0a0 + - libpng >=1.6.45,<1.7.0a0 + - libtiff >=4.7.0,<4.8.0a0 + - libwebp-base >=1.5.0,<2.0a0 + - libzlib >=1.3.1,<2.0a0 + license: GD + license_family: BSD + size: 177082 + timestamp: 1737548051015 +- conda: https://prefix.dev/conda-forge/linux-aarch64/libgd-2.3.3-hc8d7b1d_11.conda + sha256: 7e199bb390f985b34aee38cdb1f0d166abc09ed44bd703a1b91a3c6cd9912d45 + md5: d256b0311b7a207a2c6b68d2b399f707 + depends: + - fontconfig >=2.15.0,<3.0a0 + - fonts-conda-ecosystem + - freetype >=2.12.1,<3.0a0 + - icu >=75.1,<76.0a0 + - libexpat >=2.6.4,<3.0a0 + - libgcc >=13 + - libjpeg-turbo >=3.0.0,<4.0a0 + - libpng >=1.6.45,<1.7.0a0 + - libtiff >=4.7.0,<4.8.0a0 + - libwebp-base >=1.5.0,<2.0a0 + - libzlib >=1.3.1,<2.0a0 + license: GD + license_family: BSD + size: 191033 + timestamp: 1737548098172 +- conda: https://prefix.dev/conda-forge/osx-arm64/libgd-2.3.3-hb2c3a21_11.conda + sha256: be038eb8dfe296509aee2df21184c72cb76285b0340448525664bc396aa6146d + md5: 4581aa3cfcd1a90967ed02d4a9f3db4b + depends: + - __osx >=11.0 + - fontconfig >=2.15.0,<3.0a0 + - fonts-conda-ecosystem + - freetype >=2.12.1,<3.0a0 + - icu >=75.1,<76.0a0 + - libexpat >=2.6.4,<3.0a0 + - libiconv >=1.17,<2.0a0 + - libjpeg-turbo >=3.0.0,<4.0a0 + - libpng >=1.6.45,<1.7.0a0 + - libtiff >=4.7.0,<4.8.0a0 + - libwebp-base >=1.5.0,<2.0a0 + - libzlib >=1.3.1,<2.0a0 + license: GD + license_family: BSD + size: 156868 + timestamp: 1737548290283 +- conda: https://prefix.dev/conda-forge/win-64/libgd-2.3.3-h7208af6_11.conda + sha256: 485a30af9e710feeda8d5b537b2db1e32e41f29ef24683bbe7deb6f7fd915825 + md5: 2070a706123b2d5e060b226a00e96488 + depends: + - fontconfig >=2.15.0,<3.0a0 + - fonts-conda-ecosystem + - freetype >=2.12.1,<3.0a0 + - icu >=75.1,<76.0a0 + - libexpat >=2.6.4,<3.0a0 + - libjpeg-turbo >=3.0.0,<4.0a0 + - libpng >=1.6.45,<1.7.0a0 + - libtiff >=4.7.0,<4.8.0a0 + - libwebp-base >=1.5.0,<2.0a0 + - libzlib >=1.3.1,<2.0a0 + - ucrt >=10.0.20348.0 + - vc >=14.2,<15 + - vc14_runtime >=14.29.30139 + - xorg-libxpm >=3.5.17,<4.0a0 + license: GD + license_family: BSD + size: 165838 + timestamp: 1737548342665 +- conda: https://prefix.dev/conda-forge/linux-64/libgettextpo-0.25.1-h3f43e3d_1.conda + sha256: 50a9e9815cf3f5bce1b8c5161c0899cc5b6c6052d6d73a4c27f749119e607100 + md5: 2f4de899028319b27eb7a4023be5dfd2 + depends: + - __glibc >=2.17,<3.0.a0 + - libgcc >=14 + - libiconv >=1.18,<2.0a0 + license: GPL-3.0-or-later + license_family: GPL + size: 188293 + timestamp: 1753342911214 +- conda: https://prefix.dev/conda-forge/linux-aarch64/libgettextpo-0.25.1-h5ad3122_0.conda + sha256: c8e5590166f4931a3ab01e444632f326e1bb00058c98078eb46b6e8968f1b1e9 + md5: ad7b109fbbff1407b1a7eeaa60d7086a + depends: + - libgcc >=13 + license: GPL-3.0-or-later + license_family: GPL + size: 225352 + timestamp: 1751557555903 +- conda: https://prefix.dev/conda-forge/osx-arm64/libgettextpo-0.25.1-h493aca8_0.conda + sha256: 3ba35ff26b3b9573b5df5b9bbec5c61476157ec3a9f12c698e2a9350cd4338fd + md5: 98acd9989d0d8d5914ccc86dceb6c6c2 + depends: + - __osx >=11.0 + - libiconv >=1.18,<2.0a0 + - libintl 0.25.1 h493aca8_0 + license: GPL-3.0-or-later + license_family: GPL + size: 183091 + timestamp: 1751558452316 +- conda: https://prefix.dev/conda-forge/win-64/libgettextpo-0.22.5-h5728263_3.conda + sha256: 6747bd29a0896b21ee1fe07bd212210475655354a3e8033c25b797e054ddd821 + md5: e46c142e2d2d9ccef31ad3d176b10fab + depends: + - libiconv >=1.17,<2.0a0 + - libintl 0.22.5 h5728263_3 + license: GPL-3.0-or-later + license_family: GPL + size: 171120 + timestamp: 1723629671164 +- conda: https://prefix.dev/conda-forge/linux-64/libgettextpo-devel-0.25.1-h3f43e3d_1.conda + sha256: c7ea10326fd450a2a21955987db09dde78c99956a91f6f05386756a7bfe7cc04 + md5: 3f7a43b3160ec0345c9535a9f0d7908e + depends: + - __glibc >=2.17,<3.0.a0 + - libgcc >=14 + - libgettextpo 0.25.1 h3f43e3d_1 + - libiconv >=1.18,<2.0a0 + license: GPL-3.0-or-later + license_family: GPL + size: 37407 + timestamp: 1753342931100 +- conda: https://prefix.dev/conda-forge/linux-aarch64/libgettextpo-devel-0.25.1-h5ad3122_0.conda + sha256: a26e1982d062daba5bdd3a90a2ef77b323803d21d27cf4e941135f07037d6649 + md5: 0d9d56bac6e4249da2bede0588ae1c1b + depends: + - libgcc >=13 + - libgettextpo 0.25.1 h5ad3122_0 + license: GPL-3.0-or-later + license_family: GPL + size: 37460 + timestamp: 1751557569909 +- conda: https://prefix.dev/conda-forge/osx-arm64/libgettextpo-devel-0.25.1-h493aca8_0.conda + sha256: 976941e18f879e5c1e67553f9657f7bb9d3935c89014ebfeafe89dcfba2de9e7 + md5: 91c2fdde1cb4a61b5cb7afa682af359e + depends: + - __osx >=11.0 + - libgettextpo 0.25.1 h493aca8_0 + - libiconv >=1.18,<2.0a0 + - libintl 0.25.1 h493aca8_0 + license: GPL-3.0-or-later + license_family: GPL + size: 37894 + timestamp: 1751558502415 +- conda: https://prefix.dev/conda-forge/linux-64/libgfortran-15.1.0-h69a702a_4.conda + sha256: 2fe41683928eb3c57066a60ec441e605a69ce703fc933d6d5167debfeba8a144 + md5: 53e876bc2d2648319e94c33c57b9ec74 + depends: + - libgfortran5 15.1.0 hcea5267_4 + constrains: + - libgfortran-ng ==15.1.0=*_4 + license: GPL-3.0-only WITH GCC-exception-3.1 + license_family: GPL + size: 29246 + timestamp: 1753903898593 +- conda: https://prefix.dev/conda-forge/linux-aarch64/libgfortran-15.1.0-he9431aa_4.conda + sha256: 9789f431182161a213c758a38955f597e23453fbd6561a8a19496bdd830cf449 + md5: 382bef5adfa973fbdf13025778bf42c8 + depends: + - libgfortran5 15.1.0 hbc25352_4 + constrains: + - libgfortran-ng ==15.1.0=*_4 + license: GPL-3.0-only WITH GCC-exception-3.1 + license_family: GPL + size: 29315 + timestamp: 1753904813932 +- conda: https://prefix.dev/conda-forge/osx-arm64/libgfortran-15.1.0-hfdf1602_0.conda + sha256: 9620b4ac9d32fe7eade02081cd60d6a359a927d42bb8e121bd16489acd3c4d8c + md5: e3b7dca2c631782ca1317a994dfe19ec + depends: + - libgfortran5 15.1.0 hb74de2c_0 + license: GPL-3.0-only WITH GCC-exception-3.1 + license_family: GPL + size: 133859 + timestamp: 1750183546047 +- conda: https://prefix.dev/conda-forge/linux-64/libgfortran5-15.1.0-hcea5267_4.conda + sha256: 3070e5e2681f7f2fb7af0a81b92213f9ab430838900da8b4f9b8cf998ddbdd84 + md5: 8a4ab7ff06e4db0be22485332666da0f + depends: + - __glibc >=2.17,<3.0.a0 + - libgcc >=15.1.0 + constrains: + - libgfortran 15.1.0 + license: GPL-3.0-only WITH GCC-exception-3.1 + license_family: GPL + size: 1564595 + timestamp: 1753903882088 +- conda: https://prefix.dev/conda-forge/linux-aarch64/libgfortran5-15.1.0-hbc25352_4.conda + sha256: 68514d8feb4314b77b734a25b45bbc9fcf2f3e964b41641db7049fcf30e8ea05 + md5: 15de59a896a538af7fafcd3d1f8c10c6 + depends: + - libgcc >=15.1.0 + constrains: + - libgfortran 15.1.0 + license: GPL-3.0-only WITH GCC-exception-3.1 + license_family: GPL + size: 1142433 + timestamp: 1753904792383 +- conda: https://prefix.dev/conda-forge/osx-arm64/libgfortran5-15.1.0-hb74de2c_0.conda + sha256: 44b8ce4536cc9a0e59c09ff404ef1b0120d6a91afc32799331d85268cbe42438 + md5: 8b158ccccd67a40218e12626a39065a1 + depends: + - llvm-openmp >=8.0.0 + constrains: + - libgfortran 15.1.0 + license: GPL-3.0-only WITH GCC-exception-3.1 + license_family: GPL + size: 758352 + timestamp: 1750182604206 +- conda: https://prefix.dev/conda-forge/linux-64/libgl-1.7.0-ha4b6fd6_2.conda + sha256: dc2752241fa3d9e40ce552c1942d0a4b5eeb93740c9723873f6fcf8d39ef8d2d + md5: 928b8be80851f5d8ffb016f9c81dae7a + depends: + - __glibc >=2.17,<3.0.a0 + - libglvnd 1.7.0 ha4b6fd6_2 + - libglx 1.7.0 ha4b6fd6_2 + license: LicenseRef-libglvnd + size: 134712 + timestamp: 1731330998354 +- conda: https://prefix.dev/conda-forge/linux-aarch64/libgl-1.7.0-hd24410f_2.conda + sha256: 3e954380f16255d1c8ae5da3bd3044d3576a0e1ac2e3c3ff2fe8f2f1ad2e467a + md5: 0d00176464ebb25af83d40736a2cd3bb + depends: + - libglvnd 1.7.0 hd24410f_2 + - libglx 1.7.0 hd24410f_2 + license: LicenseRef-libglvnd + size: 145442 + timestamp: 1731331005019 +- conda: https://prefix.dev/conda-forge/linux-64/libgl-devel-1.7.0-ha4b6fd6_2.conda + sha256: e281356c0975751f478c53e14f3efea6cd1e23c3069406d10708d6c409525260 + md5: 53e7cbb2beb03d69a478631e23e340e9 + depends: + - __glibc >=2.17,<3.0.a0 + - libgl 1.7.0 ha4b6fd6_2 + - libglx-devel 1.7.0 ha4b6fd6_2 + license: LicenseRef-libglvnd + size: 113911 + timestamp: 1731331012126 +- conda: https://prefix.dev/conda-forge/linux-aarch64/libgl-devel-1.7.0-hd24410f_2.conda + sha256: ec5c3125b38295bad8acc80f793b8ee217ccb194338d73858be278db50ea82f1 + md5: 5d8323dff6a93596fb6f985cf6e8521a + depends: + - libgl 1.7.0 hd24410f_2 + - libglx-devel 1.7.0 hd24410f_2 + license: LicenseRef-libglvnd + size: 113925 + timestamp: 1731331014056 +- conda: https://prefix.dev/conda-forge/linux-64/libglib-2.84.3-hf39c6af_0.conda + sha256: e1ad3d9ddaa18f95ff5d244587fd1a37aca6401707f85a37f7d9b5002fcf16d0 + md5: 467f23819b1ea2b89c3fc94d65082301 + depends: + - __glibc >=2.17,<3.0.a0 + - libffi >=3.4.6,<3.5.0a0 + - libgcc >=14 + - libiconv >=1.18,<2.0a0 + - libzlib >=1.3.1,<2.0a0 + - pcre2 >=10.45,<10.46.0a0 + constrains: + - glib 2.84.3 *_0 + license: LGPL-2.1-or-later + size: 3961899 + timestamp: 1754315006443 +- conda: https://prefix.dev/conda-forge/linux-aarch64/libglib-2.84.3-h75d4a95_0.conda + sha256: 4ae5e188db3f79e336690c745946f8ee5c02f18ab314017b533446ed458a295b + md5: cf67d7e3b0a89dd3240c7793310facc3 + depends: + - libffi >=3.4.6,<3.5.0a0 + - libgcc >=14 + - libiconv >=1.18,<2.0a0 + - libzlib >=1.3.1,<2.0a0 + - pcre2 >=10.45,<10.46.0a0 + constrains: + - glib 2.84.3 *_0 + license: LGPL-2.1-or-later + size: 4044548 + timestamp: 1754315018262 +- conda: https://prefix.dev/conda-forge/osx-arm64/libglib-2.84.3-h587fa63_0.conda + sha256: a30510a18f0b85a036f99c744750611b5f26b972cfa70cc9f130b9f42e5bbc18 + md5: bb98995c244b6038892fd59a694a93ed + depends: + - __osx >=11.0 + - libffi >=3.4.6,<3.5.0a0 + - libiconv >=1.18,<2.0a0 + - libintl >=0.25.1,<1.0a0 + - libzlib >=1.3.1,<2.0a0 + - pcre2 >=10.45,<10.46.0a0 + constrains: + - glib 2.84.3 *_0 + license: LGPL-2.1-or-later + size: 3661135 + timestamp: 1754315631978 +- conda: https://prefix.dev/conda-forge/win-64/libglib-2.84.3-h1c1036b_0.conda + sha256: bd322efaebc369e188a1dd93030325a40753a4c009e92c1f82ec481a20f0d232 + md5: 2bcc00752c158d4a70e1eaccbf6fe8ae + depends: + - libffi >=3.4.6,<3.5.0a0 + - libiconv >=1.18,<2.0a0 + - libintl >=0.22.5,<1.0a0 + - libzlib >=1.3.1,<2.0a0 + - pcre2 >=10.45,<10.46.0a0 + - ucrt >=10.0.20348.0 + - vc >=14.3,<15 + - vc14_runtime >=14.44.35208 + constrains: + - glib 2.84.3 *_0 + license: LGPL-2.1-or-later + size: 3826069 + timestamp: 1754315362939 +- conda: https://prefix.dev/conda-forge/linux-64/libglu-9.0.3-h5888daf_1.conda + sha256: a0105eb88f76073bbb30169312e797ed5449ebb4e964a756104d6e54633d17ef + md5: 8422fcc9e5e172c91e99aef703b3ce65 + depends: + - __glibc >=2.17,<3.0.a0 + - libgcc >=13 + - libopengl >=1.7.0,<2.0a0 + - libstdcxx >=13 + license: SGI-B-2.0 + size: 325262 + timestamp: 1748692137626 +- conda: https://prefix.dev/conda-forge/linux-aarch64/libglu-9.0.3-h5ad3122_1.conda + sha256: ddb72f17f6ec029069cddd2e489e63e371e75661cd2408509370508490bb23ad + md5: 4d836b60421894bf9a6c77c8ca36782c + depends: + - libgcc >=13 + - libopengl >=1.7.0,<2.0a0 + - libstdcxx >=13 + license: SGI-B-2.0 + size: 310655 + timestamp: 1748692200349 +- conda: https://prefix.dev/conda-forge/linux-64/libglvnd-1.7.0-ha4b6fd6_2.conda + sha256: 1175f8a7a0c68b7f81962699751bb6574e6f07db4c9f72825f978e3016f46850 + md5: 434ca7e50e40f4918ab701e3facd59a0 + depends: + - __glibc >=2.17,<3.0.a0 + license: LicenseRef-libglvnd + size: 132463 + timestamp: 1731330968309 +- conda: https://prefix.dev/conda-forge/linux-aarch64/libglvnd-1.7.0-hd24410f_2.conda + sha256: 57ec3898a923d4bcc064669e90e8abfc4d1d945a13639470ba5f3748bd3090da + md5: 9e115653741810778c9a915a2f8439e7 + license: LicenseRef-libglvnd + size: 152135 + timestamp: 1731330986070 +- conda: https://prefix.dev/conda-forge/linux-64/libglx-1.7.0-ha4b6fd6_2.conda + sha256: 2d35a679624a93ce5b3e9dd301fff92343db609b79f0363e6d0ceb3a6478bfa7 + md5: c8013e438185f33b13814c5c488acd5c + depends: + - __glibc >=2.17,<3.0.a0 + - libglvnd 1.7.0 ha4b6fd6_2 + - xorg-libx11 >=1.8.10,<2.0a0 + license: LicenseRef-libglvnd + size: 75504 + timestamp: 1731330988898 +- conda: https://prefix.dev/conda-forge/linux-aarch64/libglx-1.7.0-hd24410f_2.conda + sha256: 6591af640cb05a399fab47646025f8b1e1a06a0d4bbb4d2e320d6629b47a1c61 + md5: 1d4269e233636148696a67e2d30dad2a + depends: + - libglvnd 1.7.0 hd24410f_2 + - xorg-libx11 >=1.8.9,<2.0a0 + license: LicenseRef-libglvnd + size: 77736 + timestamp: 1731330998960 +- conda: https://prefix.dev/conda-forge/linux-64/libglx-devel-1.7.0-ha4b6fd6_2.conda + sha256: 0a930e0148ab6e61089bbcdba25a2e17ee383e7de82e7af10cc5c12c82c580f3 + md5: 27ac5ae872a21375d980bd4a6f99edf3 + depends: + - __glibc >=2.17,<3.0.a0 + - libglx 1.7.0 ha4b6fd6_2 + - xorg-libx11 >=1.8.10,<2.0a0 + - xorg-xorgproto + license: LicenseRef-libglvnd + size: 26388 + timestamp: 1731331003255 +- conda: https://prefix.dev/conda-forge/linux-aarch64/libglx-devel-1.7.0-hd24410f_2.conda + sha256: 4bc28ecc38f30ca1ac66a8fb6c5703f4d888381ec46d3938b7c3383210061ec5 + md5: 1f9ddbb175a63401662d1c6222cef6ff + depends: + - libglx 1.7.0 hd24410f_2 + - xorg-libx11 >=1.8.9,<2.0a0 + - xorg-xorgproto + license: LicenseRef-libglvnd + size: 26362 + timestamp: 1731331008489 +- conda: https://prefix.dev/conda-forge/linux-64/libgomp-15.1.0-h767d61c_4.conda + sha256: e0487a8fec78802ac04da0ac1139c3510992bc58a58cde66619dde3b363c2933 + md5: 3baf8976c96134738bba224e9ef6b1e5 + depends: + - __glibc >=2.17,<3.0.a0 + license: GPL-3.0-only WITH GCC-exception-3.1 + license_family: GPL + size: 447289 + timestamp: 1753903801049 +- conda: https://prefix.dev/conda-forge/linux-aarch64/libgomp-15.1.0-he277a41_4.conda + sha256: 48ece3926802831642267c69f886e92b6780f7ad8ea490bc7219b1b11e1ae3c1 + md5: 2ae9e35d98743bd474b774221f53bc3f + license: GPL-3.0-only WITH GCC-exception-3.1 + license_family: GPL + size: 450142 + timestamp: 1753904659271 +- conda: https://prefix.dev/conda-forge/win-64/libgomp-15.1.0-h1383e82_4.conda + sha256: e4ce8693bc3250b98cbc41cc53116fb27ad63eaf851560758e8ccaf0e9b137aa + md5: 78582ad1a764f4a0dca2f3027a46cc5a + depends: + - libwinpthread >=12.0.0.r4.gg4f2fc60ca + constrains: + - msys2-conda-epoch <0.0a0 + license: GPL-3.0-only WITH GCC-exception-3.1 + license_family: GPL + size: 535125 + timestamp: 1753904060607 +- conda: https://prefix.dev/conda-forge/linux-64/libgpg-error-1.55-h3f2d84a_0.conda + sha256: 697334de4786a1067ea86853e520c64dd72b11a05137f5b318d8a444007b5e60 + md5: 2bd47db5807daade8500ed7ca4c512a4 + depends: + - libstdcxx >=13 + - libgcc >=13 + - __glibc >=2.17,<3.0.a0 + - libgcc >=13 + license: LGPL-2.1-only + size: 312184 + timestamp: 1745575272035 +- conda: https://prefix.dev/conda-forge/linux-aarch64/libgpg-error-1.55-h5ad3122_0.conda + sha256: a744c0a137a084af7cee4a33de9bffb988182b5be4edb8a45d51d2a1efd3724c + md5: 39f742598d0f18c8e1cb01712bc03ee8 + depends: + - libgcc >=13 + - libstdcxx >=13 + - libgcc >=13 + license: LGPL-2.1-only + size: 327973 + timestamp: 1745575312848 +- conda: https://prefix.dev/conda-forge/linux-64/libhwloc-2.12.1-default_h3d81e11_1000.conda + sha256: eecaf76fdfc085d8fed4583b533c10cb7f4a6304be56031c43a107e01a56b7e2 + md5: d821210ab60be56dd27b5525ed18366d + depends: + - __glibc >=2.17,<3.0.a0 + - libgcc >=14 + - libstdcxx >=14 + - libxml2 >=2.13.8,<2.14.0a0 + license: BSD-3-Clause + license_family: BSD + size: 2450422 + timestamp: 1752761850672 +- conda: https://prefix.dev/conda-forge/linux-aarch64/libhwloc-2.12.1-default_h6f258fa_1000.conda + sha256: d25c10fd894ce6c5d3eba5667bef98be0e82d8e4d2ec20425d89a5baee715304 + md5: eea9ada077bda5f4a32889b9285af9c0 + depends: + - libgcc >=14 + - libstdcxx >=14 + - libxml2 >=2.13.8,<2.14.0a0 + license: BSD-3-Clause + license_family: BSD + size: 2468653 + timestamp: 1752761831524 +- conda: https://prefix.dev/conda-forge/osx-arm64/libhwloc-2.12.1-default_h88f92a7_1000.conda + sha256: 79a02778b06d9f22783050e5565c4497e30520cf2c8c29583c57b8e42068ae86 + md5: b32f2f83be560b0fb355a730e4057ec1 + depends: + - __osx >=11.0 + - libcxx >=19 + - libxml2 >=2.13.8,<2.14.0a0 + license: BSD-3-Clause + license_family: BSD + size: 2355380 + timestamp: 1752761771779 +- conda: https://prefix.dev/conda-forge/win-64/libhwloc-2.12.1-default_h88281d1_1000.conda + sha256: 2fb437b82912c74b4869b66c601d52c77bb3ee8cb4812eab346d379f1c823225 + md5: e6298294e7612eccf57376a0683ddc80 + depends: + - libwinpthread >=12.0.0.r4.gg4f2fc60ca + - libxml2 >=2.13.8,<2.14.0a0 + - ucrt >=10.0.20348.0 + - vc >=14.3,<15 + - vc14_runtime >=14.44.35208 + license: BSD-3-Clause + license_family: BSD + size: 2412139 + timestamp: 1752762145331 +- conda: https://prefix.dev/conda-forge/linux-64/libiconv-1.18-h3b78370_2.conda + sha256: c467851a7312765447155e071752d7bf9bf44d610a5687e32706f480aad2833f + md5: 915f5995e94f60e9a4826e0b0920ee88 + depends: + - __glibc >=2.17,<3.0.a0 + - libgcc >=14 + license: LGPL-2.1-only + size: 790176 + timestamp: 1754908768807 +- conda: https://prefix.dev/conda-forge/linux-aarch64/libiconv-1.18-h90929bb_2.conda + sha256: 1473451cd282b48d24515795a595801c9b65b567fe399d7e12d50b2d6cdb04d9 + md5: 5a86bf847b9b926f3a4f203339748d78 + depends: + - libgcc >=14 + license: LGPL-2.1-only + size: 791226 + timestamp: 1754910975665 +- conda: https://prefix.dev/conda-forge/osx-arm64/libiconv-1.18-h23cfdf5_2.conda + sha256: de0336e800b2af9a40bdd694b03870ac4a848161b35c8a2325704f123f185f03 + md5: 4d5a7445f0b25b6a3ddbb56e790f5251 + depends: + - __osx >=11.0 + license: LGPL-2.1-only + size: 750379 + timestamp: 1754909073836 +- conda: https://prefix.dev/conda-forge/win-64/libiconv-1.18-hc1393d2_2.conda + sha256: 0dcdb1a5f01863ac4e8ba006a8b0dc1a02d2221ec3319b5915a1863254d7efa7 + md5: 64571d1dd6cdcfa25d0664a5950fdaa2 + depends: + - ucrt >=10.0.20348.0 + - vc >=14.3,<15 + - vc14_runtime >=14.44.35208 + license: LGPL-2.1-only + size: 696926 + timestamp: 1754909290005 +- conda: https://prefix.dev/conda-forge/linux-64/libignition-cmake2-2.17.2-hac33072_0.conda + sha256: 4bace3310a094d54dbccd211c0c6b28152d4f8fe9d70c7eae33279eb1584242d + md5: ca93261530c18fcd1dc8ce9eb202f7e8 + depends: + - libgcc-ng >=12 + - libstdcxx-ng >=12 + license: Apache-2.0 + license_family: APACHE + size: 266880 + timestamp: 1715202041745 +- conda: https://prefix.dev/conda-forge/linux-aarch64/libignition-cmake2-2.17.2-h0a1ffab_0.conda + sha256: cd8714d9bd2bcce9846653369261ef260535df2b501c46a0b3c8fc6abd8c5b01 + md5: 85e2f1a8cfb7f9aa1973a9a45b5add63 + depends: + - libgcc-ng >=12 + - libstdcxx-ng >=12 + license: Apache-2.0 + license_family: APACHE + size: 268913 + timestamp: 1715202151197 +- conda: https://prefix.dev/conda-forge/osx-arm64/libignition-cmake2-2.17.2-h00cdb27_0.conda + sha256: 4b595a651c461ddde05bd3d01926b2358aa2a7ce9e132d20788c7aa285e397b9 + md5: e837cc6f1a0448d0359bfe090b207355 + depends: + - __osx >=11.0 + - libcxx >=16 + license: Apache-2.0 + license_family: APACHE + size: 266148 + timestamp: 1715202279380 +- conda: https://prefix.dev/conda-forge/win-64/libignition-cmake2-2.17.2-he0c23c2_0.conda + sha256: da07da4cfb00ec0b397653856fd044517553c5fb728bcbd4b88fd9f7601b2a30 + md5: 7933a1f11af1ec29173691038bd05e3e + depends: + - ucrt >=10.0.20348.0 + - vc >=14.2,<15 + - vc14_runtime >=14.29.30139 + license: Apache-2.0 + license_family: APACHE + size: 198245 + timestamp: 1715202357346 +- conda: https://prefix.dev/conda-forge/linux-64/libignition-math6-6.15.1-py311h4d89148_3.conda + sha256: f6a468ca94c2048dbd784d1076ee04cca143903089a979c340dd09c909c8dc24 + md5: 23a6174d065a5797337b82b9f6151d1e + depends: + - __glibc >=2.17,<3.0.a0 + - eigen + - libgcc >=14 + - libignition-cmake2 >=2.17.2,<3.0a0 + - libstdcxx >=14 + - pybind11-abi 11 + - python >=3.11,<3.12.0a0 + - python_abi 3.11.* *_cp311 + license: Apache-2.0 + license_family: APACHE + size: 1177506 + timestamp: 1752687230838 +- conda: https://prefix.dev/conda-forge/linux-aarch64/libignition-math6-6.15.1-py311h9dbc854_3.conda + sha256: 39b1aefaebac45be535cd1287d5d4b543ddc277ffda3e0e72647aeec2f85efb5 + md5: 4ded496052c9996653d6627b32950801 + depends: + - eigen + - libgcc >=14 + - libignition-cmake2 >=2.17.2,<3.0a0 + - libstdcxx >=14 + - pybind11-abi 11 + - python >=3.11,<3.12.0a0 + - python_abi 3.11.* *_cp311 + license: Apache-2.0 + license_family: APACHE + size: 1028876 + timestamp: 1752695754235 +- conda: https://prefix.dev/conda-forge/osx-arm64/libignition-math6-6.15.1-py311ha445fe1_3.conda + sha256: 2b0380af315ca748db31c645157210dd55c0c8210be79fed0733f5261c733ce5 + md5: 57fab0a3dbeac729067dc7309c52965e + depends: + - __osx >=11.0 + - eigen + - libcxx >=19 + - libignition-cmake2 >=2.17.2,<3.0a0 + - pybind11-abi 11 + - python >=3.11,<3.12.0a0 + - python >=3.11,<3.12.0a0 *_cpython + - python_abi 3.11.* *_cp311 + license: Apache-2.0 + license_family: APACHE + size: 1105934 + timestamp: 1752686855389 +- conda: https://prefix.dev/conda-forge/win-64/libignition-math6-6.15.1-py311hffe65ed_3.conda + sha256: 6d11fc7ba1841f0ba3e9d6901b66462d1400e9af46648cd9bf32f548e43d3ffe + md5: fae7de4a0382b95ee4d81c7eea3f9475 + depends: + - eigen + - libignition-cmake2 >=2.17.2,<3.0a0 + - pybind11-abi 11 + - python >=3.11,<3.12.0a0 + - python_abi 3.11.* *_cp311 + - ucrt >=10.0.20348.0 + - vc >=14.3,<15 + - vc14_runtime >=14.44.35208 + license: Apache-2.0 + license_family: APACHE + size: 750014 + timestamp: 1752686678892 +- conda: https://prefix.dev/conda-forge/osx-arm64/libintl-0.25.1-h493aca8_0.conda + sha256: 99d2cebcd8f84961b86784451b010f5f0a795ed1c08f1e7c76fbb3c22abf021a + md5: 5103f6a6b210a3912faf8d7db516918c + depends: + - __osx >=11.0 + - libiconv >=1.18,<2.0a0 + license: LGPL-2.1-or-later + size: 90957 + timestamp: 1751558394144 +- conda: https://prefix.dev/conda-forge/win-64/libintl-0.22.5-h5728263_3.conda + sha256: c7e4600f28bcada8ea81456a6530c2329312519efcf0c886030ada38976b0511 + md5: 2cf0cf76cc15d360dfa2f17fd6cf9772 + depends: + - libiconv >=1.17,<2.0a0 + license: LGPL-2.1-or-later + size: 95568 + timestamp: 1723629479451 +- conda: https://prefix.dev/conda-forge/osx-arm64/libintl-devel-0.25.1-h493aca8_0.conda + sha256: 5a446cb0501d87e0816da0bce524c60a053a4cf23c94dfd3e2b32a8499009e36 + md5: 5f9888e1cdbbbef52c8cf8b567393535 + depends: + - __osx >=11.0 + - libiconv >=1.18,<2.0a0 + - libintl 0.25.1 h493aca8_0 + license: LGPL-2.1-or-later + size: 40340 + timestamp: 1751558481257 +- conda: https://prefix.dev/conda-forge/win-64/libintl-devel-0.22.5-h5728263_3.conda + sha256: be1f3c48bc750bca7e68955d57180dfd826d6f9fa7eb32994f6cb61b813f9a6a + md5: 7537784e9e35399234d4007f45cdb744 + depends: + - libiconv >=1.17,<2.0a0 + - libintl 0.22.5 h5728263_3 + license: LGPL-2.1-or-later + size: 40746 + timestamp: 1723629745649 +- conda: https://prefix.dev/conda-forge/linux-64/libjpeg-turbo-3.1.0-hb9d3cd8_0.conda + sha256: 98b399287e27768bf79d48faba8a99a2289748c65cd342ca21033fab1860d4a4 + md5: 9fa334557db9f63da6c9285fd2a48638 + depends: + - __glibc >=2.17,<3.0.a0 + - libgcc >=13 + constrains: + - jpeg <0.0.0a + license: IJG AND BSD-3-Clause AND Zlib + size: 628947 + timestamp: 1745268527144 +- conda: https://prefix.dev/conda-forge/linux-aarch64/libjpeg-turbo-3.1.0-h86ecc28_0.conda + sha256: c7e4f017eeadcabb30e2a95dae95aad27271d633835e55e5dae23c932ae7efab + md5: a689388210d502364b79e8b19e7fa2cb + depends: + - libgcc >=13 + constrains: + - jpeg <0.0.0a + license: IJG AND BSD-3-Clause AND Zlib + size: 653054 + timestamp: 1745268199701 +- conda: https://prefix.dev/conda-forge/osx-arm64/libjpeg-turbo-3.1.0-h5505292_0.conda + sha256: 78df2574fa6aa5b6f5fc367c03192f8ddf8e27dc23641468d54e031ff560b9d4 + md5: 01caa4fbcaf0e6b08b3aef1151e91745 + depends: + - __osx >=11.0 + constrains: + - jpeg <0.0.0a + license: IJG AND BSD-3-Clause AND Zlib + size: 553624 + timestamp: 1745268405713 +- conda: https://prefix.dev/conda-forge/win-64/libjpeg-turbo-3.1.0-h2466b09_0.conda + sha256: e61b0adef3028b51251124e43eb6edf724c67c0f6736f1628b02511480ac354e + md5: 7c51d27540389de84852daa1cdb9c63c + depends: + - ucrt >=10.0.20348.0 + - vc >=14.2,<15 + - vc14_runtime >=14.29.30139 + constrains: + - jpeg <0.0.0a + license: IJG AND BSD-3-Clause AND Zlib + size: 838154 + timestamp: 1745268437136 +- conda: https://prefix.dev/conda-forge/linux-64/liblapack-3.9.0-34_h7ac8fdf_openblas.conda + build_number: 34 + sha256: 9c941d5da239f614b53065bc5f8a705899326c60c9f349d9fbd7bd78298f13ab + md5: f05a31377b4d9a8d8740f47d1e70b70e + depends: + - libblas 3.9.0 34_h59b9bed_openblas + constrains: + - liblapacke 3.9.0 34*_openblas + - libcblas 3.9.0 34*_openblas + - blas 2.134 openblas + license: BSD-3-Clause + license_family: BSD + size: 19324 + timestamp: 1754678435277 +- conda: https://prefix.dev/conda-forge/linux-aarch64/liblapack-3.9.0-34_h411afd4_openblas.conda + build_number: 34 + sha256: 365c688762c471abb42ead8bd265f98afcd6ea1a3a136b4d027383e61765d44a + md5: 69ba75c281b54b7849ae3e1b3c326383 + depends: + - libblas 3.9.0 34_h1a9f1db_openblas + constrains: + - liblapacke 3.9.0 34*_openblas + - libcblas 3.9.0 34*_openblas + - blas 2.134 openblas + license: BSD-3-Clause + license_family: BSD + size: 19386 + timestamp: 1754678765668 +- conda: https://prefix.dev/conda-forge/osx-arm64/liblapack-3.9.0-34_hc9a63f6_openblas.conda + build_number: 34 + sha256: 659c7cc2d7104c5fa33482d28a6ce085fd116ff5625a117b7dd45a3521bf8efc + md5: 94b13d05122e301de02842d021eea5fb + depends: + - libblas 3.9.0 34_h10e41b3_openblas + constrains: + - libcblas 3.9.0 34*_openblas + - blas 2.134 openblas + - liblapacke 3.9.0 34*_openblas + license: BSD-3-Clause + license_family: BSD + size: 19532 + timestamp: 1754678979401 +- conda: https://prefix.dev/conda-forge/win-64/liblapack-3.9.0-8_mkl.tar.bz2 + build_number: 8 + sha256: 9f542a821bc777aaf99948ef731aedd6d900c1085038db842237fda2a6f516d2 + md5: f3c618bd796a71eede50ffe29d25ad8c + depends: + - libblas 3.9.0 8_mkl + constrains: + - liblapacke 3.9.0 8_mkl + - blas * mkl + - libcblas 3.9.0 8_mkl + - mkl <2025 + license: BSD-3-Clause + license_family: BSD + size: 4072390 + timestamp: 1612394650961 +- conda: https://prefix.dev/conda-forge/linux-64/liblapacke-3.9.0-34_he2f377e_openblas.conda + build_number: 34 + sha256: b65de1cf1514571b495b9c23f5aca9f2f0fa0ea13701c8334a6fe2729ba969d4 + md5: 402ba41e529a58fe0cfee396a0f9ea6f + depends: + - libblas 3.9.0 34_h59b9bed_openblas + - libcblas 3.9.0 34_he106b2a_openblas + - liblapack 3.9.0 34_h7ac8fdf_openblas + constrains: + - blas 2.134 openblas + license: BSD-3-Clause + license_family: BSD + size: 19327 + timestamp: 1754678443747 +- conda: https://prefix.dev/conda-forge/linux-aarch64/liblapacke-3.9.0-34_hc659ca5_openblas.conda + build_number: 34 + sha256: 8a3e0d4ed3492faf644051e790c298760da9307456f929e0e42a5b9ea8bf8f21 + md5: 8a29435cbae5ab65968d7688c3141379 + depends: + - libblas 3.9.0 34_h1a9f1db_openblas + - libcblas 3.9.0 34_hab92f65_openblas + - liblapack 3.9.0 34_h411afd4_openblas + constrains: + - blas 2.134 openblas + license: BSD-3-Clause + license_family: BSD + size: 19413 + timestamp: 1754678774187 +- conda: https://prefix.dev/conda-forge/osx-arm64/liblapacke-3.9.0-34_hbb7bcf8_openblas.conda + build_number: 34 + sha256: f9a2a0d691c3368858cdb914004d40bfd8f95fc3390249d7d65a0b006695c954 + md5: 625ffdce42c646e0f28acf8de7a1bd97 + depends: + - libblas 3.9.0 34_h10e41b3_openblas + - libcblas 3.9.0 34_hb3479ef_openblas + - liblapack 3.9.0 34_hc9a63f6_openblas + constrains: + - blas 2.134 openblas + license: BSD-3-Clause + license_family: BSD + size: 19553 + timestamp: 1754678990555 +- conda: https://prefix.dev/conda-forge/win-64/liblapacke-3.9.0-8_mkl.tar.bz2 + build_number: 8 + sha256: 1e6bca90c1912bbcfd7838be244ec2e6b486adbe37abc1cd523079b74a48d7c3 + md5: e44e57d67449738ff4833ef2b6e0ed30 + depends: + - libblas 3.9.0 8_mkl + - libcblas 3.9.0 8_mkl + - liblapack 3.9.0 8_mkl + constrains: + - blas * mkl + - mkl <2025 + license: BSD-3-Clause + license_family: BSD + size: 4071868 + timestamp: 1612394686056 +- conda: https://prefix.dev/conda-forge/osx-arm64/libllvm17-17.0.6-hc4b4ae8_3.conda + sha256: 9b4da9f025bc946f5e1c8c104d7790b1af0c6e87eb03f29dea97fa1639ff83f2 + md5: 2a75227e917a3ec0a064155f1ed11b06 + depends: + - __osx >=11.0 + - libcxx >=18 + - libxml2 >=2.13.5,<2.14.0a0 + - libzlib >=1.3.1,<2.0a0 + - zstd >=1.5.6,<1.6.0a0 + license: Apache-2.0 WITH LLVM-exception + license_family: Apache + size: 24849265 + timestamp: 1737798197048 +- conda: https://prefix.dev/conda-forge/osx-arm64/libllvm19-19.1.7-hc4b4ae8_1.conda + sha256: 5a1d3e7505e8ce6055c3aa361ae660916122089a80abfb009d8d4c49238a7ea4 + md5: 020aeb16fc952ac441852d8eba2cf2fd + depends: + - __osx >=11.0 + - libcxx >=18 + - libxml2 >=2.13.5,<2.14.0a0 + - libzlib >=1.3.1,<2.0a0 + - zstd >=1.5.6,<1.6.0a0 + license: Apache-2.0 WITH LLVM-exception + license_family: Apache + size: 27012197 + timestamp: 1737781370567 +- conda: https://prefix.dev/conda-forge/linux-64/libllvm20-20.1.8-hecd9e04_0.conda + sha256: a6fddc510de09075f2b77735c64c7b9334cf5a26900da351779b275d9f9e55e1 + md5: 59a7b967b6ef5d63029b1712f8dcf661 + depends: + - __glibc >=2.17,<3.0.a0 + - libgcc >=14 + - libstdcxx >=14 + - libxml2 >=2.13.8,<2.14.0a0 + - libzlib >=1.3.1,<2.0a0 + - zstd >=1.5.7,<1.6.0a0 + license: Apache-2.0 WITH LLVM-exception + license_family: Apache + size: 43987020 + timestamp: 1752141980723 +- conda: https://prefix.dev/conda-forge/linux-aarch64/libllvm20-20.1.8-h2b567e5_0.conda + sha256: ff6d7cb1422ae11d796339b9daa17bfdb1983fcabc8f225f31647cd2579ed821 + md5: b2ae284ba64d978316177c9ab68e3da5 + depends: + - libgcc >=14 + - libstdcxx >=14 + - libxml2 >=2.13.8,<2.14.0a0 + - libzlib >=1.3.1,<2.0a0 + - zstd >=1.5.7,<1.6.0a0 + license: Apache-2.0 WITH LLVM-exception + license_family: Apache + size: 42763622 + timestamp: 1752138032512 +- conda: https://prefix.dev/conda-forge/osx-arm64/libllvm20-20.1.8-h846d351_0.conda + sha256: 116c793a85a766253b31217e7091aef59446c91901dd7bb6b3bb1135ab71d7cc + md5: 398cfbb49269f7d09a7f7b9c6142eea3 + depends: + - __osx >=11.0 + - libcxx >=19 + - libxml2 >=2.13.8,<2.14.0a0 + - libzlib >=1.3.1,<2.0a0 + - zstd >=1.5.7,<1.6.0a0 + license: Apache-2.0 WITH LLVM-exception + license_family: Apache + size: 28824455 + timestamp: 1752129534899 +- conda: https://prefix.dev/conda-forge/linux-64/liblzma-5.8.1-hb9d3cd8_2.conda + sha256: f2591c0069447bbe28d4d696b7fcb0c5bd0b4ac582769b89addbcf26fb3430d8 + md5: 1a580f7796c7bf6393fddb8bbbde58dc + depends: + - __glibc >=2.17,<3.0.a0 + - libgcc >=13 + constrains: + - xz 5.8.1.* + license: 0BSD + size: 112894 + timestamp: 1749230047870 +- conda: https://prefix.dev/conda-forge/linux-aarch64/liblzma-5.8.1-h86ecc28_2.conda + sha256: 498ea4b29155df69d7f20990a7028d75d91dbea24d04b2eb8a3d6ef328806849 + md5: 7d362346a479256857ab338588190da0 + depends: + - libgcc >=13 + constrains: + - xz 5.8.1.* + license: 0BSD + size: 125103 + timestamp: 1749232230009 +- conda: https://prefix.dev/conda-forge/osx-arm64/liblzma-5.8.1-h39f12f2_2.conda + sha256: 0cb92a9e026e7bd4842f410a5c5c665c89b2eb97794ffddba519a626b8ce7285 + md5: d6df911d4564d77c4374b02552cb17d1 + depends: + - __osx >=11.0 + constrains: + - xz 5.8.1.* + license: 0BSD + size: 92286 + timestamp: 1749230283517 +- conda: https://prefix.dev/conda-forge/win-64/liblzma-5.8.1-h2466b09_2.conda + sha256: 55764956eb9179b98de7cc0e55696f2eff8f7b83fc3ebff5e696ca358bca28cc + md5: c15148b2e18da456f5108ccb5e411446 + depends: + - ucrt >=10.0.20348.0 + - vc >=14.2,<15 + - vc14_runtime >=14.29.30139 + constrains: + - xz 5.8.1.* + license: 0BSD + size: 104935 + timestamp: 1749230611612 +- conda: https://prefix.dev/conda-forge/linux-64/liblzma-devel-5.8.1-hb9d3cd8_2.conda + sha256: 329e66330a8f9cbb6a8d5995005478188eb4ba8a6b6391affa849744f4968492 + md5: f61edadbb301530bd65a32646bd81552 + depends: + - __glibc >=2.17,<3.0.a0 + - libgcc >=13 + - liblzma 5.8.1 hb9d3cd8_2 + license: 0BSD + size: 439868 + timestamp: 1749230061968 +- conda: https://prefix.dev/conda-forge/linux-aarch64/liblzma-devel-5.8.1-h86ecc28_2.conda + sha256: 3bd4de89c0cf559a944408525460b3de5495b4c21fb92c831ff0cc96398a7272 + md5: 236d1ebc954a963b3430ce403fbb0896 + depends: + - libgcc >=13 + - liblzma 5.8.1 h86ecc28_2 + license: 0BSD + size: 440873 + timestamp: 1749232400775 +- conda: https://prefix.dev/conda-forge/osx-arm64/liblzma-devel-5.8.1-h39f12f2_2.conda + sha256: 974804430e24f0b00f3a48b67ec10c9f5441c9bb3d82cc0af51ba45b8a75a241 + md5: 1201137f1a5ec9556032ffc04dcdde8d + depends: + - __osx >=11.0 + - liblzma 5.8.1 h39f12f2_2 + license: 0BSD + size: 116244 + timestamp: 1749230297170 +- conda: https://prefix.dev/conda-forge/win-64/liblzma-devel-5.8.1-h2466b09_2.conda + sha256: 1ccff927a2d768403bad85e36ca3e931d96890adb4f503e1780c3412dd1e1298 + md5: 42c90c4941c59f1b9f8fab627ad8ae76 + depends: + - liblzma 5.8.1 h2466b09_2 + - ucrt >=10.0.20348.0 + - vc >=14.2,<15 + - vc14_runtime >=14.29.30139 + license: 0BSD + size: 129344 + timestamp: 1749230637001 +- conda: https://prefix.dev/conda-forge/linux-64/libnetcdf-4.9.2-nompi_h21f7587_118.conda + sha256: ad260036929255d8089f748db0dce193d0d588ad7f88c06027dd9d8662cc1cc6 + md5: 5f05af73150f62adab1492ab2d18d573 + depends: + - __glibc >=2.17,<3.0.a0 + - blosc >=1.21.6,<2.0a0 + - bzip2 >=1.0.8,<2.0a0 + - hdf4 >=4.2.15,<4.2.16.0a0 + - hdf5 >=1.14.6,<1.14.7.0a0 + - libaec >=1.1.4,<2.0a0 + - libcurl >=8.14.1,<9.0a0 + - libgcc >=14 + - libstdcxx >=14 + - libxml2 >=2.13.8,<2.14.0a0 + - libzip >=1.11.2,<2.0a0 + - libzlib >=1.3.1,<2.0a0 + - openssl >=3.5.1,<4.0a0 + - zlib + - zstd >=1.5.7,<1.6.0a0 + license: MIT + license_family: MIT + size: 844115 + timestamp: 1754055003755 +- conda: https://prefix.dev/conda-forge/linux-aarch64/libnetcdf-4.9.2-nompi_hb193ca5_118.conda + sha256: 016f9991ac2a9d87bd1852789458a8ec8e83575fb14407df892c92ff6866c77b + md5: 4343a5d9883201aaa63f7daee8c5d170 + depends: + - blosc >=1.21.6,<2.0a0 + - bzip2 >=1.0.8,<2.0a0 + - hdf4 >=4.2.15,<4.2.16.0a0 + - hdf5 >=1.14.6,<1.14.7.0a0 + - libaec >=1.1.4,<2.0a0 + - libcurl >=8.14.1,<9.0a0 + - libgcc >=14 + - libstdcxx >=14 + - libxml2 >=2.13.8,<2.14.0a0 + - libzip >=1.11.2,<2.0a0 + - libzlib >=1.3.1,<2.0a0 + - openssl >=3.5.1,<4.0a0 + - zlib + - zstd >=1.5.7,<1.6.0a0 + license: MIT + license_family: MIT + size: 867935 + timestamp: 1754055448646 +- conda: https://prefix.dev/conda-forge/osx-arm64/libnetcdf-4.9.2-nompi_h2d3d5cf_118.conda + sha256: e7ca7726e94ef56e96ef7e5a89b23971188b2b54e1b660ed1c200593cc0ae055 + md5: ed5b74ff627e6cb6d7ab1c3ef7e3baf8 + depends: + - __osx >=11.0 + - blosc >=1.21.6,<2.0a0 + - bzip2 >=1.0.8,<2.0a0 + - hdf4 >=4.2.15,<4.2.16.0a0 + - hdf5 >=1.14.6,<1.14.7.0a0 + - libaec >=1.1.4,<2.0a0 + - libcurl >=8.14.1,<9.0a0 + - libcxx >=19 + - libxml2 >=2.13.8,<2.14.0a0 + - libzip >=1.11.2,<2.0a0 + - libzlib >=1.3.1,<2.0a0 + - openssl >=3.5.1,<4.0a0 + - zlib + - zstd >=1.5.7,<1.6.0a0 + license: MIT + license_family: MIT + size: 683396 + timestamp: 1754055262589 +- conda: https://prefix.dev/conda-forge/win-64/libnetcdf-4.9.2-nompi_ha45073a_118.conda + sha256: f179694134c0d0ebc600f1ef0d6797c17a894fea8f089a91db6e7bc04e467b76 + md5: 54557b761dc20f53f504271208cd88c7 + depends: + - blosc >=1.21.6,<2.0a0 + - bzip2 >=1.0.8,<2.0a0 + - hdf4 >=4.2.15,<4.2.16.0a0 + - hdf5 >=1.14.6,<1.14.7.0a0 + - libaec >=1.1.4,<2.0a0 + - libcurl >=8.14.1,<9.0a0 + - libxml2 >=2.13.8,<2.14.0a0 + - libzip >=1.11.2,<2.0a0 + - libzlib >=1.3.1,<2.0a0 + - ucrt >=10.0.20348.0 + - vc >=14.3,<15 + - vc14_runtime >=14.44.35208 + - zlib + - zstd >=1.5.7,<1.6.0a0 + license: MIT + license_family: MIT + size: 626420 + timestamp: 1754055160171 +- conda: https://prefix.dev/conda-forge/linux-64/libnghttp2-1.64.0-h161d5f1_0.conda + sha256: b0f2b3695b13a989f75d8fd7f4778e1c7aabe3b36db83f0fe80b2cd812c0e975 + md5: 19e57602824042dfd0446292ef90488b + depends: + - __glibc >=2.17,<3.0.a0 + - c-ares >=1.32.3,<2.0a0 + - libev >=4.33,<4.34.0a0 + - libev >=4.33,<5.0a0 + - libgcc >=13 + - libstdcxx >=13 + - libzlib >=1.3.1,<2.0a0 + - openssl >=3.3.2,<4.0a0 + license: MIT + license_family: MIT + size: 647599 + timestamp: 1729571887612 +- conda: https://prefix.dev/conda-forge/linux-aarch64/libnghttp2-1.64.0-hc8609a4_0.conda + sha256: c093c6d370aadbf0409c20b6c54c488ee2f6fea976181919fcc63e87ee232673 + md5: f52c614fa214a8bedece9421c771670d + depends: + - c-ares >=1.32.3,<2.0a0 + - libev >=4.33,<4.34.0a0 + - libev >=4.33,<5.0a0 + - libgcc >=13 + - libstdcxx >=13 + - libzlib >=1.3.1,<2.0a0 + - openssl >=3.3.2,<4.0a0 + license: MIT + license_family: MIT + size: 714610 + timestamp: 1729571912479 +- conda: https://prefix.dev/conda-forge/osx-arm64/libnghttp2-1.64.0-h6d7220d_0.conda + sha256: 00cc685824f39f51be5233b54e19f45abd60de5d8847f1a56906f8936648b72f + md5: 3408c02539cee5f1141f9f11450b6a51 + depends: + - __osx >=11.0 + - c-ares >=1.34.2,<2.0a0 + - libcxx >=17 + - libev >=4.33,<4.34.0a0 + - libev >=4.33,<5.0a0 + - libzlib >=1.3.1,<2.0a0 + - openssl >=3.3.2,<4.0a0 + license: MIT + license_family: MIT + size: 566719 + timestamp: 1729572385640 +- conda: https://prefix.dev/conda-forge/linux-64/libnsl-2.0.1-hb9d3cd8_1.conda + sha256: 927fe72b054277cde6cb82597d0fcf6baf127dcbce2e0a9d8925a68f1265eef5 + md5: d864d34357c3b65a4b731f78c0801dc4 + depends: + - __glibc >=2.17,<3.0.a0 + - libgcc >=13 + license: LGPL-2.1-only + license_family: GPL + size: 33731 + timestamp: 1750274110928 +- conda: https://prefix.dev/conda-forge/linux-aarch64/libnsl-2.0.1-h86ecc28_1.conda + sha256: c0dc4d84198e3eef1f37321299e48e2754ca83fd12e6284754e3cb231357c3a5 + md5: d5d58b2dc3e57073fe22303f5fed4db7 + depends: + - libgcc >=13 + license: LGPL-2.1-only + license_family: GPL + size: 34831 + timestamp: 1750274211 +- conda: https://prefix.dev/conda-forge/linux-64/libntlm-1.8-hb9d3cd8_0.conda + sha256: 3b3f19ced060013c2dd99d9d46403be6d319d4601814c772a3472fe2955612b0 + md5: 7c7927b404672409d9917d49bff5f2d6 + depends: + - __glibc >=2.17,<3.0.a0 + - libgcc >=13 + license: LGPL-2.1-or-later + size: 33418 + timestamp: 1734670021371 +- conda: https://prefix.dev/conda-forge/linux-aarch64/libntlm-1.4-hf897c2e_1002.tar.bz2 + sha256: 0e303d7a8845391bd1634efb65dc9d9b82b5608ebeb32fb77a56d1ed696d2eee + md5: 835c7c4137821de5c309f4266a51ba89 + depends: + - libgcc-ng >=9.3.0 + license: LGPL-2.1-or-later + size: 39449 + timestamp: 1609781865660 +- conda: https://prefix.dev/conda-forge/osx-arm64/libntlm-1.8-h5505292_0.conda + sha256: ea8c680924d957e12270dca549620327d5e986f23c4bd5f45627167ca6ef7a3b + md5: c90c1d3bd778f5ec0d4bb4ef36cbd5b6 + depends: + - __osx >=11.0 + license: LGPL-2.1-or-later + size: 31099 + timestamp: 1734670168822 +- conda: https://prefix.dev/conda-forge/linux-64/libogg-1.3.5-hd0c01bc_1.conda + sha256: ffb066ddf2e76953f92e06677021c73c85536098f1c21fcd15360dbc859e22e4 + md5: 68e52064ed3897463c0e958ab5c8f91b + depends: + - libgcc >=13 + - __glibc >=2.17,<3.0.a0 + license: BSD-3-Clause + license_family: BSD + size: 218500 + timestamp: 1745825989535 +- conda: https://prefix.dev/conda-forge/linux-aarch64/libogg-1.3.5-h86ecc28_1.conda + sha256: 2c1b7c59badc2fd6c19b6926eabfce906c996068d38c2972bd1cfbe943c07420 + md5: 319df383ae401c40970ee4e9bc836c7a + depends: + - libgcc >=13 + license: BSD-3-Clause + license_family: BSD + size: 220653 + timestamp: 1745826021156 +- conda: https://prefix.dev/conda-forge/osx-arm64/libogg-1.3.5-h48c0fde_1.conda + sha256: 28bd1fe20fe43da105da41b95ac201e95a1616126f287985df8e86ddebd1c3d8 + md5: 29b8b11f6d7e6bd0e76c029dcf9dd024 + depends: + - __osx >=11.0 + license: BSD-3-Clause + license_family: BSD + size: 216719 + timestamp: 1745826006052 +- conda: https://prefix.dev/conda-forge/win-64/libogg-1.3.5-h2466b09_1.conda + sha256: c63e5fb169dbd192aacdcee6e37235407f106b8ca9c9036942a25e0366cbc73c + md5: b67ed8c9ca072695ff482e50d888a523 + depends: + - vc >=14.2,<15 + - vc14_runtime >=14.29.30139 + - ucrt >=10.0.20348.0 + - vc >=14.2,<15 + - vc14_runtime >=14.29.30139 + - ucrt >=10.0.20348.0 + license: BSD-3-Clause + license_family: BSD + size: 35040 + timestamp: 1745826086628 +- conda: https://prefix.dev/conda-forge/linux-64/libopenblas-0.3.30-pthreads_h94d23a6_2.conda + sha256: 1b51d1f96e751dc945cc06f79caa91833b0c3326efe24e9b506bd64ef49fc9b0 + md5: dfc5aae7b043d9f56ba99514d5e60625 + depends: + - __glibc >=2.17,<3.0.a0 + - libgcc >=14 + - libgfortran + - libgfortran5 >=14.3.0 + constrains: + - openblas >=0.3.30,<0.3.31.0a0 + license: BSD-3-Clause + license_family: BSD + size: 5938936 + timestamp: 1755474342204 +- conda: https://prefix.dev/conda-forge/linux-aarch64/libopenblas-0.3.30-pthreads_h9d3fd7e_2.conda + sha256: 423cc9181b1518db5eb460d3055ac0ff5eb6d35f4f3d47688f914e88653230b3 + md5: e0aa272c985b320f56dd38c31eefde0e + depends: + - libgcc >=14 + - libgfortran + - libgfortran5 >=14.3.0 + constrains: + - openblas >=0.3.30,<0.3.31.0a0 + license: BSD-3-Clause + license_family: BSD + size: 4961416 + timestamp: 1755472037732 +- conda: https://prefix.dev/conda-forge/osx-arm64/libopenblas-0.3.30-openmp_h60d53f8_2.conda + sha256: 7b8551a4d21cf0b19f9a162f1f283a201b17f1bd5a6579abbd0d004788c511fa + md5: d004259fd8d3d2798b16299d6ad6c9e9 + depends: + - __osx >=11.0 + - libgfortran + - libgfortran5 >=14.3.0 + - llvm-openmp >=19.1.7 + constrains: + - openblas >=0.3.30,<0.3.31.0a0 + license: BSD-3-Clause + license_family: BSD + size: 4284696 + timestamp: 1755471861128 +- conda: https://prefix.dev/conda-forge/linux-64/libopencv-4.11.0-qt6_py311h58ab8b7_609.conda + sha256: f2934a94ce595ca59b25547a6fc14eb39675e3c61f66aea8a29bfdbd183926f1 + md5: 1c22ccb36269f9b4a21b8039fab35271 + depends: + - __glibc >=2.17,<3.0.a0 + - _openmp_mutex >=4.5 + - ffmpeg >=7.1.1,<8.0a0 + - harfbuzz >=11.0.1 + - hdf5 >=1.14.6,<1.14.7.0a0 + - jasper >=4.2.5,<5.0a0 + - libasprintf >=0.24.1,<1.0a0 + - libavif16 >=1.3.0,<2.0a0 + - libcblas >=3.9.0,<4.0a0 + - libegl >=1.7.0,<2.0a0 + - libexpat >=2.7.0,<3.0a0 + - libfreetype >=2.13.3 + - libfreetype6 >=2.13.3 + - libgcc >=13 + - libgettextpo >=0.24.1,<1.0a0 + - libgl >=1.7.0,<2.0a0 + - libglib >=2.84.2,<3.0a0 + - libiconv >=1.18,<2.0a0 + - libjpeg-turbo >=3.1.0,<4.0a0 + - liblapack >=3.9.0,<4.0a0 + - liblapacke >=3.9.0,<4.0a0 + - libopenvino >=2025.0.0,<2025.0.1.0a0 + - libopenvino-auto-batch-plugin >=2025.0.0,<2025.0.1.0a0 + - libopenvino-auto-plugin >=2025.0.0,<2025.0.1.0a0 + - libopenvino-hetero-plugin >=2025.0.0,<2025.0.1.0a0 + - libopenvino-intel-cpu-plugin >=2025.0.0,<2025.0.1.0a0 + - libopenvino-intel-gpu-plugin >=2025.0.0,<2025.0.1.0a0 + - libopenvino-intel-npu-plugin >=2025.0.0,<2025.0.1.0a0 + - libopenvino-ir-frontend >=2025.0.0,<2025.0.1.0a0 + - libopenvino-onnx-frontend >=2025.0.0,<2025.0.1.0a0 + - libopenvino-paddle-frontend >=2025.0.0,<2025.0.1.0a0 + - libopenvino-pytorch-frontend >=2025.0.0,<2025.0.1.0a0 + - libopenvino-tensorflow-frontend >=2025.0.0,<2025.0.1.0a0 + - libopenvino-tensorflow-lite-frontend >=2025.0.0,<2025.0.1.0a0 + - libpng >=1.6.49,<1.7.0a0 + - libprotobuf >=5.29.3,<5.29.4.0a0 + - libstdcxx >=13 + - libtiff >=4.7.0,<4.8.0a0 + - libwebp-base >=1.5.0,<2.0a0 + - libzlib >=1.3.1,<2.0a0 + - numpy >=1.23,<3 + - openexr >=3.3.4,<3.4.0a0 + - qt6-main >=6.9.1,<6.10.0a0 + constrains: + - imath<3.2.0a0 + license: Apache-2.0 + license_family: Apache + size: 30820502 + timestamp: 1750898970159 +- conda: https://prefix.dev/conda-forge/linux-aarch64/libopencv-4.11.0-qt6_py311h9691740_609.conda + sha256: f7561d4274280deca6af32ec1f4911152f537fa21ad304e22a87a9a9bd7b9c4c + md5: d5af8388337b93d6f8e00cef81ded1a5 + depends: + - _openmp_mutex >=4.5 + - ffmpeg >=7.1.1,<8.0a0 + - harfbuzz >=11.0.1 + - hdf5 >=1.14.6,<1.14.7.0a0 + - jasper >=4.2.5,<5.0a0 + - libasprintf >=0.24.1,<1.0a0 + - libavif16 >=1.3.0,<2.0a0 + - libcblas >=3.9.0,<4.0a0 + - libegl >=1.7.0,<2.0a0 + - libexpat >=2.7.0,<3.0a0 + - libfreetype >=2.13.3 + - libfreetype6 >=2.13.3 + - libgcc >=13 + - libgettextpo >=0.24.1,<1.0a0 + - libgl >=1.7.0,<2.0a0 + - libglib >=2.84.2,<3.0a0 + - libiconv >=1.18,<2.0a0 + - libjpeg-turbo >=3.1.0,<4.0a0 + - liblapack >=3.9.0,<4.0a0 + - liblapacke >=3.9.0,<4.0a0 + - libopenvino >=2025.0.0,<2025.0.1.0a0 + - libopenvino-arm-cpu-plugin >=2025.0.0,<2025.0.1.0a0 + - libopenvino-auto-batch-plugin >=2025.0.0,<2025.0.1.0a0 + - libopenvino-auto-plugin >=2025.0.0,<2025.0.1.0a0 + - libopenvino-hetero-plugin >=2025.0.0,<2025.0.1.0a0 + - libopenvino-ir-frontend >=2025.0.0,<2025.0.1.0a0 + - libopenvino-onnx-frontend >=2025.0.0,<2025.0.1.0a0 + - libopenvino-paddle-frontend >=2025.0.0,<2025.0.1.0a0 + - libopenvino-pytorch-frontend >=2025.0.0,<2025.0.1.0a0 + - libopenvino-tensorflow-frontend >=2025.0.0,<2025.0.1.0a0 + - libopenvino-tensorflow-lite-frontend >=2025.0.0,<2025.0.1.0a0 + - libpng >=1.6.49,<1.7.0a0 + - libprotobuf >=5.29.3,<5.29.4.0a0 + - libstdcxx >=13 + - libtiff >=4.7.0,<4.8.0a0 + - libwebp-base >=1.5.0,<2.0a0 + - libzlib >=1.3.1,<2.0a0 + - numpy >=1.23,<3 + - openexr >=3.3.4,<3.4.0a0 + - python >=3.11,<3.12.0a0 *_cpython + - qt6-main >=6.9.1,<6.10.0a0 + constrains: + - imath<3.2.0a0 + license: Apache-2.0 + license_family: Apache + size: 20630336 + timestamp: 1750898566355 +- conda: https://prefix.dev/conda-forge/osx-arm64/libopencv-4.11.0-qt6_py311haa5a432_609.conda + sha256: 4fffde0243da2edaa69c76628575b6a4049e2833fa32b60a9a3f57ab18debabf + md5: b60e7e950b2bc1ce5bb27f7c639f5daf + depends: + - __osx >=11.0 + - ffmpeg >=7.1.1,<8.0a0 + - harfbuzz >=11.0.1 + - hdf5 >=1.14.6,<1.14.7.0a0 + - jasper >=4.2.5,<5.0a0 + - libasprintf >=0.24.1,<1.0a0 + - libavif16 >=1.3.0,<2.0a0 + - libcblas >=3.9.0,<4.0a0 + - libcxx >=18 + - libexpat >=2.7.0,<3.0a0 + - libfreetype >=2.13.3 + - libfreetype6 >=2.13.3 + - libgettextpo >=0.24.1,<1.0a0 + - libglib >=2.84.2,<3.0a0 + - libiconv >=1.18,<2.0a0 + - libintl >=0.24.1,<1.0a0 + - libjpeg-turbo >=3.1.0,<4.0a0 + - liblapack >=3.9.0,<4.0a0 + - liblapacke >=3.9.0,<4.0a0 + - libopenvino >=2025.0.0,<2025.0.1.0a0 + - libopenvino-arm-cpu-plugin >=2025.0.0,<2025.0.1.0a0 + - libopenvino-auto-batch-plugin >=2025.0.0,<2025.0.1.0a0 + - libopenvino-auto-plugin >=2025.0.0,<2025.0.1.0a0 + - libopenvino-hetero-plugin >=2025.0.0,<2025.0.1.0a0 + - libopenvino-ir-frontend >=2025.0.0,<2025.0.1.0a0 + - libopenvino-onnx-frontend >=2025.0.0,<2025.0.1.0a0 + - libopenvino-paddle-frontend >=2025.0.0,<2025.0.1.0a0 + - libopenvino-pytorch-frontend >=2025.0.0,<2025.0.1.0a0 + - libopenvino-tensorflow-frontend >=2025.0.0,<2025.0.1.0a0 + - libopenvino-tensorflow-lite-frontend >=2025.0.0,<2025.0.1.0a0 + - libpng >=1.6.49,<1.7.0a0 + - libprotobuf >=5.29.3,<5.29.4.0a0 + - libtiff >=4.7.0,<4.8.0a0 + - libwebp-base >=1.5.0,<2.0a0 + - libzlib >=1.3.1,<2.0a0 + - numpy >=1.23,<3 + - openexr >=3.3.4,<3.4.0a0 + - python >=3.11,<3.12.0a0 *_cpython + - qt6-main >=6.9.1,<6.10.0a0 + constrains: + - imath<3.2.0a0 + license: Apache-2.0 + license_family: Apache + size: 17405398 + timestamp: 1750898268807 +- conda: https://prefix.dev/conda-forge/win-64/libopencv-4.11.0-qt6_py311h2b71597_609.conda + sha256: dc5fc3eb04607ee7f8dfa908dc8814c34b45db3d6bcc1dd27afbf50f776adefa + md5: 58fe6399b674c3df611ecb6ecd1c9ae0 + depends: + - ffmpeg >=7.1.1,<8.0a0 + - harfbuzz >=11.0.1 + - hdf5 >=1.14.6,<1.14.7.0a0 + - jasper >=4.2.5,<5.0a0 + - libasprintf >=0.22.5,<1.0a0 + - libavif16 >=1.3.0,<2.0a0 + - libcblas >=3.9.0,<4.0a0 + - libexpat >=2.7.0,<3.0a0 + - libfreetype >=2.13.3 + - libfreetype6 >=2.13.3 + - libgettextpo >=0.22.5,<1.0a0 + - libglib >=2.84.2,<3.0a0 + - libintl >=0.22.5,<1.0a0 + - libjpeg-turbo >=3.1.0,<4.0a0 + - liblapack >=3.9.0,<4.0a0 + - liblapacke >=3.9.0,<4.0a0 + - libopenvino >=2025.0.0,<2025.0.1.0a0 + - libopenvino-auto-batch-plugin >=2025.0.0,<2025.0.1.0a0 + - libopenvino-auto-plugin >=2025.0.0,<2025.0.1.0a0 + - libopenvino-hetero-plugin >=2025.0.0,<2025.0.1.0a0 + - libopenvino-intel-cpu-plugin >=2025.0.0,<2025.0.1.0a0 + - libopenvino-intel-gpu-plugin >=2025.0.0,<2025.0.1.0a0 + - libopenvino-ir-frontend >=2025.0.0,<2025.0.1.0a0 + - libopenvino-onnx-frontend >=2025.0.0,<2025.0.1.0a0 + - libopenvino-paddle-frontend >=2025.0.0,<2025.0.1.0a0 + - libopenvino-pytorch-frontend >=2025.0.0,<2025.0.1.0a0 + - libopenvino-tensorflow-frontend >=2025.0.0,<2025.0.1.0a0 + - libopenvino-tensorflow-lite-frontend >=2025.0.0,<2025.0.1.0a0 + - libpng >=1.6.49,<1.7.0a0 + - libprotobuf >=5.29.3,<5.29.4.0a0 + - libtiff >=4.7.0,<4.8.0a0 + - libwebp-base >=1.5.0,<2.0a0 + - libzlib >=1.3.1,<2.0a0 + - numpy >=1.23,<3 + - openexr >=3.3.4,<3.4.0a0 + - qt6-main >=6.9.1,<6.10.0a0 + - ucrt >=10.0.20348.0 + - vc >=14.3,<15 + - vc14_runtime >=14.44.35208 + constrains: + - imath<3.2.0a0 + license: Apache-2.0 + license_family: Apache + size: 33100225 + timestamp: 1750900333488 +- conda: https://prefix.dev/conda-forge/linux-64/libopengl-1.7.0-ha4b6fd6_2.conda + sha256: 215086c108d80349e96051ad14131b751d17af3ed2cb5a34edd62fa89bfe8ead + md5: 7df50d44d4a14d6c31a2c54f2cd92157 + depends: + - __glibc >=2.17,<3.0.a0 + - libglvnd 1.7.0 ha4b6fd6_2 + license: LicenseRef-libglvnd + size: 50757 + timestamp: 1731330993524 +- conda: https://prefix.dev/conda-forge/linux-aarch64/libopengl-1.7.0-hd24410f_2.conda + sha256: e359df399fb2f308774237384414e318fac8870c1bf6481bdc67ae16e0bd2a02 + md5: cf9d12bfab305e48d095a4c79002c922 + depends: + - libglvnd 1.7.0 hd24410f_2 + license: LicenseRef-libglvnd + size: 56355 + timestamp: 1731331001820 +- conda: https://prefix.dev/conda-forge/linux-64/libopengl-devel-1.7.0-ha4b6fd6_2.conda + sha256: b347798eba61ce8d7a65372cf0cf6066c328e5717ab69ae251c6822e6f664f23 + md5: 75b039b1e51525f4572f828be8441970 + depends: + - __glibc >=2.17,<3.0.a0 + - libopengl 1.7.0 ha4b6fd6_2 + license: LicenseRef-libglvnd + size: 15460 + timestamp: 1731331007610 +- conda: https://prefix.dev/conda-forge/linux-aarch64/libopengl-devel-1.7.0-hd24410f_2.conda + sha256: 1b108b3ea9b0b9ae2b14638702ca391f89d9f2ffcd1772cfe704007221f6e9d9 + md5: c758a285b03a6d339911347f2b03728d + depends: + - libopengl 1.7.0 hd24410f_2 + license: LicenseRef-libglvnd + size: 15554 + timestamp: 1731331011229 +- conda: https://prefix.dev/conda-forge/linux-64/libopenvino-2025.0.0-hdc3f47d_3.conda + sha256: fe0e184141a3563d4c97134a1b7a60c66302cf0e2692d15d49c41382cdf61648 + md5: 3a88245058baa9d18ef4ea6df18ff63e + depends: + - __glibc >=2.17,<3.0.a0 + - libgcc >=13 + - libstdcxx >=13 + - pugixml >=1.15,<1.16.0a0 + - tbb >=2021.13.0 + size: 5698665 + timestamp: 1742046924817 +- conda: https://prefix.dev/conda-forge/linux-aarch64/libopenvino-2025.0.0-hd63d6c0_3.conda + sha256: d4e774708a073ba4a240fd2bc0f524d8b6d9fe68a24074bc7affe70c7fd9d8b7 + md5: 97277bfdfcc0dd59c0a74869fb31269a + depends: + - libgcc >=13 + - libstdcxx >=13 + - pugixml >=1.15,<1.16.0a0 + - tbb >=2021.13.0 + size: 5068959 + timestamp: 1742043279584 +- conda: https://prefix.dev/conda-forge/osx-arm64/libopenvino-2025.0.0-h3f17238_3.conda + sha256: 4c67becaa1cd8b5970d80daa85c637eac06adb52a060515e1179ebd1fae4c7b5 + md5: 219301646c04667a4513b1d5a360e903 + depends: + - __osx >=11.0 + - libcxx >=18 + - pugixml >=1.15,<1.16.0a0 + - tbb >=2021.13.0 + size: 4139593 + timestamp: 1742042352150 +- conda: https://prefix.dev/conda-forge/win-64/libopenvino-2025.0.0-hb1d9b14_3.conda + sha256: 739f3570dd9ff9261d3e8a1f965a81cb379d8cdaac1b3727284f01c3af3bae7b + md5: 265783a27455cbfd3634778d9b931ed7 + depends: + - pugixml >=1.15,<1.16.0a0 + - tbb >=2021.13.0 + - ucrt >=10.0.20348.0 + - vc >=14.2,<15 + - vc14_runtime >=14.29.30139 + size: 3506414 + timestamp: 1742051437791 +- conda: https://prefix.dev/conda-forge/linux-aarch64/libopenvino-arm-cpu-plugin-2025.0.0-hd63d6c0_3.conda + sha256: 1097bf9bfff8a9dade6b2a033b107aafed75d0dd2b4430a1754d8b89cb12f47d + md5: 387c0cad41f9e9cf330da02e9f7d4898 + depends: + - libgcc >=13 + - libopenvino 2025.0.0 hd63d6c0_3 + - libstdcxx >=13 + - pugixml >=1.15,<1.16.0a0 + - tbb >=2021.13.0 + size: 8652305 + timestamp: 1742043300690 +- conda: https://prefix.dev/conda-forge/osx-arm64/libopenvino-arm-cpu-plugin-2025.0.0-h3f17238_3.conda + sha256: b4ac5b146e0289e7f244ac0fcd8abdae0b6d657143f12e92e13289e781caeaf4 + md5: ec1181e2f403d8ef1056ffbd147dfc85 + depends: + - __osx >=11.0 + - libcxx >=18 + - libopenvino 2025.0.0 h3f17238_3 + - pugixml >=1.15,<1.16.0a0 + - tbb >=2021.13.0 + size: 7894815 + timestamp: 1742042384778 +- conda: https://prefix.dev/conda-forge/linux-64/libopenvino-auto-batch-plugin-2025.0.0-h4d9b6c2_3.conda + sha256: b4c61b3e8fc4d7090a94e3fd3936faf347eea07cac993417153dd99bd293c08d + md5: 2e349bafc75b212879bf70ef80e0d08c + depends: + - __glibc >=2.17,<3.0.a0 + - libgcc >=13 + - libopenvino 2025.0.0 hdc3f47d_3 + - libstdcxx >=13 + - tbb >=2021.13.0 + size: 111823 + timestamp: 1742046947746 +- conda: https://prefix.dev/conda-forge/linux-aarch64/libopenvino-auto-batch-plugin-2025.0.0-hf15766e_3.conda + sha256: 829a98d1dd0859fec5536419c9d7b1b99a612a91c629f173f6e9f05003e85749 + md5: 70a507a1ce0a13f5562953631deec2fd + depends: + - libgcc >=13 + - libopenvino 2025.0.0 hd63d6c0_3 + - libstdcxx >=13 + - tbb >=2021.13.0 + size: 109653 + timestamp: 1742043331132 +- conda: https://prefix.dev/conda-forge/osx-arm64/libopenvino-auto-batch-plugin-2025.0.0-h7f72211_3.conda + sha256: d8992f2b7b59cb9d0962fd05f5c10c29e60196663fc956f51d96f11350f2ec82 + md5: 0f17b7f12b079ff6e30b01d9e0009c7d + depends: + - __osx >=11.0 + - libcxx >=18 + - libopenvino 2025.0.0 h3f17238_3 + - tbb >=2021.13.0 + size: 104368 + timestamp: 1742042427434 +- conda: https://prefix.dev/conda-forge/win-64/libopenvino-auto-batch-plugin-2025.0.0-h04f32e0_3.conda + sha256: 0f0527efc2028f30022031e8815ccd281d693e1a3cf7634935dbe14804cccb62 + md5: 22588deedffa127c26d96f85412c1b73 + depends: + - libopenvino 2025.0.0 hb1d9b14_3 + - tbb >=2021.13.0 + - ucrt >=10.0.20348.0 + - vc >=14.2,<15 + - vc14_runtime >=14.29.30139 + size: 101175 + timestamp: 1742051488732 +- conda: https://prefix.dev/conda-forge/linux-64/libopenvino-auto-plugin-2025.0.0-h4d9b6c2_3.conda + sha256: ae72903e0718897b85aae2110d9bb1bfa9490b0496522e3735b65c771e7da0ea + md5: 74d074a3ac7af3378e16bfa6ff9cba30 + depends: + - __glibc >=2.17,<3.0.a0 + - libgcc >=13 + - libopenvino 2025.0.0 hdc3f47d_3 + - libstdcxx >=13 + - tbb >=2021.13.0 + size: 238973 + timestamp: 1742046961091 +- conda: https://prefix.dev/conda-forge/linux-aarch64/libopenvino-auto-plugin-2025.0.0-hf15766e_3.conda + sha256: af207ffa6f3a8a150620ca32c2996e941645689596ad2dc923115cef3ac1706d + md5: 8399dc85b397fdb3770613c4b10f5a49 + depends: + - libgcc >=13 + - libopenvino 2025.0.0 hd63d6c0_3 + - libstdcxx >=13 + - tbb >=2021.13.0 + size: 227098 + timestamp: 1742043342711 +- conda: https://prefix.dev/conda-forge/osx-arm64/libopenvino-auto-plugin-2025.0.0-h7f72211_3.conda + sha256: c1be7b09754b5a87fb1af78d5cafe172a5dff139c64cb0d40a13c9b78e9961e8 + md5: f9d8eaf30b47202e9307aa787ad4c39f + depends: + - __osx >=11.0 + - libcxx >=18 + - libopenvino 2025.0.0 h3f17238_3 + - tbb >=2021.13.0 + size: 208634 + timestamp: 1742042444660 +- conda: https://prefix.dev/conda-forge/win-64/libopenvino-auto-plugin-2025.0.0-h04f32e0_3.conda + sha256: 5cf3594d461aa98c0fe3d4840e1e8694ad51fff0e6868ace9d1813b6ed1d210b + md5: 05f7ca19e5ed62a1394ea8de850b3e39 + depends: + - libopenvino 2025.0.0 hb1d9b14_3 + - tbb >=2021.13.0 + - ucrt >=10.0.20348.0 + - vc >=14.2,<15 + - vc14_runtime >=14.29.30139 + size: 193549 + timestamp: 1742051539379 +- conda: https://prefix.dev/conda-forge/linux-64/libopenvino-hetero-plugin-2025.0.0-h981d57b_3.conda + sha256: b2c9ef97907f9c77817290bfb898897b476cc7ccf1737f0b1254437dda3d4903 + md5: 21f7997d68220d7356c1f80dc500bfad + depends: + - __glibc >=2.17,<3.0.a0 + - libgcc >=13 + - libopenvino 2025.0.0 hdc3f47d_3 + - libstdcxx >=13 + - pugixml >=1.15,<1.16.0a0 + size: 196083 + timestamp: 1742046974588 +- conda: https://prefix.dev/conda-forge/linux-aarch64/libopenvino-hetero-plugin-2025.0.0-ha8e9e04_3.conda + sha256: 69c8e3a060a10900f6d35df32264f48560e153fe370c6a2ee7fcff1b969629bb + md5: e12bff64bfd2ef9e282383afb3cccc13 + depends: + - libgcc >=13 + - libopenvino 2025.0.0 hd63d6c0_3 + - libstdcxx >=13 + - pugixml >=1.15,<1.16.0a0 + size: 187049 + timestamp: 1742043354710 +- conda: https://prefix.dev/conda-forge/osx-arm64/libopenvino-hetero-plugin-2025.0.0-h718ad69_3.conda + sha256: a6d29d0f288efcd453bfe31376f6d3fc6a908a3003c1dc02756a5dcc777c3566 + md5: 2d422a8742205a0b963126e074ac61df + depends: + - __osx >=11.0 + - libcxx >=18 + - libopenvino 2025.0.0 h3f17238_3 + - pugixml >=1.15,<1.16.0a0 + size: 174158 + timestamp: 1742042462067 +- conda: https://prefix.dev/conda-forge/win-64/libopenvino-hetero-plugin-2025.0.0-hb61b842_3.conda + sha256: f7f5ae68081da308644103775d38ea194347ea8b55363e8ff49da9fd2fd5dd47 + md5: 8bf1a9d0e65f2a58e0be816cb801c4db + depends: + - libopenvino 2025.0.0 hb1d9b14_3 + - pugixml >=1.15,<1.16.0a0 + - ucrt >=10.0.20348.0 + - vc >=14.2,<15 + - vc14_runtime >=14.29.30139 + size: 160679 + timestamp: 1742051582498 +- conda: https://prefix.dev/conda-forge/linux-64/libopenvino-intel-cpu-plugin-2025.0.0-hdc3f47d_3.conda + sha256: 9f6613906386a0c679c9a683ca97a5a2070111d9ada4f115c1806d921313e32d + md5: 3385f38d15c7aebcc3b453e4d8dfb0fe + depends: + - __glibc >=2.17,<3.0.a0 + - libgcc >=13 + - libopenvino 2025.0.0 hdc3f47d_3 + - libstdcxx >=13 + - pugixml >=1.15,<1.16.0a0 + - tbb >=2021.13.0 + size: 12419296 + timestamp: 1742046988488 +- conda: https://prefix.dev/conda-forge/win-64/libopenvino-intel-cpu-plugin-2025.0.0-hb1d9b14_3.conda + sha256: bca7df94a926c80494385f257a9d81f3e8e783386e5c8a75a28eb49cb2ddba90 + md5: f96e1b760d32fa17c4dc12978eace146 + depends: + - libopenvino 2025.0.0 hb1d9b14_3 + - pugixml >=1.15,<1.16.0a0 + - tbb >=2021.13.0 + - ucrt >=10.0.20348.0 + - vc >=14.2,<15 + - vc14_runtime >=14.29.30139 + size: 8739469 + timestamp: 1742051626525 +- conda: https://prefix.dev/conda-forge/linux-64/libopenvino-intel-gpu-plugin-2025.0.0-hdc3f47d_3.conda + sha256: 8430f87a3cc65d3ef1ec8f9bfa990f6fb635601ad34ce08d70209099ff03f39c + md5: f2d50e234edd843d9d695f7da34c7e96 + depends: + - __glibc >=2.17,<3.0.a0 + - libgcc >=13 + - libopenvino 2025.0.0 hdc3f47d_3 + - libstdcxx >=13 + - ocl-icd >=2.3.2,<3.0a0 + - pugixml >=1.15,<1.16.0a0 + - tbb >=2021.13.0 + size: 10119530 + timestamp: 1742047030958 +- conda: https://prefix.dev/conda-forge/win-64/libopenvino-intel-gpu-plugin-2025.0.0-hb1d9b14_3.conda + sha256: f8ebf9385485357dcfef937e574852568a3240b0e190f19417802692fccb7062 + md5: 37278c95cc7faa59a80b3886606e25c5 + depends: + - khronos-opencl-icd-loader >=2024.10.24 + - libopenvino 2025.0.0 hb1d9b14_3 + - pugixml >=1.15,<1.16.0a0 + - tbb >=2021.13.0 + - ucrt >=10.0.20348.0 + - vc >=14.2,<15 + - vc14_runtime >=14.29.30139 + size: 8117490 + timestamp: 1742051694854 +- conda: https://prefix.dev/conda-forge/linux-64/libopenvino-intel-npu-plugin-2025.0.0-hdc3f47d_3.conda + sha256: 37ec3e304bf14d2d7b7781c4b6a8b3a54deae90bc7275f6ae160589ef219bcef + md5: f632cad865436394eebd41c3afa2cda3 + depends: + - __glibc >=2.17,<3.0.a0 + - level-zero >=1.21.2,<2.0a0 + - libgcc >=13 + - libopenvino 2025.0.0 hdc3f47d_3 + - libstdcxx >=13 + - pugixml >=1.15,<1.16.0a0 + - tbb >=2021.13.0 + size: 1092544 + timestamp: 1742047065987 +- conda: https://prefix.dev/conda-forge/linux-64/libopenvino-ir-frontend-2025.0.0-h981d57b_3.conda + sha256: 268716b5c1858c1fddd51d63c7fcd7f3544ef04f221371ab6a2f9c579ca001e4 + md5: 94f25cc6fe70f507897abb8e61603023 + depends: + - __glibc >=2.17,<3.0.a0 + - libgcc >=13 + - libopenvino 2025.0.0 hdc3f47d_3 + - libstdcxx >=13 + - pugixml >=1.15,<1.16.0a0 + size: 206013 + timestamp: 1742047080381 +- conda: https://prefix.dev/conda-forge/linux-aarch64/libopenvino-ir-frontend-2025.0.0-ha8e9e04_3.conda + sha256: 3901f6922cfbac4de21622445d8a201862f46f502c95251bd2cba11eb67bf839 + md5: a3edb4a113c03ec3a3db3f89c7dabfb8 + depends: + - libgcc >=13 + - libopenvino 2025.0.0 hd63d6c0_3 + - libstdcxx >=13 + - pugixml >=1.15,<1.16.0a0 + size: 197852 + timestamp: 1742043366449 +- conda: https://prefix.dev/conda-forge/osx-arm64/libopenvino-ir-frontend-2025.0.0-h718ad69_3.conda + sha256: aae478ba876d0dc68688107d36773c912b236f89e9c969eed9d8d2257218d228 + md5: 373636c589b6c9e516cb1c5dee40e5a2 + depends: + - __osx >=11.0 + - libcxx >=18 + - libopenvino 2025.0.0 h3f17238_3 + - pugixml >=1.15,<1.16.0a0 + size: 174794 + timestamp: 1742042478544 +- conda: https://prefix.dev/conda-forge/win-64/libopenvino-ir-frontend-2025.0.0-hb61b842_3.conda + sha256: 93f38e934e3359f50052c3507bc35207de1f9b266283e38012662d962be1a3e8 + md5: c15601d32d79f5fc25341b97b1d66593 + depends: + - libopenvino 2025.0.0 hb1d9b14_3 + - pugixml >=1.15,<1.16.0a0 + - ucrt >=10.0.20348.0 + - vc >=14.2,<15 + - vc14_runtime >=14.29.30139 + size: 159598 + timestamp: 1742051755104 +- conda: https://prefix.dev/conda-forge/linux-64/libopenvino-onnx-frontend-2025.0.0-h0e684df_3.conda + sha256: 5ce66c01f6ea365a497f488e8eecea8930b6a016f9809db7f33b8a1ebbe5644e + md5: 7cd3272c3171c1d43ed1c2b3d6795269 + depends: + - __glibc >=2.17,<3.0.a0 + - libabseil * cxx17* + - libabseil >=20250127.0,<20250128.0a0 + - libgcc >=13 + - libopenvino 2025.0.0 hdc3f47d_3 + - libprotobuf >=5.29.3,<5.29.4.0a0 + - libstdcxx >=13 + size: 1668681 + timestamp: 1742047094228 +- conda: https://prefix.dev/conda-forge/linux-aarch64/libopenvino-onnx-frontend-2025.0.0-hd8f0270_3.conda + sha256: 72097ef28507f41ff371cb10540261b7cbd433a9932a9c42d073f4d56335bfbe + md5: cf46d328c1b254d16d18128999d31d61 + depends: + - libabseil * cxx17* + - libabseil >=20250127.0,<20250128.0a0 + - libgcc >=13 + - libopenvino 2025.0.0 hd63d6c0_3 + - libprotobuf >=5.29.3,<5.29.4.0a0 + - libstdcxx >=13 + size: 1466096 + timestamp: 1742043380485 +- conda: https://prefix.dev/conda-forge/osx-arm64/libopenvino-onnx-frontend-2025.0.0-h1ae5b81_3.conda + sha256: fea1dcfd136637f75a2c3044a1ee8af3ac9ab0ca89e5b44a4896f73267821f7a + md5: b086f7f97f8e6e1d1398e2f8f3c763ff + depends: + - __osx >=11.0 + - libabseil * cxx17* + - libabseil >=20250127.0,<20250128.0a0 + - libcxx >=18 + - libopenvino 2025.0.0 h3f17238_3 + - libprotobuf >=5.29.3,<5.29.4.0a0 + size: 1284556 + timestamp: 1742042510559 +- conda: https://prefix.dev/conda-forge/win-64/libopenvino-onnx-frontend-2025.0.0-hf9c6bd6_3.conda + sha256: 2afb3f8df012068b370efca994bd224bfa75e1228e8e7cea646e59f585d8c59a + md5: 75e66013b7b10ee5abbcfd988c97c81e + depends: + - libabseil * cxx17* + - libabseil >=20250127.0,<20250128.0a0 + - libopenvino 2025.0.0 hb1d9b14_3 + - libprotobuf >=5.29.3,<5.29.4.0a0 + - ucrt >=10.0.20348.0 + - vc >=14.2,<15 + - vc14_runtime >=14.29.30139 + size: 1037137 + timestamp: 1742051801359 +- conda: https://prefix.dev/conda-forge/linux-64/libopenvino-paddle-frontend-2025.0.0-h0e684df_3.conda + sha256: 826507ac4ea2d496bdbec02dd9e3c8ed2eab253daa9d7f9119a8bc05c516d026 + md5: 5b66cbc9965b429922b8e69cd4e464d7 + depends: + - __glibc >=2.17,<3.0.a0 + - libabseil * cxx17* + - libabseil >=20250127.0,<20250128.0a0 + - libgcc >=13 + - libopenvino 2025.0.0 hdc3f47d_3 + - libprotobuf >=5.29.3,<5.29.4.0a0 + - libstdcxx >=13 + size: 690226 + timestamp: 1742047109935 +- conda: https://prefix.dev/conda-forge/linux-aarch64/libopenvino-paddle-frontend-2025.0.0-hd8f0270_3.conda + sha256: b7666e63f7399e94599829b9b8901e1e6541d9d4d0c156359eb24846a434bcb7 + md5: 9d6043d6fae5342567173f949af80e4f + depends: + - libabseil * cxx17* + - libabseil >=20250127.0,<20250128.0a0 + - libgcc >=13 + - libopenvino 2025.0.0 hd63d6c0_3 + - libprotobuf >=5.29.3,<5.29.4.0a0 + - libstdcxx >=13 + size: 625570 + timestamp: 1742043394408 +- conda: https://prefix.dev/conda-forge/osx-arm64/libopenvino-paddle-frontend-2025.0.0-h1ae5b81_3.conda + sha256: efe7c26d5aa4c1728ff1ed3a4f6c2b506bc0593d306feefac067ab5497a6fa4b + md5: 734f72cda4d91f730a20832650ab9981 + depends: + - __osx >=11.0 + - libabseil * cxx17* + - libabseil >=20250127.0,<20250128.0a0 + - libcxx >=18 + - libopenvino 2025.0.0 h3f17238_3 + - libprotobuf >=5.29.3,<5.29.4.0a0 + size: 431639 + timestamp: 1742042534121 +- conda: https://prefix.dev/conda-forge/win-64/libopenvino-paddle-frontend-2025.0.0-hf9c6bd6_3.conda + sha256: aef47b7f002ca930eb97165c3bc14146a57daf642107a1030aaf0055dab88c3a + md5: a43f8073e100f8630df3b151c2fd9362 + depends: + - libabseil * cxx17* + - libabseil >=20250127.0,<20250128.0a0 + - libopenvino 2025.0.0 hb1d9b14_3 + - libprotobuf >=5.29.3,<5.29.4.0a0 + - ucrt >=10.0.20348.0 + - vc >=14.2,<15 + - vc14_runtime >=14.29.30139 + size: 427623 + timestamp: 1742051849619 +- conda: https://prefix.dev/conda-forge/linux-64/libopenvino-pytorch-frontend-2025.0.0-h5888daf_3.conda + sha256: fda07e70a23aac329be68ae488b790f548d687807f0e47bae7129df34f0adb5b + md5: a6ece96eff7f60b2559ba699156b0edf + depends: + - __glibc >=2.17,<3.0.a0 + - libgcc >=13 + - libopenvino 2025.0.0 hdc3f47d_3 + - libstdcxx >=13 + size: 1123885 + timestamp: 1742047125703 +- conda: https://prefix.dev/conda-forge/linux-aarch64/libopenvino-pytorch-frontend-2025.0.0-h5ad3122_3.conda + sha256: 174f630bdc3ffc6728fc83aefef15cf9a9a9fcd00712ce809df7a3b5c37dae99 + md5: d740a43f206611d7ab09488a6cb2f8eb + depends: + - libgcc >=13 + - libopenvino 2025.0.0 hd63d6c0_3 + - libstdcxx >=13 + size: 1016003 + timestamp: 1742043406713 +- conda: https://prefix.dev/conda-forge/osx-arm64/libopenvino-pytorch-frontend-2025.0.0-h286801f_3.conda + sha256: 36f58b4bd2f3d3be8eb54ddf5f7e03dafce4e46f14f80191e75325c409d8c92d + md5: eabf9e1db9ab6498c0d8f2a1210a34d7 + depends: + - __osx >=11.0 + - libcxx >=18 + - libopenvino 2025.0.0 h3f17238_3 + size: 789148 + timestamp: 1742042551199 +- conda: https://prefix.dev/conda-forge/win-64/libopenvino-pytorch-frontend-2025.0.0-he0c23c2_3.conda + sha256: ec4f3a2f057302dc2d15b60a3fdec9e65d4a0415fcd1ca9bd9409631a9c9a47c + md5: eefe7c5981902b97678d900458e4248b + depends: + - libopenvino 2025.0.0 hb1d9b14_3 + - ucrt >=10.0.20348.0 + - vc >=14.2,<15 + - vc14_runtime >=14.29.30139 + size: 693193 + timestamp: 1742051893216 +- conda: https://prefix.dev/conda-forge/linux-64/libopenvino-tensorflow-frontend-2025.0.0-h684f15b_3.conda + sha256: e02990fccd4676e362a026acff3d706b5839ebf6ae681d56a2903f62a63e03ef + md5: e1aeb108f4731db088782c8a20abf40a + depends: + - __glibc >=2.17,<3.0.a0 + - libabseil * cxx17* + - libabseil >=20250127.0,<20250128.0a0 + - libgcc >=13 + - libopenvino 2025.0.0 hdc3f47d_3 + - libprotobuf >=5.29.3,<5.29.4.0a0 + - libstdcxx >=13 + - snappy >=1.2.1,<1.3.0a0 + size: 1313789 + timestamp: 1742047140816 +- conda: https://prefix.dev/conda-forge/linux-aarch64/libopenvino-tensorflow-frontend-2025.0.0-h33e842c_3.conda + sha256: 437fc934eaa6282258ac2dc3e58d276b208079ee2440264cd19b67a9b6ff6827 + md5: 9083c0e4a30698bdbab0598d964e4540 + depends: + - libabseil * cxx17* + - libabseil >=20250127.0,<20250128.0a0 + - libgcc >=13 + - libopenvino 2025.0.0 hd63d6c0_3 + - libprotobuf >=5.29.3,<5.29.4.0a0 + - libstdcxx >=13 + - snappy >=1.2.1,<1.3.0a0 + size: 1204132 + timestamp: 1742043420133 +- conda: https://prefix.dev/conda-forge/osx-arm64/libopenvino-tensorflow-frontend-2025.0.0-heb6e3e1_3.conda + sha256: d463cd39d3d9165d6a42341cb8d61237613dd8b7e16f74a0a7d9bd2de3a236bf + md5: b3d717c7190032e55234d4f728053248 + depends: + - __osx >=11.0 + - libabseil * cxx17* + - libabseil >=20250127.0,<20250128.0a0 + - libcxx >=18 + - libopenvino 2025.0.0 h3f17238_3 + - libprotobuf >=5.29.3,<5.29.4.0a0 + - snappy >=1.2.1,<1.3.0a0 + size: 945306 + timestamp: 1742042598581 +- conda: https://prefix.dev/conda-forge/win-64/libopenvino-tensorflow-frontend-2025.0.0-hd51e7bd_3.conda + sha256: 9fbefd6ff948c27528d52bf4d84e0d7e4e366b3f0de540e538d3204e4f6a88f3 + md5: dee8acb258065e4144ffee81a9e746ad + depends: + - libabseil * cxx17* + - libabseil >=20250127.0,<20250128.0a0 + - libopenvino 2025.0.0 hb1d9b14_3 + - libprotobuf >=5.29.3,<5.29.4.0a0 + - snappy >=1.2.1,<1.3.0a0 + - ucrt >=10.0.20348.0 + - vc >=14.2,<15 + - vc14_runtime >=14.29.30139 + size: 884926 + timestamp: 1742051940351 +- conda: https://prefix.dev/conda-forge/linux-64/libopenvino-tensorflow-lite-frontend-2025.0.0-h5888daf_3.conda + sha256: 236569eb4d472d75412a3384c2aad92b006afed721feec23ca08730a25932da7 + md5: a6fe9c25b834988ac88651aff731dd31 + depends: + - __glibc >=2.17,<3.0.a0 + - libgcc >=13 + - libopenvino 2025.0.0 hdc3f47d_3 + - libstdcxx >=13 + size: 488142 + timestamp: 1742047155790 +- conda: https://prefix.dev/conda-forge/linux-aarch64/libopenvino-tensorflow-lite-frontend-2025.0.0-h5ad3122_3.conda + sha256: e1328d5e6ef41e112c1e79d06e2309b89da302806a5ec7b18cf7bfe47d321be6 + md5: bb1da88624792f47b7ac93ae0bb8206e + depends: + - libgcc >=13 + - libopenvino 2025.0.0 hd63d6c0_3 + - libstdcxx >=13 + size: 445050 + timestamp: 1742043433188 +- conda: https://prefix.dev/conda-forge/osx-arm64/libopenvino-tensorflow-lite-frontend-2025.0.0-h286801f_3.conda + sha256: d5d701d237db31b659154ee07534dc73c5cf08564fb7ee2b9407372c3f06ce24 + md5: 759a3781b101a619ac12e20723eda024 + depends: + - __osx >=11.0 + - libcxx >=18 + - libopenvino 2025.0.0 h3f17238_3 + size: 384569 + timestamp: 1742042618165 +- conda: https://prefix.dev/conda-forge/win-64/libopenvino-tensorflow-lite-frontend-2025.0.0-he0c23c2_3.conda + sha256: 55f7764ae0f7fce4b1b28f5fc9db963804f6c5612d162a689d375db8e37e54bd + md5: 392d4d2e9dc870aa63d2642448d8f3d9 + depends: + - libopenvino 2025.0.0 hb1d9b14_3 + - ucrt >=10.0.20348.0 + - vc >=14.2,<15 + - vc14_runtime >=14.29.30139 + size: 336816 + timestamp: 1742051984246 +- conda: https://prefix.dev/conda-forge/linux-64/libopus-1.5.2-hd0c01bc_0.conda + sha256: 786d43678d6d1dc5f88a6bad2d02830cfd5a0184e84a8caa45694049f0e3ea5f + md5: b64523fb87ac6f87f0790f324ad43046 + depends: + - libgcc >=13 + - __glibc >=2.17,<3.0.a0 + license: BSD-3-Clause + license_family: BSD + size: 312472 + timestamp: 1744330953241 +- conda: https://prefix.dev/conda-forge/linux-aarch64/libopus-1.5.2-h86ecc28_0.conda + sha256: c887543068308fb0fd50175183a3513f60cd8eb1defc23adc3c89769fde80d48 + md5: 44b2cfec6e1b94723a960f8a5e6206ae + depends: + - libgcc >=13 + license: BSD-3-Clause + license_family: BSD + size: 357115 + timestamp: 1744331282621 +- conda: https://prefix.dev/conda-forge/osx-arm64/libopus-1.5.2-h48c0fde_0.conda + sha256: 3a01094a59dd59d7a5a1c8e838c2ef3fccf9e098af575c38c26fceb56c6bb917 + md5: 882feb9903f31dca2942796a360d1007 + depends: + - __osx >=11.0 + license: BSD-3-Clause + license_family: BSD + size: 299498 + timestamp: 1744330988108 +- conda: https://prefix.dev/conda-forge/win-64/libopus-1.5.2-h2466b09_0.conda + sha256: 4c5e04de758450f9427a75095a54957de521b57234711374fac1cdc89fc7a9ca + md5: 67c18f2110921f6307a608050cd153f8 + depends: + - vc >=14.2,<15 + - vc14_runtime >=14.29.30139 + - ucrt >=10.0.20348.0 + - vc >=14.2,<15 + - vc14_runtime >=14.29.30139 + - ucrt >=10.0.20348.0 + license: BSD-3-Clause + license_family: BSD + size: 289268 + timestamp: 1744330990400 +- conda: https://prefix.dev/conda-forge/linux-64/libpciaccess-0.18-hb9d3cd8_0.conda + sha256: 0bd91de9b447a2991e666f284ae8c722ffb1d84acb594dbd0c031bd656fa32b2 + md5: 70e3400cbbfa03e96dcde7fc13e38c7b + depends: + - __glibc >=2.17,<3.0.a0 + - libgcc >=13 + license: MIT + license_family: MIT + size: 28424 + timestamp: 1749901812541 +- conda: https://prefix.dev/conda-forge/linux-aarch64/libpciaccess-0.18-h86ecc28_0.conda + sha256: 7641dfdfe9bda7069ae94379e9924892f0b6604c1a016a3f76b230433bb280f2 + md5: 5044e160c5306968d956c2a0a2a440d6 + depends: + - libgcc >=13 + license: MIT + license_family: MIT + size: 29512 + timestamp: 1749901899881 +- conda: https://prefix.dev/conda-forge/linux-64/libpng-1.6.50-h421ea60_1.conda + sha256: e75a2723000ce3a4b9fd9b9b9ce77553556c93e475a4657db6ed01abc02ea347 + md5: 7af8e91b0deb5f8e25d1a595dea79614 + depends: + - libgcc >=14 + - __glibc >=2.17,<3.0.a0 + - libzlib >=1.3.1,<2.0a0 + license: zlib-acknowledgement + size: 317390 + timestamp: 1753879899951 +- conda: https://prefix.dev/conda-forge/linux-aarch64/libpng-1.6.50-h1abf092_1.conda + sha256: e1effd7335ec101bb124f41a5f79fabb5e7b858eafe0f2db4401fb90c51505a7 + md5: ed42935ac048d73109163d653d9445a0 + depends: + - libgcc >=14 + - libzlib >=1.3.1,<2.0a0 + license: zlib-acknowledgement + size: 339168 + timestamp: 1753879915462 +- conda: https://prefix.dev/conda-forge/osx-arm64/libpng-1.6.50-h280e0eb_1.conda + sha256: a2e0240fb0c79668047b528976872307ea80cb330baf8bf6624ac2c6443449df + md5: 4d0f5ce02033286551a32208a5519884 + depends: + - __osx >=11.0 + - libzlib >=1.3.1,<2.0a0 + license: zlib-acknowledgement + size: 287056 + timestamp: 1753879907258 +- conda: https://prefix.dev/conda-forge/win-64/libpng-1.6.50-h7351971_1.conda + sha256: e84b041f91c94841cb9b97952ab7f058d001d4a15ed4ce226ec5fdb267cc0fa5 + md5: 3ae6e9f5c47c495ebeed95651518be61 + depends: + - vc >=14.3,<15 + - vc14_runtime >=14.44.35208 + - ucrt >=10.0.20348.0 + - vc >=14.3,<15 + - vc14_runtime >=14.44.35208 + - ucrt >=10.0.20348.0 + - libzlib >=1.3.1,<2.0a0 + license: zlib-acknowledgement + size: 382709 + timestamp: 1753879944850 +- conda: https://prefix.dev/conda-forge/linux-64/libpq-17.6-h3675c94_0.conda + sha256: 56ba34c2b3ae008a6623a59b14967366b296d884723ace95596cc986d31594a0 + md5: de8839c8dde1cba9335ac43d86e16d65 + depends: + - __glibc >=2.17,<3.0.a0 + - icu >=75.1,<76.0a0 + - krb5 >=1.21.3,<1.22.0a0 + - libgcc >=14 + - openldap >=2.6.10,<2.7.0a0 + - openssl >=3.5.2,<4.0a0 + license: PostgreSQL + size: 2673657 + timestamp: 1755257746801 +- conda: https://prefix.dev/conda-forge/linux-aarch64/libpq-17.6-hb4b1422_0.conda + sha256: bd55ad5f58cfa91ee3a89b50c6bc697e5f28c7200470b5aa81e19dab6e6dab5c + md5: 6c953844d0b9193795fc86b77bf17073 + depends: + - icu >=75.1,<76.0a0 + - krb5 >=1.21.3,<1.22.0a0 + - libgcc >=14 + - openldap >=2.6.10,<2.7.0a0 + - openssl >=3.5.2,<4.0a0 + license: PostgreSQL + size: 2812969 + timestamp: 1755257821396 +- conda: https://prefix.dev/conda-forge/osx-arm64/libpq-17.6-h6846fd6_0.conda + sha256: 63d2dc60e6acb856540ad7f10f852c8d5e5fb1510a55d0cff8077adff990162b + md5: c2422b904c9f50c9a33311907e231ae6 + depends: + - __osx >=11.0 + - icu >=75.1,<76.0a0 + - krb5 >=1.21.3,<1.22.0a0 + - openldap >=2.6.10,<2.7.0a0 + - openssl >=3.5.2,<4.0a0 + license: PostgreSQL + size: 2544570 + timestamp: 1755258413848 +- conda: https://prefix.dev/conda-forge/linux-64/libprotobuf-5.29.3-h7460b1f_2.conda + sha256: 674635c341a7838138a0698fc5704eab3b9a3a14f85e6f47a9d7568b8fa01a11 + md5: 25b96b519eb2ed19faeef1c12954e82b + depends: + - __glibc >=2.17,<3.0.a0 + - libabseil * cxx17* + - libabseil >=20250127.1,<20250128.0a0 + - libgcc >=14 + - libstdcxx >=14 + - libzlib >=1.3.1,<2.0a0 + license: BSD-3-Clause + license_family: BSD + size: 3475015 + timestamp: 1753801238063 +- conda: https://prefix.dev/conda-forge/linux-aarch64/libprotobuf-5.29.3-h9267e96_2.conda + sha256: 7be4115ef64df71774eb2e09a30a6a552d08bb35841c0395307965bf4f018a6b + md5: 467c4c27e67e484b8e60d5e44fad9160 + depends: + - libabseil * cxx17* + - libabseil >=20250127.1,<20250128.0a0 + - libgcc >=14 + - libstdcxx >=14 + - libzlib >=1.3.1,<2.0a0 + license: BSD-3-Clause + license_family: BSD + size: 3412146 + timestamp: 1753800967488 +- conda: https://prefix.dev/conda-forge/osx-arm64/libprotobuf-5.29.3-h6c9c1dd_2.conda + sha256: 8c6350afed4c78fc5fbab85b8f00af084586176fd5f6e4340f66d2e239d028dc + md5: cb31a05af57f76e19766ef8b30b3b6d3 + depends: + - __osx >=11.0 + - libabseil * cxx17* + - libabseil >=20250127.1,<20250128.0a0 + - libcxx >=19 + - libzlib >=1.3.1,<2.0a0 + license: BSD-3-Clause + license_family: BSD + size: 2637991 + timestamp: 1753800039682 +- conda: https://prefix.dev/conda-forge/win-64/libprotobuf-5.29.3-hd33f5f0_2.conda + sha256: f7e0361a5381a98d5c06fed675a064f3c40c9db45867af9482847bb798099d9e + md5: 0faeceb0375c86c2b6762962cac5a038 + depends: + - libabseil * cxx17* + - libabseil >=20250127.1,<20250128.0a0 + - libzlib >=1.3.1,<2.0a0 + - ucrt >=10.0.20348.0 + - vc >=14.3,<15 + - vc14_runtime >=14.44.35208 + license: BSD-3-Clause + license_family: BSD + size: 7029282 + timestamp: 1753801672011 +- conda: https://prefix.dev/conda-forge/linux-64/libraw-0.21.4-h9969a89_0.conda + sha256: 96bbd009b3d7f82e9af37e980af9285431ecd5c6f098a0f1afe0021d8d02b88a + md5: e4fdd13a67d5b30459463e925b9e7e1f + depends: + - libgcc >=13 + - __glibc >=2.17,<3.0.a0 + - libstdcxx >=13 + - libgcc >=13 + - _openmp_mutex >=4.5 + - libjpeg-turbo >=3.0.0,<4.0a0 + - libzlib >=1.3.1,<2.0a0 + - jasper >=4.2.5,<5.0a0 + - lcms2 >=2.17,<3.0a0 + license: LGPL-2.1-only + size: 704665 + timestamp: 1744641234631 +- conda: https://prefix.dev/conda-forge/linux-aarch64/libraw-0.21.4-h74ffddf_0.conda + sha256: 98360c0fce61f693afad344b55835ca9a8c8344434511676623c5c642ad67d96 + md5: 1723d3fd7b6ed1fdefd4f20e0d3c3079 + depends: + - libstdcxx >=13 + - libgcc >=13 + - _openmp_mutex >=4.5 + - libjpeg-turbo >=3.0.0,<4.0a0 + - jasper >=4.2.5,<5.0a0 + - libzlib >=1.3.1,<2.0a0 + - lcms2 >=2.17,<3.0a0 + license: LGPL-2.1-only + size: 742040 + timestamp: 1744641244231 +- conda: https://prefix.dev/conda-forge/osx-arm64/libraw-0.21.4-h62a31ad_0.conda + sha256: 1d10b30d4624fef1803d7b1be46741370f04aaa1a39bef7b8c79c59f25a2de15 + md5: 5c79a1ecaf9cfdfd396aed641006857f + depends: + - libcxx >=18 + - __osx >=11.0 + - lcms2 >=2.17,<3.0a0 + - jasper >=4.2.5,<5.0a0 + - libzlib >=1.3.1,<2.0a0 + - libjpeg-turbo >=3.0.0,<4.0a0 + license: LGPL-2.1-only + size: 655308 + timestamp: 1744641332489 +- conda: https://prefix.dev/conda-forge/win-64/libraw-0.21.4-h866491b_0.conda + sha256: db2cd8a48e5d329eb6a324063daa63eced3761ea42badaed5c685f468695fbd3 + md5: e5d4bf6388c45045a73d5e58e1364769 + depends: + - vc >=14.2,<15 + - vc14_runtime >=14.29.30139 + - ucrt >=10.0.20348.0 + - vc >=14.2,<15 + - vc14_runtime >=14.29.30139 + - ucrt >=10.0.20348.0 + - libjpeg-turbo >=3.0.0,<4.0a0 + - libzlib >=1.3.1,<2.0a0 + - lcms2 >=2.17,<3.0a0 + - jasper >=4.2.5,<5.0a0 + license: LGPL-2.1-only + size: 536650 + timestamp: 1744641254166 +- conda: https://prefix.dev/conda-forge/linux-64/librsvg-2.58.4-he92a37e_3.conda + sha256: a45ef03e6e700cc6ac6c375e27904531cf8ade27eb3857e080537ff283fb0507 + md5: d27665b20bc4d074b86e628b3ba5ab8b + depends: + - __glibc >=2.17,<3.0.a0 + - cairo >=1.18.4,<2.0a0 + - freetype >=2.13.3,<3.0a0 + - gdk-pixbuf >=2.42.12,<3.0a0 + - harfbuzz >=11.0.0,<12.0a0 + - libgcc >=13 + - libglib >=2.84.0,<3.0a0 + - libpng >=1.6.47,<1.7.0a0 + - libxml2 >=2.13.7,<2.14.0a0 + - pango >=1.56.3,<2.0a0 + constrains: + - __glibc >=2.17 + license: LGPL-2.1-or-later + size: 6543651 + timestamp: 1743368725313 +- conda: https://prefix.dev/conda-forge/linux-aarch64/librsvg-2.58.4-h3ac5bce_3.conda + sha256: e305cf09ec904625a66c7db1305595691c633276b7e34521537cef88edc5249a + md5: b115c14b3919823fbe081366d2b15d86 + depends: + - cairo >=1.18.4,<2.0a0 + - freetype >=2.13.3,<3.0a0 + - gdk-pixbuf >=2.42.12,<3.0a0 + - harfbuzz >=11.0.0,<12.0a0 + - libgcc >=13 + - libglib >=2.84.0,<3.0a0 + - libpng >=1.6.47,<1.7.0a0 + - libxml2 >=2.13.7,<2.14.0a0 + - pango >=1.56.3,<2.0a0 + constrains: + - __glibc >=2.17 + license: LGPL-2.1-or-later + size: 6274749 + timestamp: 1743376660664 +- conda: https://prefix.dev/conda-forge/osx-arm64/librsvg-2.58.4-h266df6f_3.conda + sha256: 0ec066d7f22bcd9acb6ca48b2e6a15e9be4f94e67cb55b0a2c05a37ac13f9315 + md5: 95d6ad8fb7a2542679c08ce52fafbb6c + depends: + - __osx >=11.0 + - cairo >=1.18.4,<2.0a0 + - gdk-pixbuf >=2.42.12,<3.0a0 + - libglib >=2.84.0,<3.0a0 + - libxml2 >=2.13.7,<2.14.0a0 + - pango >=1.56.3,<2.0a0 + constrains: + - __osx >=11.0 + license: LGPL-2.1-or-later + size: 4607782 + timestamp: 1743369546790 +- conda: https://prefix.dev/conda-forge/win-64/librsvg-2.58.4-h5ce5fed_3.conda + sha256: 8910bc40a52f2b979ced95137f09b8faf0113e14c430ca8fa7dd94dc88dafb83 + md5: 34fefcb3aed33ea39f1b040f5b9849e3 + depends: + - cairo >=1.18.4,<2.0a0 + - gdk-pixbuf >=2.42.12,<3.0a0 + - libglib >=2.84.0,<3.0a0 + - libxml2 >=2.13.7,<2.14.0a0 + - pango >=1.56.3,<2.0a0 + - ucrt >=10.0.20348.0 + - vc >=14.3,<15 + - vc14_runtime >=14.42.34438 + license: LGPL-2.1-or-later + size: 3919170 + timestamp: 1743369262131 +- conda: https://prefix.dev/conda-forge/linux-64/libsndfile-1.2.2-hc60ed4a_1.conda + sha256: f709cbede3d4f3aee4e2f8d60bd9e256057f410bd60b8964cb8cf82ec1457573 + md5: ef1910918dd895516a769ed36b5b3a4e + depends: + - lame >=3.100,<3.101.0a0 + - libflac >=1.4.3,<1.5.0a0 + - libgcc-ng >=12 + - libogg >=1.3.4,<1.4.0a0 + - libopus >=1.3.1,<2.0a0 + - libstdcxx-ng >=12 + - libvorbis >=1.3.7,<1.4.0a0 + - mpg123 >=1.32.1,<1.33.0a0 + license: LGPL-2.1-or-later + license_family: LGPL + size: 354372 + timestamp: 1695747735668 +- conda: https://prefix.dev/conda-forge/linux-aarch64/libsndfile-1.2.2-h79657aa_1.conda + sha256: 8fcd5e45d6fb071e8baf492ebb8710203fd5eedf0cb791e007265db373c89942 + md5: ad8e62c0faec46b1442f960489c80b49 + depends: + - lame >=3.100,<3.101.0a0 + - libflac >=1.4.3,<1.5.0a0 + - libgcc-ng >=12 + - libogg >=1.3.4,<1.4.0a0 + - libopus >=1.3.1,<2.0a0 + - libstdcxx-ng >=12 + - libvorbis >=1.3.7,<1.4.0a0 + - mpg123 >=1.32.1,<1.33.0a0 + license: LGPL-2.1-or-later + license_family: LGPL + size: 396501 + timestamp: 1695747749825 +- conda: https://prefix.dev/conda-forge/linux-64/libsqlite-3.50.4-h0c1763c_0.conda + sha256: 6d9c32fc369af5a84875725f7ddfbfc2ace795c28f246dc70055a79f9b2003da + md5: 0b367fad34931cb79e0d6b7e5c06bb1c + depends: + - __glibc >=2.17,<3.0.a0 + - libgcc >=14 + - libzlib >=1.3.1,<2.0a0 + license: blessing + size: 932581 + timestamp: 1753948484112 +- conda: https://prefix.dev/conda-forge/linux-aarch64/libsqlite-3.50.4-h022381a_0.conda + sha256: a361dc926f232e7f3aa664dbd821f12817601c07d2c8751a0668c2fb07d0e202 + md5: 0ad1b73a3df7e3376c14efe6dabe6987 + depends: + - libgcc >=14 + - libzlib >=1.3.1,<2.0a0 + license: blessing + size: 931661 + timestamp: 1753948557036 +- conda: https://prefix.dev/conda-forge/osx-arm64/libsqlite-3.50.4-h4237e3c_0.conda + sha256: 802ebe62e6bc59fc26b26276b793e0542cfff2d03c086440aeaf72fb8bbcec44 + md5: 1dcb0468f5146e38fae99aef9656034b + depends: + - __osx >=11.0 + - icu >=75.1,<76.0a0 + - libzlib >=1.3.1,<2.0a0 + license: blessing + size: 902645 + timestamp: 1753948599139 +- conda: https://prefix.dev/conda-forge/win-64/libsqlite-3.50.4-hf5d6505_0.conda + sha256: 5dc4f07b2d6270ac0c874caec53c6984caaaa84bc0d3eb593b0edf3dc8492efa + md5: ccb20d946040f86f0c05b644d5eadeca + depends: + - ucrt >=10.0.20348.0 + - vc >=14.3,<15 + - vc14_runtime >=14.44.35208 + license: blessing + size: 1288499 + timestamp: 1753948889360 +- conda: https://prefix.dev/conda-forge/linux-64/libssh2-1.11.1-hcf80075_0.conda + sha256: fa39bfd69228a13e553bd24601332b7cfeb30ca11a3ca50bb028108fe90a7661 + md5: eecce068c7e4eddeb169591baac20ac4 + depends: + - __glibc >=2.17,<3.0.a0 + - libgcc >=13 + - libzlib >=1.3.1,<2.0a0 + - openssl >=3.5.0,<4.0a0 + license: BSD-3-Clause + license_family: BSD + size: 304790 + timestamp: 1745608545575 +- conda: https://prefix.dev/conda-forge/linux-aarch64/libssh2-1.11.1-h18c354c_0.conda + sha256: 1e289bcce4ee6a5817a19c66e296f3c644dcfa6e562e5c1cba807270798814e7 + md5: eecc495bcfdd9da8058969656f916cc2 + depends: + - libgcc >=13 + - libzlib >=1.3.1,<2.0a0 + - openssl >=3.5.0,<4.0a0 + license: BSD-3-Clause + license_family: BSD + size: 311396 + timestamp: 1745609845915 +- conda: https://prefix.dev/conda-forge/osx-arm64/libssh2-1.11.1-h1590b86_0.conda + sha256: 8bfe837221390ffc6f111ecca24fa12d4a6325da0c8d131333d63d6c37f27e0a + md5: b68e8f66b94b44aaa8de4583d3d4cc40 + depends: + - libzlib >=1.3.1,<2.0a0 + - openssl >=3.5.0,<4.0a0 + license: BSD-3-Clause + license_family: BSD + size: 279193 + timestamp: 1745608793272 +- conda: https://prefix.dev/conda-forge/win-64/libssh2-1.11.1-h9aa295b_0.conda + sha256: cbdf93898f2e27cefca5f3fe46519335d1fab25c4ea2a11b11502ff63e602c09 + md5: 9dce2f112bfd3400f4f432b3d0ac07b2 + depends: + - libzlib >=1.3.1,<2.0a0 + - openssl >=3.5.0,<4.0a0 + - ucrt >=10.0.20348.0 + - vc >=14.2,<15 + - vc14_runtime >=14.29.30139 + license: BSD-3-Clause + license_family: BSD + size: 292785 + timestamp: 1745608759342 +- conda: https://prefix.dev/conda-forge/linux-64/libstdcxx-15.1.0-h8f9b012_4.conda + sha256: b5b239e5fca53ff90669af1686c86282c970dd8204ebf477cf679872eb6d48ac + md5: 3c376af8888c386b9d3d1c2701e2f3ab + depends: + - __glibc >=2.17,<3.0.a0 + - libgcc 15.1.0 h767d61c_4 + license: GPL-3.0-only WITH GCC-exception-3.1 + license_family: GPL + size: 3903453 + timestamp: 1753903894186 +- conda: https://prefix.dev/conda-forge/linux-aarch64/libstdcxx-15.1.0-h3f4de04_4.conda + sha256: 449279ceec291f1c985a23b3ce6db6305ef8c245b766264c057ec366ae9abf5d + md5: a87010172783a6a452e58cd1bf0dccee + depends: + - libgcc 15.1.0 he277a41_4 + license: GPL-3.0-only WITH GCC-exception-3.1 + license_family: GPL + size: 3827410 + timestamp: 1753904806159 +- conda: https://prefix.dev/conda-forge/linux-64/libstdcxx-ng-15.1.0-h4852527_4.conda + sha256: 81c841c1cf4c0d06414aaa38a249f9fdd390554943065c3a0b18a9fb7e8cc495 + md5: 2d34729cbc1da0ec988e57b13b712067 + depends: + - libstdcxx 15.1.0 h8f9b012_4 + license: GPL-3.0-only WITH GCC-exception-3.1 + license_family: GPL + size: 29317 + timestamp: 1753903924491 +- conda: https://prefix.dev/conda-forge/linux-aarch64/libstdcxx-ng-15.1.0-hf1166c9_4.conda + sha256: f8b059d8503ad689a69c239b4164366a19f92ff288a280a614490ae9b3cfa73a + md5: b213d079f1b9ce04e957c0686f57ce13 + depends: + - libstdcxx 15.1.0 h3f4de04_4 + license: GPL-3.0-only WITH GCC-exception-3.1 + license_family: GPL + size: 29361 + timestamp: 1753904850973 +- conda: https://prefix.dev/conda-forge/linux-64/libsystemd0-257.7-h4e0b6ca_0.conda + sha256: e26b22c0ae40fb6ad4356104d5fa4ec33fe8dd8a10e6aef36a9ab0c6a6f47275 + md5: 1e12c8aa74fa4c3166a9bdc135bc4abf + depends: + - __glibc >=2.17,<3.0.a0 + - libcap >=2.75,<2.76.0a0 + - libgcc >=13 + - libgcrypt-lib >=1.11.1,<2.0a0 + - liblzma >=5.8.1,<6.0a0 + - lz4-c >=1.10.0,<1.11.0a0 + - zstd >=1.5.7,<1.6.0a0 + license: LGPL-2.1-or-later + size: 487969 + timestamp: 1750949895969 +- conda: https://prefix.dev/conda-forge/linux-aarch64/libsystemd0-257.7-h2bb824b_0.conda + sha256: 35ecfc98c22d4f035b051fe72398206607d48944e7bd4f60431e63eb95538e0d + md5: 63b49a2d12a1739f72be430c2ed58727 + depends: + - libcap >=2.75,<2.76.0a0 + - libgcc >=13 + - libgcrypt-lib >=1.11.1,<2.0a0 + - liblzma >=5.8.1,<6.0a0 + - lz4-c >=1.10.0,<1.11.0a0 + - zstd >=1.5.7,<1.6.0a0 + license: LGPL-2.1-or-later + size: 510879 + timestamp: 1750949944203 +- conda: https://prefix.dev/conda-forge/linux-64/libtheora-1.1.1-h4ab18f5_1006.conda + sha256: 50c8cd416ac8425e415264de167b41ae8442de22a91098dfdd993ddbf9f13067 + md5: 553281a034e9cf8693c9df49f6c78ea1 + depends: + - libgcc-ng >=12 + - libogg 1.3.* + - libogg >=1.3.5,<1.4.0a0 + - libvorbis 1.3.* + - libvorbis >=1.3.7,<1.4.0a0 + license: BSD-3-Clause + license_family: BSD + size: 328924 + timestamp: 1719667859099 +- conda: https://prefix.dev/conda-forge/linux-aarch64/libtheora-1.1.1-h68df207_1006.conda + sha256: b5a46b5f2cf1ab6734dcab65f370c6b95f1d62ed27d9d30fe06a828bcb9b239b + md5: 5786518d6e1eff2225fe56c0e5d573d8 + depends: + - libgcc-ng >=12 + - libogg 1.3.* + - libogg >=1.3.5,<1.4.0a0 + - libvorbis 1.3.* + - libvorbis >=1.3.7,<1.4.0a0 + license: BSD-3-Clause + license_family: BSD + size: 335103 + timestamp: 1719667812650 +- conda: https://prefix.dev/conda-forge/osx-arm64/libtheora-1.1.1-h99b78c6_1006.conda + sha256: 05d8f9a4ae6669ebf8d69ec7f62c47b197b885ff989641d8a8043a1159d50c22 + md5: 4b0af7570b8af42ac6796da8777589d1 + depends: + - __osx >=11.0 + - libogg 1.3.* + - libogg >=1.3.5,<1.4.0a0 + - libvorbis 1.3.* + - libvorbis >=1.3.7,<1.4.0a0 + license: BSD-3-Clause + license_family: BSD + size: 282764 + timestamp: 1719667898064 +- conda: https://prefix.dev/conda-forge/win-64/libtheora-1.1.1-hc70643c_1006.conda + sha256: 7c4f8dca38604fa17d54061ff03f3e79aff78537a12e1eaf3b4a01be743b5633 + md5: 90cdca71edde0b3e549e8cbb43308208 + depends: + - libogg 1.3.* + - libogg >=1.3.5,<1.4.0a0 + - ucrt >=10.0.20348.0 + - vc >=14.2,<15 + - vc14_runtime >=14.29.30139 + license: BSD-3-Clause + license_family: BSD + size: 160440 + timestamp: 1719668116346 +- conda: https://prefix.dev/conda-forge/linux-64/libtiff-4.7.0-h8261f1e_6.conda + sha256: c62694cd117548d810d2803da6d9063f78b1ffbf7367432c5388ce89474e9ebe + md5: b6093922931b535a7ba566b6f384fbe6 + depends: + - __glibc >=2.17,<3.0.a0 + - lerc >=4.0.0,<5.0a0 + - libdeflate >=1.24,<1.25.0a0 + - libgcc >=14 + - libjpeg-turbo >=3.1.0,<4.0a0 + - liblzma >=5.8.1,<6.0a0 + - libstdcxx >=14 + - libwebp-base >=1.6.0,<2.0a0 + - libzlib >=1.3.1,<2.0a0 + - zstd >=1.5.7,<1.6.0a0 + license: HPND + size: 433078 + timestamp: 1755011934951 +- conda: https://prefix.dev/conda-forge/linux-aarch64/libtiff-4.7.0-h7a57436_6.conda + sha256: 7ffe5cd8455bc0b5d4b6f092ae552dd6e1feac8e512f206ac8e03adda1b494bc + md5: 360b68f57756b64922d5d3af5e986fa9 + depends: + - lerc >=4.0.0,<5.0a0 + - libdeflate >=1.24,<1.25.0a0 + - libgcc >=14 + - libjpeg-turbo >=3.1.0,<4.0a0 + - liblzma >=5.8.1,<6.0a0 + - libstdcxx >=14 + - libwebp-base >=1.6.0,<2.0a0 + - libzlib >=1.3.1,<2.0a0 + - zstd >=1.5.7,<1.6.0a0 + license: HPND + size: 481479 + timestamp: 1755012014975 +- conda: https://prefix.dev/conda-forge/osx-arm64/libtiff-4.7.0-h025e3ab_6.conda + sha256: d6ed4b307dde5d66b73aa3f155b3ed40ba9394947cfe148e2cd07605ef4b410b + md5: d0862034c2c563ef1f52a3237c133d8d + depends: + - __osx >=11.0 + - lerc >=4.0.0,<5.0a0 + - libcxx >=19 + - libdeflate >=1.24,<1.25.0a0 + - libjpeg-turbo >=3.1.0,<4.0a0 + - liblzma >=5.8.1,<6.0a0 + - libwebp-base >=1.6.0,<2.0a0 + - libzlib >=1.3.1,<2.0a0 + - zstd >=1.5.7,<1.6.0a0 + license: HPND + size: 372136 + timestamp: 1755012109767 +- conda: https://prefix.dev/conda-forge/win-64/libtiff-4.7.0-h550210a_6.conda + sha256: fd27821c8cfc425826f13760c3263d7b3b997c5372234cefa1586ff384dcc989 + md5: 72d45aa52ebca91aedb0cfd9eac62655 + depends: + - lerc >=4.0.0,<5.0a0 + - libdeflate >=1.24,<1.25.0a0 + - libjpeg-turbo >=3.1.0,<4.0a0 + - liblzma >=5.8.1,<6.0a0 + - libzlib >=1.3.1,<2.0a0 + - ucrt >=10.0.20348.0 + - vc >=14.3,<15 + - vc14_runtime >=14.44.35208 + - zstd >=1.5.7,<1.6.0a0 + license: HPND + size: 983988 + timestamp: 1755012056987 +- conda: https://prefix.dev/conda-forge/linux-64/libudev1-257.7-hbe16f8c_0.conda + sha256: 3fca2655f4cf2ce6b618a2b52e3dce92f27f429732b88080567d5bbeea404c82 + md5: 5a23e52bd654a5297bd3e247eebab5a3 + depends: + - __glibc >=2.17,<3.0.a0 + - libcap >=2.75,<2.76.0a0 + - libgcc >=13 + license: LGPL-2.1-or-later + size: 143533 + timestamp: 1750949902296 +- conda: https://prefix.dev/conda-forge/linux-aarch64/libudev1-257.7-h7b9e449_0.conda + sha256: 8c9847a934e251479f343f0be3b771836cdccfcf132145bd2da34946acd01988 + md5: d19d804623b40d7ab5f807c240b4caaf + depends: + - libcap >=2.75,<2.76.0a0 + - libgcc >=13 + license: LGPL-2.1-or-later + size: 154447 + timestamp: 1750949949664 +- conda: https://prefix.dev/conda-forge/linux-64/libunwind-1.8.2-h1441ba7_0.conda + sha256: bbbb7d2447093571cf47701ecaae454e46348920711bcf04eb4dbb37894a7d8d + md5: d1f1666c66af37c6b4f46e704ece0967 + depends: + - __glibc >=2.17,<3.0.a0 + - libgcc >=14 + - libstdcxx >=14 + license: MIT + license_family: MIT + size: 75872 + timestamp: 1752256544523 +- conda: https://prefix.dev/conda-forge/linux-aarch64/libunwind-1.8.2-h9e2cd2c_0.conda + sha256: b78078b3d40f1ad62e78fd9797359360059d7f6daecef56237f6f11dc2108861 + md5: 73ef8641801f0a92a28c4ed50298a7e0 + depends: + - libgcc >=14 + - libstdcxx >=14 + license: MIT + license_family: MIT + size: 95107 + timestamp: 1752256479192 +- conda: https://prefix.dev/conda-forge/linux-64/liburing-2.11-h84d6215_0.conda + sha256: f0ddcc69969487e0ac6bc522b87bb042a682bbe86ceeafc22ed0ebc9f6de9af8 + md5: a497bae1d93089e924cdf6d9c8cbc368 + depends: + - __glibc >=2.17,<3.0.a0 + - libgcc >=13 + - libstdcxx >=13 + license: MIT + license_family: MIT + size: 126164 + timestamp: 1750142901646 +- conda: https://prefix.dev/conda-forge/linux-aarch64/liburing-2.11-h17cf362_0.conda + sha256: 3a05329b5c02265876179cf6db924107cf409ef0b36198979fcea1c6596e9416 + md5: bef09862e8dc79929722c297c1837137 + depends: + - libgcc >=13 + - libstdcxx >=13 + license: MIT + license_family: MIT + size: 127540 + timestamp: 1750144252864 +- conda: https://prefix.dev/conda-forge/linux-64/libusb-1.0.29-h73b1eb8_0.conda + sha256: 89c84f5b26028a9d0f5c4014330703e7dff73ba0c98f90103e9cef6b43a5323c + md5: d17e3fb595a9f24fa9e149239a33475d + depends: + - __glibc >=2.17,<3.0.a0 + - libgcc >=13 + - libudev1 >=257.4 + license: LGPL-2.1-or-later + size: 89551 + timestamp: 1748856210075 +- conda: https://prefix.dev/conda-forge/linux-aarch64/libusb-1.0.29-h06eaf92_0.conda + sha256: a60aae6b529cd7caa7842f9781ef95b93014e618f71fb005e404af434d76a33f + md5: 9a86e7473e16fe25c5c47f6c1376ac82 + depends: + - libgcc >=13 + - libudev1 >=257.4 + license: LGPL-2.1-or-later + size: 93129 + timestamp: 1748856228398 +- conda: https://prefix.dev/conda-forge/osx-arm64/libusb-1.0.29-hbc156a2_0.conda + sha256: 5eee9a2bf359e474d4548874bcfc8d29ebad0d9ba015314439c256904e40aaad + md5: f6654e9e96e9d973981b3b2f898a5bfa + depends: + - __osx >=11.0 + license: LGPL-2.1-or-later + size: 83849 + timestamp: 1748856224950 +- conda: https://prefix.dev/conda-forge/win-64/libusb-1.0.29-h1839187_0.conda + sha256: 9837f8e8de20b6c9c033561cd33b4554cd551b217e3b8d2862b353ed2c23d8b8 + md5: a656b2c367405cd24988cf67ff2675aa + depends: + - vc >=14.2,<15 + - vc14_runtime >=14.29.30139 + - ucrt >=10.0.20348.0 + - vc >=14.2,<15 + - vc14_runtime >=14.29.30139 + - ucrt >=10.0.20348.0 + license: LGPL-2.1-or-later + size: 118204 + timestamp: 1748856290542 +- conda: https://prefix.dev/conda-forge/linux-64/libuuid-2.38.1-h0b41bf4_0.conda + sha256: 787eb542f055a2b3de553614b25f09eefb0a0931b0c87dbcce6efdfd92f04f18 + md5: 40b61aab5c7ba9ff276c41cfffe6b80b + depends: + - libgcc-ng >=12 + license: BSD-3-Clause + license_family: BSD + size: 33601 + timestamp: 1680112270483 +- conda: https://prefix.dev/conda-forge/linux-aarch64/libuuid-2.38.1-hb4cce97_0.conda + sha256: 616277b0c5f7616c2cdf36f6c316ea3f9aa5bb35f2d4476a349ab58b9b91675f + md5: 000e30b09db0b7c775b21695dff30969 + depends: + - libgcc-ng >=12 + license: BSD-3-Clause + license_family: BSD + size: 35720 + timestamp: 1680113474501 +- conda: https://prefix.dev/conda-forge/linux-64/libuv-1.51.0-hb03c661_1.conda + sha256: c180f4124a889ac343fc59d15558e93667d894a966ec6fdb61da1604481be26b + md5: 0f03292cc56bf91a077a134ea8747118 + depends: + - __glibc >=2.17,<3.0.a0 + - libgcc >=14 + license: MIT + license_family: MIT + size: 895108 + timestamp: 1753948278280 +- conda: https://prefix.dev/conda-forge/linux-aarch64/libuv-1.51.0-he30d5cf_1.conda + sha256: 7a0fb5638582efc887a18b7d270b0c4a6f6e681bf401cab25ebafa2482569e90 + md5: 8e62bf5af966325ee416f19c6f14ffa3 + depends: + - libgcc >=14 + license: MIT + license_family: MIT + size: 629238 + timestamp: 1753948296190 +- conda: https://prefix.dev/conda-forge/osx-arm64/libuv-1.51.0-h6caf38d_1.conda + sha256: 042c7488ad97a5629ec0a991a8b2a3345599401ecc75ad6a5af73b60e6db9689 + md5: c0d87c3c8e075daf1daf6c31b53e8083 + depends: + - __osx >=11.0 + license: MIT + license_family: MIT + size: 421195 + timestamp: 1753948426421 +- conda: https://prefix.dev/conda-forge/win-64/libuv-1.51.0-hfd05255_1.conda + sha256: f03dc82e6fb1725788e73ae97f0cd3d820d5af0d351a274104a0767035444c59 + md5: 31e1545994c48efc3e6ea32ca02a8724 + depends: + - ucrt >=10.0.20348.0 + - vc >=14.3,<15 + - vc14_runtime >=14.44.35208 + license: MIT + license_family: MIT + size: 297087 + timestamp: 1753948490874 +- conda: https://prefix.dev/conda-forge/linux-64/libva-2.22.0-h4f16b4b_2.conda + sha256: e0df324fb02fa05a05824b8db886b06659432b5cff39495c59e14a37aa23d40f + md5: 2c65566e79dc11318ce689c656fb551c + depends: + - __glibc >=2.17,<3.0.a0 + - libdrm >=2.4.124,<2.5.0a0 + - libegl >=1.7.0,<2.0a0 + - libgcc >=13 + - libgl >=1.7.0,<2.0a0 + - libglx >=1.7.0,<2.0a0 + - libxcb >=1.17.0,<2.0a0 + - wayland >=1.23.1,<2.0a0 + - wayland-protocols + - xorg-libx11 >=1.8.11,<2.0a0 + - xorg-libxext >=1.3.6,<2.0a0 + - xorg-libxfixes >=6.0.1,<7.0a0 + license: MIT + license_family: MIT + size: 217567 + timestamp: 1740897682004 +- conda: https://prefix.dev/conda-forge/linux-64/libvorbis-1.3.7-h54a6638_2.conda + sha256: ca494c99c7e5ecc1b4cd2f72b5584cef3d4ce631d23511184411abcbb90a21a5 + md5: b4ecbefe517ed0157c37f8182768271c + depends: + - libogg + - libgcc >=14 + - __glibc >=2.17,<3.0.a0 + - libstdcxx >=14 + - libgcc >=14 + - libogg >=1.3.5,<1.4.0a0 + license: BSD-3-Clause + license_family: BSD + size: 285894 + timestamp: 1753879378005 +- conda: https://prefix.dev/conda-forge/linux-aarch64/libvorbis-1.3.7-h7ac5ae9_2.conda + sha256: 066708ca7179a1c6e5639d015de7ed6e432b93ad50525843db67d57eb1ba1faf + md5: 9d099329070afe52d797462ca7bf35f3 + depends: + - libogg + - libstdcxx >=14 + - libgcc >=14 + - libogg >=1.3.5,<1.4.0a0 + license: BSD-3-Clause + license_family: BSD + size: 289391 + timestamp: 1753879417231 +- conda: https://prefix.dev/conda-forge/osx-arm64/libvorbis-1.3.7-h81086ad_2.conda + sha256: 95768e4eceaffb973081fd986d03da15d93aa10609ed202e6fd5ca1e490a3dce + md5: 719e7653178a09f5ca0aa05f349b41f7 + depends: + - libogg + - libcxx >=19 + - __osx >=11.0 + - libogg >=1.3.5,<1.4.0a0 + license: BSD-3-Clause + license_family: BSD + size: 259122 + timestamp: 1753879389702 +- conda: https://prefix.dev/conda-forge/win-64/libvorbis-1.3.7-h5112557_2.conda + sha256: 429124709c73b2e8fae5570bdc6b42f5418a7551ba72e591bb960b752e87b365 + md5: 42a8a56c60882da5d451aa95b8455111 + depends: + - libogg + - vc >=14.3,<15 + - vc14_runtime >=14.44.35208 + - ucrt >=10.0.20348.0 + - vc >=14.3,<15 + - vc14_runtime >=14.44.35208 + - ucrt >=10.0.20348.0 + - libogg >=1.3.5,<1.4.0a0 + license: BSD-3-Clause + license_family: BSD + size: 243401 + timestamp: 1753879416570 +- conda: https://prefix.dev/conda-forge/linux-64/libvpx-1.14.1-hac33072_0.conda + sha256: e7d2daf409c807be48310fcc8924e481b62988143f582eb3a58c5523a6763b13 + md5: cde393f461e0c169d9ffb2fc70f81c33 + depends: + - libgcc-ng >=12 + - libstdcxx-ng >=12 + license: BSD-3-Clause + license_family: BSD + size: 1022466 + timestamp: 1717859935011 +- conda: https://prefix.dev/conda-forge/linux-aarch64/libvpx-1.14.1-h0a1ffab_0.conda + sha256: 918493354f78cb3bb2c3d91264afbcb312b2afe287237e7d1c85ee7e96d15b47 + md5: 3cb63f822a49e4c406639ebf8b5d87d7 + depends: + - libgcc-ng >=12 + - libstdcxx-ng >=12 + license: BSD-3-Clause + license_family: BSD + size: 1211700 + timestamp: 1717859955539 +- conda: https://prefix.dev/conda-forge/osx-arm64/libvpx-1.14.1-h7bae524_0.conda + sha256: 5d6458b5395cba0804846f156574aa8a34eef6d5f05d39e9932ddbb4215f8bd0 + md5: 95bee48afff34f203e4828444c2b2ae9 + depends: + - __osx >=11.0 + - libcxx >=16 + license: BSD-3-Clause + license_family: BSD + size: 1178981 + timestamp: 1717860096742 +- conda: https://prefix.dev/conda-forge/linux-64/libwebp-base-1.6.0-hd42ef1d_0.conda + sha256: 3aed21ab28eddffdaf7f804f49be7a7d701e8f0e46c856d801270b470820a37b + md5: aea31d2e5b1091feca96fcfe945c3cf9 + depends: + - __glibc >=2.17,<3.0.a0 + - libgcc >=14 + constrains: + - libwebp 1.6.0 + license: BSD-3-Clause + license_family: BSD + size: 429011 + timestamp: 1752159441324 +- conda: https://prefix.dev/conda-forge/linux-aarch64/libwebp-base-1.6.0-ha2e29f5_0.conda + sha256: b03700a1f741554e8e5712f9b06dd67e76f5301292958cd3cb1ac8c6fdd9ed25 + md5: 24e92d0942c799db387f5c9d7b81f1af + depends: + - libgcc >=14 + constrains: + - libwebp 1.6.0 + license: BSD-3-Clause + license_family: BSD + size: 359496 + timestamp: 1752160685488 +- conda: https://prefix.dev/conda-forge/osx-arm64/libwebp-base-1.6.0-h07db88b_0.conda + sha256: a4de3f371bb7ada325e1f27a4ef7bcc81b2b6a330e46fac9c2f78ac0755ea3dd + md5: e5e7d467f80da752be17796b87fe6385 + depends: + - __osx >=11.0 + constrains: + - libwebp 1.6.0 + license: BSD-3-Clause + license_family: BSD + size: 294974 + timestamp: 1752159906788 +- conda: https://prefix.dev/conda-forge/win-64/libwebp-base-1.6.0-h4d5522a_0.conda + sha256: 7b6316abfea1007e100922760e9b8c820d6fc19df3f42fb5aca684cfacb31843 + md5: f9bbae5e2537e3b06e0f7310ba76c893 + depends: + - ucrt >=10.0.20348.0 + - vc >=14.3,<15 + - vc14_runtime >=14.44.35208 + constrains: + - libwebp 1.6.0 + license: BSD-3-Clause + license_family: BSD + size: 279176 + timestamp: 1752159543911 +- conda: https://prefix.dev/conda-forge/win-64/libwinpthread-12.0.0.r4.gg4f2fc60ca-h57928b3_9.conda + sha256: 373f2973b8a358528b22be5e8d84322c165b4c5577d24d94fd67ad1bb0a0f261 + md5: 08bfa5da6e242025304b206d152479ef + depends: + - ucrt + constrains: + - pthreads-win32 <0.0a0 + - msys2-conda-epoch <0.0a0 + license: MIT AND BSD-3-Clause-Clear + size: 35794 + timestamp: 1737099561703 +- conda: https://prefix.dev/conda-forge/linux-64/libxcb-1.17.0-h8a09558_0.conda + sha256: 666c0c431b23c6cec6e492840b176dde533d48b7e6fb8883f5071223433776aa + md5: 92ed62436b625154323d40d5f2f11dd7 + depends: + - __glibc >=2.17,<3.0.a0 + - libgcc >=13 + - pthread-stubs + - xorg-libxau >=1.0.11,<2.0a0 + - xorg-libxdmcp + license: MIT + license_family: MIT + size: 395888 + timestamp: 1727278577118 +- conda: https://prefix.dev/conda-forge/linux-aarch64/libxcb-1.17.0-h262b8f6_0.conda + sha256: 461cab3d5650ac6db73a367de5c8eca50363966e862dcf60181d693236b1ae7b + md5: cd14ee5cca2464a425b1dbfc24d90db2 + depends: + - libgcc >=13 + - pthread-stubs + - xorg-libxau >=1.0.11,<2.0a0 + - xorg-libxdmcp + license: MIT + license_family: MIT + size: 397493 + timestamp: 1727280745441 +- conda: https://prefix.dev/conda-forge/osx-arm64/libxcb-1.17.0-hdb1d25a_0.conda + sha256: bd3816218924b1e43b275863e21a3e13a5db4a6da74cca8e60bc3c213eb62f71 + md5: af523aae2eca6dfa1c8eec693f5b9a79 + depends: + - __osx >=11.0 + - pthread-stubs + - xorg-libxau >=1.0.11,<2.0a0 + - xorg-libxdmcp + license: MIT + license_family: MIT + size: 323658 + timestamp: 1727278733917 +- conda: https://prefix.dev/conda-forge/win-64/libxcb-1.17.0-h0e4246c_0.conda + sha256: 08dec73df0e161c96765468847298a420933a36bc4f09b50e062df8793290737 + md5: a69bbf778a462da324489976c84cfc8c + depends: + - libgcc >=13 + - libwinpthread >=12.0.0.r4.gg4f2fc60ca + - pthread-stubs + - ucrt >=10.0.20348.0 + - xorg-libxau >=1.0.11,<2.0a0 + - xorg-libxdmcp + license: MIT + license_family: MIT + size: 1208687 + timestamp: 1727279378819 +- conda: https://prefix.dev/conda-forge/linux-64/libxcrypt-4.4.36-hd590300_1.conda + sha256: 6ae68e0b86423ef188196fff6207ed0c8195dd84273cb5623b85aa08033a410c + md5: 5aa797f8787fe7a17d1b0821485b5adc + depends: + - libgcc-ng >=12 + license: LGPL-2.1-or-later + size: 100393 + timestamp: 1702724383534 +- conda: https://prefix.dev/conda-forge/linux-aarch64/libxcrypt-4.4.36-h31becfc_1.conda + sha256: 6b46c397644091b8a26a3048636d10b989b1bf266d4be5e9474bf763f828f41f + md5: b4df5d7d4b63579d081fd3a4cf99740e + depends: + - libgcc-ng >=12 + license: LGPL-2.1-or-later + size: 114269 + timestamp: 1702724369203 +- conda: https://prefix.dev/conda-forge/linux-64/libxkbcommon-1.11.0-he8b52b9_0.conda + sha256: 23f47e86cc1386e7f815fa9662ccedae151471862e971ea511c5c886aa723a54 + md5: 74e91c36d0eef3557915c68b6c2bef96 + depends: + - __glibc >=2.17,<3.0.a0 + - libgcc >=14 + - libstdcxx >=14 + - libxcb >=1.17.0,<2.0a0 + - libxml2 >=2.13.8,<2.14.0a0 + - xkeyboard-config + - xorg-libxau >=1.0.12,<2.0a0 + license: MIT/X11 Derivative + license_family: MIT + size: 791328 + timestamp: 1754703902365 +- conda: https://prefix.dev/conda-forge/linux-aarch64/libxkbcommon-1.11.0-h95ca766_0.conda + sha256: b23355766092c62b32a7fc8d5729f40d693d2d8491f52e12f3a2f184ec552f6a + md5: 21efa5fee8795bc04bd79bfc02f05c65 + depends: + - libgcc >=14 + - libstdcxx >=14 + - libxcb >=1.17.0,<2.0a0 + - libxml2 >=2.13.8,<2.14.0a0 + - xkeyboard-config + - xorg-libxau >=1.0.12,<2.0a0 + license: MIT/X11 Derivative + license_family: MIT + size: 811243 + timestamp: 1754703942072 +- conda: https://prefix.dev/conda-forge/linux-64/libxml2-2.13.8-h04c0eec_1.conda + sha256: 03deb1ec6edfafc5aaeecadfc445ee436fecffcda11fcd97fde9b6632acb583f + md5: 10bcbd05e1c1c9d652fccb42b776a9fa + depends: + - __glibc >=2.17,<3.0.a0 + - icu >=75.1,<76.0a0 + - libgcc >=14 + - libiconv >=1.18,<2.0a0 + - liblzma >=5.8.1,<6.0a0 + - libzlib >=1.3.1,<2.0a0 + license: MIT + license_family: MIT + size: 698448 + timestamp: 1754315344761 +- conda: https://prefix.dev/conda-forge/linux-aarch64/libxml2-2.13.8-he58860d_1.conda + sha256: 708ce24ebc1c3d11ac3757ae7a9ab628a1508e4427789a86197f38dad131dac9 + md5: 20d0cae4f8f49a79892d7e397310d81f + depends: + - icu >=75.1,<76.0a0 + - libgcc >=14 + - libiconv >=1.18,<2.0a0 + - liblzma >=5.8.1,<6.0a0 + - libzlib >=1.3.1,<2.0a0 + license: MIT + license_family: MIT + size: 739576 + timestamp: 1754315493293 +- conda: https://prefix.dev/conda-forge/osx-arm64/libxml2-2.13.8-h4a9ca0c_1.conda + sha256: 365ad1fa0b213e3712d882f187e6de7f601a0e883717f54fe69c344515cdba78 + md5: 05774cda4a601fc21830842648b3fe04 + depends: + - __osx >=11.0 + - icu >=75.1,<76.0a0 + - libiconv >=1.18,<2.0a0 + - liblzma >=5.8.1,<6.0a0 + - libzlib >=1.3.1,<2.0a0 + license: MIT + license_family: MIT + size: 582952 + timestamp: 1754315458016 +- conda: https://prefix.dev/conda-forge/win-64/libxml2-2.13.8-h741aa76_1.conda + sha256: 32fa908bb2f2a6636dab0edaac1d4bf5ff62ad404a82d8bb16702bc5b8eb9114 + md5: aeb49dc1f5531de13d2c0d57ffa6d0c8 + depends: + - libiconv >=1.18,<2.0a0 + - libzlib >=1.3.1,<2.0a0 + - ucrt >=10.0.20348.0 + - vc >=14.3,<15 + - vc14_runtime >=14.44.35208 + license: MIT + license_family: MIT + size: 1519401 + timestamp: 1754315497781 +- conda: https://prefix.dev/conda-forge/linux-64/libxslt-1.1.43-h7a3aeb2_0.conda + sha256: 35ddfc0335a18677dd70995fa99b8f594da3beb05c11289c87b6de5b930b47a3 + md5: 31059dc620fa57d787e3899ed0421e6d + depends: + - __glibc >=2.17,<3.0.a0 + - libgcc >=13 + - libxml2 >=2.13.8,<2.14.0a0 + license: MIT + license_family: MIT + size: 244399 + timestamp: 1753273455036 +- conda: https://prefix.dev/conda-forge/linux-aarch64/libxslt-1.1.43-h4552c8e_0.conda + sha256: c52c7b404688e449f971dbe2fc0cdcff3a2771bb2eb62f6db32a345384a175f0 + md5: fcf40dcbe5841e9b125ca98858e24205 + depends: + - libgcc >=13 + - libxml2 >=2.13.8,<2.14.0a0 + license: MIT + license_family: MIT + size: 253470 + timestamp: 1753273607458 +- conda: https://prefix.dev/conda-forge/osx-arm64/libxslt-1.1.43-h429d6fd_0.conda + sha256: 3491de18eb09c9d6298a7753bcc23b49a58886bd097d2653accaa1290f92c2c6 + md5: f25eb0a9e2c2ecfd33a4b97bb1a84fb6 + depends: + - __osx >=11.0 + - libxml2 >=2.13.8,<2.14.0a0 + license: MIT + license_family: MIT + size: 219752 + timestamp: 1753273652440 +- conda: https://prefix.dev/conda-forge/win-64/libxslt-1.1.43-h25c3957_0.conda + sha256: 20857f1adb91cc59826e146ee6cb1157c6abf2901a93d359b1106ba87c8e770b + md5: e84f36aa02735c140099d992d491968d + depends: + - libxml2 >=2.13.8,<2.14.0a0 + - ucrt >=10.0.20348.0 + - vc >=14.2,<15 + - vc14_runtime >=14.29.30139 + license: MIT + license_family: MIT + size: 416974 + timestamp: 1753273998632 +- conda: https://prefix.dev/conda-forge/linux-64/libzip-1.11.2-h6991a6a_0.conda + sha256: 991e7348b0f650d495fb6d8aa9f8c727bdf52dabf5853c0cc671439b160dce48 + md5: a7b27c075c9b7f459f1c022090697cba + depends: + - __glibc >=2.17,<3.0.a0 + - bzip2 >=1.0.8,<2.0a0 + - libgcc >=13 + - libzlib >=1.3.1,<2.0a0 + - openssl >=3.3.2,<4.0a0 + license: BSD-3-Clause + license_family: BSD + size: 109043 + timestamp: 1730442108429 +- conda: https://prefix.dev/conda-forge/linux-aarch64/libzip-1.11.2-h3e8f909_0.conda + sha256: 9ae7edbe6dcdaa0371736118a1e05ffa47c15c0118a092ff1b0a35cbb621ac2d + md5: faf7adbb1938c4aa7a312f110f46859b + depends: + - bzip2 >=1.0.8,<2.0a0 + - libgcc >=13 + - libzlib >=1.3.1,<2.0a0 + - openssl >=3.3.2,<4.0a0 + license: BSD-3-Clause + license_family: BSD + size: 117603 + timestamp: 1730442215935 +- conda: https://prefix.dev/conda-forge/osx-arm64/libzip-1.11.2-h1336266_0.conda + sha256: 507599a77c1ce823c2d3acaefaae4ead0686f183f3980467a4c4b8ba209eff40 + md5: 7177414f275db66735a17d316b0a81d6 + depends: + - __osx >=11.0 + - bzip2 >=1.0.8,<2.0a0 + - libzlib >=1.3.1,<2.0a0 + - openssl >=3.3.2,<4.0a0 + license: BSD-3-Clause + license_family: BSD + size: 125507 + timestamp: 1730442214849 +- conda: https://prefix.dev/conda-forge/win-64/libzip-1.11.2-h3135430_0.conda + sha256: 8ed49d8aa0ff908e16c82f92154174027c8906429e8b63d71f0b27ecc987b43e + md5: 09066edc7810e4bd1b41ad01a6cc4706 + depends: + - bzip2 >=1.0.8,<2.0a0 + - libzlib >=1.3.1,<2.0a0 + - openssl >=3.3.2,<4.0a0 + - ucrt >=10.0.20348.0 + - vc >=14.2,<15 + - vc14_runtime >=14.29.30139 + license: BSD-3-Clause + license_family: BSD + size: 146856 + timestamp: 1730442305774 +- conda: https://prefix.dev/conda-forge/linux-64/libzlib-1.3.1-hb9d3cd8_2.conda + sha256: d4bfe88d7cb447768e31650f06257995601f89076080e76df55e3112d4e47dc4 + md5: edb0dca6bc32e4f4789199455a1dbeb8 + depends: + - __glibc >=2.17,<3.0.a0 + - libgcc >=13 + constrains: + - zlib 1.3.1 *_2 + license: Zlib + license_family: Other + size: 60963 + timestamp: 1727963148474 +- conda: https://prefix.dev/conda-forge/linux-aarch64/libzlib-1.3.1-h86ecc28_2.conda + sha256: 5a2c1eeef69342e88a98d1d95bff1603727ab1ff4ee0e421522acd8813439b84 + md5: 08aad7cbe9f5a6b460d0976076b6ae64 + depends: + - libgcc >=13 + constrains: + - zlib 1.3.1 *_2 + license: Zlib + license_family: Other + size: 66657 + timestamp: 1727963199518 +- conda: https://prefix.dev/conda-forge/osx-arm64/libzlib-1.3.1-h8359307_2.conda + sha256: ce34669eadaba351cd54910743e6a2261b67009624dbc7daeeafdef93616711b + md5: 369964e85dc26bfe78f41399b366c435 + depends: + - __osx >=11.0 + constrains: + - zlib 1.3.1 *_2 + license: Zlib + license_family: Other + size: 46438 + timestamp: 1727963202283 +- conda: https://prefix.dev/conda-forge/win-64/libzlib-1.3.1-h2466b09_2.conda + sha256: ba945c6493449bed0e6e29883c4943817f7c79cbff52b83360f7b341277c6402 + md5: 41fbfac52c601159df6c01f875de31b9 + depends: + - ucrt >=10.0.20348.0 + - vc >=14.2,<15 + - vc14_runtime >=14.29.30139 + constrains: + - zlib 1.3.1 *_2 + license: Zlib + license_family: Other + size: 55476 + timestamp: 1727963768015 +- conda: https://prefix.dev/conda-forge/osx-arm64/llvm-openmp-20.1.8-hbb9b287_1.conda + sha256: e56f46b253dd1a99cc01dde038daba7789fc6ed35b2a93e3fc44b8578a82b3ec + md5: a10bdc3e5d9e4c1ce554c83855dff6c4 + depends: + - __osx >=11.0 + constrains: + - openmp 20.1.8|20.1.8.* + - intel-openmp <0.0a0 + license: Apache-2.0 WITH LLVM-exception + license_family: APACHE + size: 283300 + timestamp: 1753978829840 +- conda: https://prefix.dev/conda-forge/noarch/loguru-0.7.3-pyh707e725_0.conda + sha256: e4a07f357a4cf195a2345dabd98deab80f4d53574abe712a9cc7f22d3f2cc2c3 + md5: 49647ac1de4d1e4b49124aedf3934e02 + depends: + - __unix + - python >=3.9 + license: MIT + license_family: MIT + size: 59696 + timestamp: 1746634858826 +- conda: https://prefix.dev/conda-forge/noarch/loguru-0.7.3-pyh7428d3b_0.conda + sha256: 647ce9601c1a63af4710a2d718a74fa521da28262c41bbf86189f6c0906b23f6 + md5: a6c25c54d8d524735db2e5785aec0a4e + depends: + - __win + - colorama >=0.3.4 + - python >=3.9 + - win32_setctime >=1.0.0 + license: MIT + license_family: MIT + size: 60119 + timestamp: 1746634872414 +- conda: https://prefix.dev/conda-forge/linux-64/lxml-6.0.0-py311hbd2c71b_0.conda + sha256: 0c8783524bd51f8e9d6ec1322e74fdd200036e994b331d8a37aa28759e15b595 + md5: 3fee70825164281b54d6c3aba97e619c + depends: + - __glibc >=2.17,<3.0.a0 + - libgcc >=13 + - libxml2 >=2.13.8,<2.14.0a0 + - libxslt >=1.1.39,<2.0a0 + - libzlib >=1.3.1,<2.0a0 + - python >=3.11,<3.12.0a0 + - python_abi 3.11.* *_cp311 + license: BSD-3-Clause and MIT-CMU + size: 1584583 + timestamp: 1751021744404 +- conda: https://prefix.dev/conda-forge/linux-aarch64/lxml-6.0.0-py311h3bfafd0_0.conda + sha256: 1c35d2a173a124f23a49bdfbc886e235f513e7d8725d078ffaaa11e0087f9b66 + md5: cc20451aa5850597163e676b7f555426 + depends: + - libgcc >=13 + - libxml2 >=2.13.8,<2.14.0a0 + - libxslt >=1.1.39,<2.0a0 + - libzlib >=1.3.1,<2.0a0 + - python >=3.11,<3.12.0a0 + - python >=3.11,<3.12.0a0 *_cpython + - python_abi 3.11.* *_cp311 + license: BSD-3-Clause and MIT-CMU + size: 1509994 + timestamp: 1751021756656 +- conda: https://prefix.dev/conda-forge/osx-arm64/lxml-6.0.0-py311hfcb965d_0.conda + sha256: 1b66865e8eaefdd7eb56c8465c2549755426b916c983c6a24ace612cc6ec3e7d + md5: e5ec226447567badf5b4a91f72f39e35 + depends: + - __osx >=11.0 + - libxml2 >=2.13.8,<2.14.0a0 + - libxslt >=1.1.39,<2.0a0 + - libzlib >=1.3.1,<2.0a0 + - python >=3.11,<3.12.0a0 + - python >=3.11,<3.12.0a0 *_cpython + - python_abi 3.11.* *_cp311 + license: BSD-3-Clause and MIT-CMU + size: 1346161 + timestamp: 1751021901608 +- conda: https://prefix.dev/conda-forge/win-64/lxml-6.0.0-py311hea5fcc3_0.conda + sha256: d8bc0e00aac11cba7a608b02dcaaf4372513a177962173563afc618e3883123c + md5: c407f00017ac828c474dbfcdc3ebbd87 + depends: + - libxml2 >=2.13.8,<2.14.0a0 + - libxslt >=1.1.39,<2.0a0 + - libzlib >=1.3.1,<2.0a0 + - python >=3.11,<3.12.0a0 + - python_abi 3.11.* *_cp311 + - ucrt >=10.0.20348.0 + - vc >=14.3,<15 + - vc14_runtime >=14.44.35208 + license: BSD-3-Clause and MIT-CMU + size: 1238616 + timestamp: 1751022037147 +- conda: https://prefix.dev/conda-forge/linux-64/lz4-c-1.10.0-h5888daf_1.conda + sha256: 47326f811392a5fd3055f0f773036c392d26fdb32e4d8e7a8197eed951489346 + md5: 9de5350a85c4a20c685259b889aa6393 + depends: + - __glibc >=2.17,<3.0.a0 + - libgcc >=13 + - libstdcxx >=13 + license: BSD-2-Clause + license_family: BSD + size: 167055 + timestamp: 1733741040117 +- conda: https://prefix.dev/conda-forge/linux-aarch64/lz4-c-1.10.0-h5ad3122_1.conda + sha256: 67e55058d275beea76c1882399640c37b5be8be4eb39354c94b610928e9a0573 + md5: 6654e411da94011e8fbe004eacb8fe11 + depends: + - libgcc >=13 + - libstdcxx >=13 + license: BSD-2-Clause + license_family: BSD + size: 184953 + timestamp: 1733740984533 +- conda: https://prefix.dev/conda-forge/osx-arm64/lz4-c-1.10.0-h286801f_1.conda + sha256: 94d3e2a485dab8bdfdd4837880bde3dd0d701e2b97d6134b8806b7c8e69c8652 + md5: 01511afc6cc1909c5303cf31be17b44f + depends: + - __osx >=11.0 + - libcxx >=18 + license: BSD-2-Clause + license_family: BSD + size: 148824 + timestamp: 1733741047892 +- conda: https://prefix.dev/conda-forge/win-64/lz4-c-1.10.0-h2466b09_1.conda + sha256: 632cf3bdaf7a7aeb846de310b6044d90917728c73c77f138f08aa9438fc4d6b5 + md5: 0b69331897a92fac3d8923549d48d092 + depends: + - ucrt >=10.0.20348.0 + - vc >=14.2,<15 + - vc14_runtime >=14.29.30139 + license: BSD-2-Clause + license_family: BSD + size: 139891 + timestamp: 1733741168264 +- conda: https://prefix.dev/conda-forge/linux-64/matplotlib-base-3.10.5-py311h0f3be63_0.conda + sha256: 565d2b4137bf8e72660f389779c1888bc5d9beea5c1cb246f0cb49fa14a66165 + md5: d4718e47a353473a8238fe1133ddb2ca + depends: + - __glibc >=2.17,<3.0.a0 + - contourpy >=1.0.1 + - cycler >=0.10 + - fonttools >=4.22.0 + - freetype + - kiwisolver >=1.3.1 + - libfreetype >=2.13.3 + - libfreetype6 >=2.13.3 + - libgcc >=14 + - libstdcxx >=14 + - numpy >=1.23 + - numpy >=1.23,<3 + - packaging >=20.0 + - pillow >=8 + - pyparsing >=2.3.1 + - python >=3.11,<3.12.0a0 + - python-dateutil >=2.7 + - python_abi 3.11.* *_cp311 + - qhull >=2020.2,<2020.3.0a0 + - tk >=8.6.13,<8.7.0a0 + license: PSF-2.0 + license_family: PSF + size: 8391696 + timestamp: 1754005838796 +- conda: https://prefix.dev/conda-forge/linux-aarch64/matplotlib-base-3.10.5-py311hb9c6b48_0.conda + sha256: 5dce07e70b48d5f67936eacc70269a30df888a347fefd88c1893f9bd4d394a23 + md5: 8089ba4ecd7200bc74df8cfbe08ec115 + depends: + - contourpy >=1.0.1 + - cycler >=0.10 + - fonttools >=4.22.0 + - freetype + - kiwisolver >=1.3.1 + - libfreetype >=2.13.3 + - libfreetype6 >=2.13.3 + - libgcc >=14 + - libstdcxx >=14 + - numpy >=1.23 + - numpy >=1.23,<3 + - packaging >=20.0 + - pillow >=8 + - pyparsing >=2.3.1 + - python >=3.11,<3.12.0a0 + - python >=3.11,<3.12.0a0 *_cpython + - python-dateutil >=2.7 + - python_abi 3.11.* *_cp311 + - qhull >=2020.2,<2020.3.0a0 + - tk >=8.6.13,<8.7.0a0 + license: PSF-2.0 + license_family: PSF + size: 8460893 + timestamp: 1754005802375 +- conda: https://prefix.dev/conda-forge/osx-arm64/matplotlib-base-3.10.5-py311h66dac5a_0.conda + sha256: 6ae542ebf2ebc8dfaf3fc37255da3138225d12990811d309356e1296aee6aaab + md5: 912f3fdccdaf269d1fb4fe7e63f37b44 + depends: + - __osx >=11.0 + - contourpy >=1.0.1 + - cycler >=0.10 + - fonttools >=4.22.0 + - freetype + - kiwisolver >=1.3.1 + - libcxx >=19 + - libfreetype >=2.13.3 + - libfreetype6 >=2.13.3 + - numpy >=1.23 + - numpy >=1.23,<3 + - packaging >=20.0 + - pillow >=8 + - pyparsing >=2.3.1 + - python >=3.11,<3.12.0a0 + - python >=3.11,<3.12.0a0 *_cpython + - python-dateutil >=2.7 + - python_abi 3.11.* *_cp311 + - qhull >=2020.2,<2020.3.0a0 + license: PSF-2.0 + license_family: PSF + size: 8199499 + timestamp: 1754006036791 +- conda: https://prefix.dev/conda-forge/win-64/matplotlib-base-3.10.5-py311h1675fdf_0.conda + sha256: efc87eb7a4832d9a04359df8250827118c552adcf6427822bcb7460ace44df2e + md5: 790331d35824035be3cd7d5104a42aca + depends: + - contourpy >=1.0.1 + - cycler >=0.10 + - fonttools >=4.22.0 + - freetype + - kiwisolver >=1.3.1 + - libfreetype >=2.13.3 + - libfreetype6 >=2.13.3 + - numpy >=1.23 + - numpy >=1.23,<3 + - packaging >=20.0 + - pillow >=8 + - pyparsing >=2.3.1 + - python >=3.11,<3.12.0a0 + - python-dateutil >=2.7 + - python_abi 3.11.* *_cp311 + - qhull >=2020.2,<2020.3.0a0 + - ucrt >=10.0.20348.0 + - vc >=14.3,<15 + - vc14_runtime >=14.44.35208 + license: PSF-2.0 + license_family: PSF + size: 8070792 + timestamp: 1754006462610 +- conda: https://prefix.dev/conda-forge/noarch/mccabe-0.7.0-pyhd8ed1ab_1.conda + sha256: 9b0037171dad0100f0296699a11ae7d355237b55f42f9094aebc0f41512d96a1 + md5: 827064ddfe0de2917fb29f1da4f8f533 + depends: + - python >=3.9 + license: MIT + license_family: MIT + size: 12934 + timestamp: 1733216573915 +- conda: https://prefix.dev/conda-forge/win-64/mkl-2020.4-hb70f87d_311.tar.bz2 + sha256: bed03b2e83817226314993e135213ae903c40b4423113509538106414ae1de64 + md5: eb823c8b41ecf9cd5f08baea1b32e4ef + depends: + - intel-openmp + license: LicenseRef-ProprietaryIntel + license_family: Proprietary + size: 180784978 + timestamp: 1605064106223 +- conda: https://prefix.dev/conda-forge/linux-64/mpg123-1.32.9-hc50e24c_0.conda + sha256: 39c4700fb3fbe403a77d8cc27352fa72ba744db487559d5d44bf8411bb4ea200 + md5: c7f302fd11eeb0987a6a5e1f3aed6a21 + depends: + - __glibc >=2.17,<3.0.a0 + - libgcc >=13 + - libstdcxx >=13 + license: LGPL-2.1-only + license_family: LGPL + size: 491140 + timestamp: 1730581373280 +- conda: https://prefix.dev/conda-forge/linux-aarch64/mpg123-1.32.9-h65af167_0.conda + sha256: d65d5a00278544639ba4f99887154be00a1f57afb0b34d80b08e5cba40a17072 + md5: cdf140c7690ab0132106d3bc48bce47d + depends: + - libgcc >=13 + - libstdcxx >=13 + license: LGPL-2.1-only + license_family: LGPL + size: 558708 + timestamp: 1730581372400 +- conda: https://prefix.dev/conda-forge/linux-64/msgpack-python-1.1.1-py311hd18a35c_0.conda + sha256: f07aafd9e9adddf66b75630b4f68784e22ce63ae9e0887711a7386ceb2506fca + md5: d0898973440adc2ad25917028669126d + depends: + - __glibc >=2.17,<3.0.a0 + - libgcc >=13 + - libstdcxx >=13 + - python >=3.11,<3.12.0a0 + - python_abi 3.11.* *_cp311 + license: Apache-2.0 + license_family: Apache + size: 103109 + timestamp: 1749813330034 +- conda: https://prefix.dev/conda-forge/linux-aarch64/msgpack-python-1.1.1-py311hc07b1fb_0.conda + sha256: 095aa65ae7fb42c6aa165b572f3e2c709ff3c9f46ce07492b3f698305018a0ae + md5: f5e9ada9ace7830258a1fe01e4e4043a + depends: + - libgcc >=13 + - libstdcxx >=13 + - python >=3.11,<3.12.0a0 + - python >=3.11,<3.12.0a0 *_cpython + - python_abi 3.11.* *_cp311 + license: Apache-2.0 + license_family: Apache + size: 100520 + timestamp: 1749813396402 +- conda: https://prefix.dev/conda-forge/osx-arm64/msgpack-python-1.1.1-py311h210dab8_0.conda + sha256: eb0cfc60f428cd4cd9f50f7764ee2c2910949b82893055cf29c0866c163e5c33 + md5: f4f5b9fb201bfad3d0806d4a3af405b2 + depends: + - __osx >=11.0 + - libcxx >=18 + - python >=3.11,<3.12.0a0 + - python >=3.11,<3.12.0a0 *_cpython + - python_abi 3.11.* *_cp311 + license: Apache-2.0 + license_family: Apache + size: 90646 + timestamp: 1749813845551 +- conda: https://prefix.dev/conda-forge/win-64/msgpack-python-1.1.1-py311h3257749_0.conda + sha256: a0ba6da7e31c406c39da1258d0c4304b58e791b3836529e51dc56d7d8f542de4 + md5: 236c48eab3925b666eed26a3ba94bcb6 + depends: + - python >=3.11,<3.12.0a0 + - python_abi 3.11.* *_cp311 + - ucrt >=10.0.20348.0 + - vc >=14.2,<15 + - vc14_runtime >=14.29.30139 + license: Apache-2.0 + license_family: Apache + size: 88144 + timestamp: 1749814077794 +- conda: https://prefix.dev/conda-forge/linux-64/multidict-6.6.3-py311h2dc5d0c_0.conda + sha256: cde96613adebfa3a2c57abd4bf4026b6829d276fa95756ac6516115a7ff83b1f + md5: f368028b53e029409e2964707e03dcaf + depends: + - __glibc >=2.17,<3.0.a0 + - libgcc >=13 + - python >=3.11,<3.12.0a0 + - python_abi 3.11.* *_cp311 + license: Apache-2.0 + license_family: APACHE + size: 97411 + timestamp: 1751310661884 +- conda: https://prefix.dev/conda-forge/linux-aarch64/multidict-6.6.3-py311h58d527c_0.conda + sha256: f8655863c4b2459af65e68ec9fd0726e676027f59722923e0a02911687751fbf + md5: b61c6bd3a01879c30d3c967cd54a5ca5 + depends: + - libgcc >=13 + - python >=3.11,<3.12.0a0 + - python >=3.11,<3.12.0a0 *_cpython + - python_abi 3.11.* *_cp311 + license: Apache-2.0 + license_family: APACHE + size: 100143 + timestamp: 1751310728158 +- conda: https://prefix.dev/conda-forge/osx-arm64/multidict-6.6.3-py311h30e7462_0.conda + sha256: 4d175220d26e47265c9ed5f256fe68df4821e92e5c2cfc2fbe437f32c501c388 + md5: 069929b6e01d317f2d3775fffaba3db6 + depends: + - __osx >=11.0 + - python >=3.11,<3.12.0a0 + - python >=3.11,<3.12.0a0 *_cpython + - python_abi 3.11.* *_cp311 + license: Apache-2.0 + license_family: APACHE + size: 88450 + timestamp: 1751310825065 +- conda: https://prefix.dev/conda-forge/win-64/multidict-6.6.3-py311h3f79411_0.conda + sha256: e696024cc1bf12d09e3866036acc633af1cae789ee83c0aaf87df53c56794e85 + md5: 923dca46fba0f7cfe2446f741126e00b + depends: + - python >=3.11,<3.12.0a0 + - python_abi 3.11.* *_cp311 + - ucrt >=10.0.20348.0 + - vc >=14.3,<15 + - vc14_runtime >=14.44.35208 + license: Apache-2.0 + license_family: APACHE + size: 92269 + timestamp: 1751310800405 +- conda: https://prefix.dev/conda-forge/noarch/munkres-1.1.4-pyhd8ed1ab_1.conda + sha256: d09c47c2cf456de5c09fa66d2c3c5035aa1fa228a1983a433c47b876aa16ce90 + md5: 37293a85a0f4f77bbd9cf7aaefc62609 + depends: + - python >=3.9 + license: Apache-2.0 + license_family: Apache + size: 15851 + timestamp: 1749895533014 +- conda: https://prefix.dev/conda-forge/linux-64/ncurses-6.5-h2d0b736_3.conda + sha256: 3fde293232fa3fca98635e1167de6b7c7fda83caf24b9d6c91ec9eefb4f4d586 + md5: 47e340acb35de30501a76c7c799c41d7 + depends: + - __glibc >=2.17,<3.0.a0 + - libgcc >=13 + license: X11 AND BSD-3-Clause + size: 891641 + timestamp: 1738195959188 +- conda: https://prefix.dev/conda-forge/linux-aarch64/ncurses-6.5-ha32ae93_3.conda + sha256: 91cfb655a68b0353b2833521dc919188db3d8a7f4c64bea2c6a7557b24747468 + md5: 182afabe009dc78d8b73100255ee6868 + depends: + - libgcc >=13 + license: X11 AND BSD-3-Clause + size: 926034 + timestamp: 1738196018799 +- conda: https://prefix.dev/conda-forge/osx-arm64/ncurses-6.5-h5e97a16_3.conda + sha256: 2827ada40e8d9ca69a153a45f7fd14f32b2ead7045d3bbb5d10964898fe65733 + md5: 068d497125e4bf8a66bf707254fff5ae + depends: + - __osx >=11.0 + license: X11 AND BSD-3-Clause + size: 797030 + timestamp: 1738196177597 +- conda: https://prefix.dev/conda-forge/linux-64/netifaces-0.11.0-py311h9ecbd09_3.conda + sha256: 3cac2f9846f824b5dec81898b5d295b7ab69c8d88fb00ba4967119ded05d22bf + md5: a838f1ff02af237e3d600fefc286558b + depends: + - __glibc >=2.17,<3.0.a0 + - libgcc >=13 + - python >=3.11,<3.12.0a0 + - python_abi 3.11.* *_cp311 + license: MIT + license_family: MIT + size: 19638 + timestamp: 1735935203437 +- conda: https://prefix.dev/conda-forge/linux-aarch64/netifaces-0.11.0-py311ha879c10_3.conda + sha256: c87fb7d7fd9fe846cb985805c2286cd49d522e81ec394472dbfa30add25ce9fb + md5: 7604a49bf7a42ea47e87bd967e397e93 + depends: + - libgcc >=13 + - python >=3.11,<3.12.0a0 + - python >=3.11,<3.12.0a0 *_cpython + - python_abi 3.11.* *_cp311 + license: MIT + license_family: MIT + size: 20535 + timestamp: 1735935375626 +- conda: https://prefix.dev/conda-forge/osx-arm64/netifaces-0.11.0-py311h460d6c5_3.conda + sha256: 8fb9384455c795b5516b2f9cd8f50dfccde442dac0fa8f7c95e2e8715965f263 + md5: 04b8dedd9f44899c85c92e478e7266bf + depends: + - __osx >=11.0 + - python >=3.11,<3.12.0a0 + - python >=3.11,<3.12.0a0 *_cpython + - python_abi 3.11.* *_cp311 + license: MIT + license_family: MIT + size: 18252 + timestamp: 1735935296549 +- conda: https://prefix.dev/conda-forge/win-64/netifaces-0.11.0-py311he736701_3.conda + sha256: 1b07a570d99ced0bfa3cda3073817fde41a07e097155c5bbf587c024c0abcb5d + md5: ceb42507dd10a3df61e16fc28f59aa15 + depends: + - python >=3.11,<3.12.0a0 + - python_abi 3.11.* *_cp311 + - ucrt >=10.0.20348.0 + - vc >=14.2,<15 + - vc14_runtime >=14.29.30139 + license: MIT + license_family: MIT + size: 22085 + timestamp: 1735935704317 +- conda: https://prefix.dev/conda-forge/linux-64/nlohmann_json-3.12.0-h3f2d84a_0.conda + sha256: e2fc624d6f9b2f1b695b6be6b905844613e813aa180520e73365062683fe7b49 + md5: d76872d096d063e226482c99337209dc + license: MIT + license_family: MIT + size: 135906 + timestamp: 1744445169928 +- conda: https://prefix.dev/conda-forge/linux-aarch64/nlohmann_json-3.12.0-h5ad3122_0.conda + sha256: ba0e4e4f0b0b7fa1f7b7e3abe95823daf915d73ddd976e73a5f9ade2060760dd + md5: 92016ee90e17c57a1d2f47333d4bc92f + license: MIT + license_family: MIT + size: 136733 + timestamp: 1744445179648 +- conda: https://prefix.dev/conda-forge/osx-arm64/nlohmann_json-3.12.0-ha1acc90_0.conda + sha256: 6e689213c8d5e5f65ef426c0fcfb41b056e4c4d90fc020631cfddb6c87d5d6c9 + md5: c74975897efab6cdc7f5ac5a69cca2f3 + license: MIT + license_family: MIT + size: 136487 + timestamp: 1744445244122 +- conda: https://prefix.dev/conda-forge/win-64/nlohmann_json-3.12.0-he0c23c2_0.conda + sha256: 046a033594e87705de4edab215ceb567ea24e205fbd058d3fbfd7055b8a80fa4 + md5: 401617c1ad869b46966165aba18466fd + license: MIT + license_family: MIT + size: 134432 + timestamp: 1744445192270 +- conda: https://prefix.dev/conda-forge/linux-64/nspr-4.37-h29cc59b_0.conda + sha256: 472306630dcd49a221863b91bd89f5b8b81daf1b99adf1968c9f12021176d873 + md5: d73ccc379297a67ed921bd55b38a6c6a + depends: + - __glibc >=2.17,<3.0.a0 + - libgcc >=14 + - libstdcxx >=14 + license: MPL-2.0 + license_family: MOZILLA + size: 230951 + timestamp: 1752841107697 +- conda: https://prefix.dev/conda-forge/linux-aarch64/nspr-4.37-h3ad9384_0.conda + sha256: 29431722d6715cfa9589583eca96d740d2fa3ca50d32593d9eafcd3eea3c9bb6 + md5: 81e99082a0d055a3888369dafdfa427c + depends: + - libgcc >=14 + - libstdcxx >=14 + license: MPL-2.0 + license_family: MOZILLA + size: 236193 + timestamp: 1752842469552 +- conda: https://prefix.dev/conda-forge/osx-arm64/nspr-4.37-h31e89c2_0.conda + sha256: fe47c5d0542b6f928c31bf1c5251aa85aff9b50c48b56a4c7c6fce3afcd60e57 + md5: 1add5064a24aa483d1233c560ef8ee4a + depends: + - __osx >=11.0 + - libcxx >=19 + license: MPL-2.0 + license_family: MOZILLA + size: 201648 + timestamp: 1752841270904 +- conda: https://prefix.dev/conda-forge/linux-64/nss-3.115-hc3c8bcf_0.conda + sha256: d57e18a97fe89efffa419843f994be5cb03da40728398fa388090111f59083d5 + md5: c8873d2f90ad15aaec7be6926f11b53d + depends: + - __glibc >=2.17,<3.0.a0 + - libgcc >=14 + - libsqlite >=3.50.4,<4.0a0 + - libstdcxx >=14 + - libzlib >=1.3.1,<2.0a0 + - nspr >=4.37,<5.0a0 + license: MPL-2.0 + license_family: MOZILLA + size: 2032643 + timestamp: 1755254835402 +- conda: https://prefix.dev/conda-forge/linux-aarch64/nss-3.115-h85c1b32_0.conda + sha256: c44800c1438fde4800ef9c24103b6bdb9650c94a6db1a137527513e4e6e3381f + md5: 290ac439af007f64a88c8623168844a8 + depends: + - libgcc >=14 + - libsqlite >=3.50.4,<4.0a0 + - libstdcxx >=14 + - libzlib >=1.3.1,<2.0a0 + - nspr >=4.37,<5.0a0 + license: MPL-2.0 + license_family: MOZILLA + size: 2036478 + timestamp: 1755258386710 +- conda: https://prefix.dev/conda-forge/osx-arm64/nss-3.115-h5efccd4_0.conda + sha256: 3267955024a30a326c3ffcad50f51aedbb4337efdee4713c184e4e46ad2e51ec + md5: 87cf09546b6363c4d9ab9d0533bcb2e4 + depends: + - __osx >=11.0 + - libcxx >=19 + - libsqlite >=3.50.4,<4.0a0 + - libzlib >=1.3.1,<2.0a0 + - nspr >=4.37,<5.0a0 + license: MPL-2.0 + license_family: MOZILLA + size: 1832793 + timestamp: 1755255508063 +- conda: https://prefix.dev/conda-forge/linux-64/numpy-1.26.4-py311h64a7726_0.conda + sha256: 3f4365e11b28e244c95ba8579942b0802761ba7bb31c026f50d1a9ea9c728149 + md5: a502d7aad449a1206efb366d6a12c52d + depends: + - libblas >=3.9.0,<4.0a0 + - libcblas >=3.9.0,<4.0a0 + - libgcc-ng >=12 + - liblapack >=3.9.0,<4.0a0 + - libstdcxx-ng >=12 + - python >=3.11,<3.12.0a0 + - python_abi 3.11.* *_cp311 + constrains: + - numpy-base <0a0 + license: BSD-3-Clause + license_family: BSD + size: 8065890 + timestamp: 1707225944355 +- conda: https://prefix.dev/conda-forge/linux-aarch64/numpy-1.26.4-py311h69ead2a_0.conda + sha256: 88800a1d9d11c2fccab09d40d36f7001616f5119eaf0ec86186562f33564e651 + md5: 3fd00dd400c8d3f9da12bf33061dd28d + depends: + - libblas >=3.9.0,<4.0a0 + - libcblas >=3.9.0,<4.0a0 + - libgcc-ng >=12 + - liblapack >=3.9.0,<4.0a0 + - libstdcxx-ng >=12 + - python >=3.11,<3.12.0a0 + - python >=3.11,<3.12.0a0 *_cpython + - python_abi 3.11.* *_cp311 + constrains: + - numpy-base <0a0 + license: BSD-3-Clause + license_family: BSD + size: 7234391 + timestamp: 1707225781489 +- conda: https://prefix.dev/conda-forge/osx-arm64/numpy-1.26.4-py311h7125741_0.conda + sha256: 160a52a01fea44fe9753a2ed22cf13d7b55c8a89ea0b8738546fdbf4795d6514 + md5: 3160b93669a0def35a7a8158ebb33816 + depends: + - libblas >=3.9.0,<4.0a0 + - libcblas >=3.9.0,<4.0a0 + - libcxx >=16 + - liblapack >=3.9.0,<4.0a0 + - python >=3.11,<3.12.0a0 + - python >=3.11,<3.12.0a0 *_cpython + - python_abi 3.11.* *_cp311 + constrains: + - numpy-base <0a0 + license: BSD-3-Clause + license_family: BSD + size: 6652352 + timestamp: 1707226297967 +- conda: https://prefix.dev/conda-forge/win-64/numpy-1.26.4-py311h0b4df5a_0.conda + sha256: 14116e72107de3089cc58119a5ce5905c22abf9a715c9fe41f8ac14db0992326 + md5: 7b240edd44fd7a0991aa409b07cee776 + depends: + - libblas >=3.9.0,<4.0a0 + - libcblas >=3.9.0,<4.0a0 + - liblapack >=3.9.0,<4.0a0 + - python >=3.11,<3.12.0a0 + - python_abi 3.11.* *_cp311 + - ucrt >=10.0.20348.0 + - vc >=14.2,<15 + - vc14_runtime >=14.29.30139 + constrains: + - numpy-base <0a0 + license: BSD-3-Clause + license_family: BSD + size: 7104093 + timestamp: 1707226459646 +- conda: https://prefix.dev/conda-forge/linux-64/ocl-icd-2.3.3-hb9d3cd8_0.conda + sha256: 2254dae821b286fb57c61895f2b40e3571a070910fdab79a948ff703e1ea807b + md5: 56f8947aa9d5cf37b0b3d43b83f34192 + depends: + - __glibc >=2.17,<3.0.a0 + - libgcc >=13 + - opencl-headers >=2024.10.24 + license: BSD-2-Clause + license_family: BSD + size: 106742 + timestamp: 1743700382939 +- conda: https://prefix.dev/conda-forge/linux-64/opencl-headers-2025.06.13-h5888daf_0.conda + sha256: 2b6ce54174ec19110e1b3c37455f7cd138d0e228a75727a9bba443427da30a36 + md5: 45c3d2c224002d6d0d7769142b29f986 + depends: + - __glibc >=2.17,<3.0.a0 + - libgcc >=13 + - libstdcxx >=13 + license: Apache-2.0 + license_family: APACHE + size: 55357 + timestamp: 1749853464518 +- conda: https://prefix.dev/conda-forge/win-64/opencl-headers-2025.06.13-he0c23c2_0.conda + sha256: 1958dd489d32c3635e411e1802607e04a42ec685f1b2d63292211383447cecd3 + md5: 25b288eda332180bba67ef785a20ae45 + depends: + - ucrt >=10.0.20348.0 + - vc >=14.2,<15 + - vc14_runtime >=14.29.30139 + license: Apache-2.0 + license_family: APACHE + size: 55411 + timestamp: 1749853655608 +- conda: https://prefix.dev/conda-forge/linux-64/openexr-3.3.5-h09fa569_0.conda + sha256: db6bac8013542227eda2153b7473b10faef11fd2bae57591d1f729993109e152 + md5: f46ae82586acba0872546bd79261fafc + depends: + - libstdcxx >=14 + - libgcc >=14 + - __glibc >=2.17,<3.0.a0 + - libdeflate >=1.24,<1.25.0a0 + - libzlib >=1.3.1,<2.0a0 + - imath >=3.1.12,<3.1.13.0a0 + license: BSD-3-Clause + license_family: BSD + size: 1326814 + timestamp: 1753614941084 +- conda: https://prefix.dev/conda-forge/linux-aarch64/openexr-3.3.5-h1fc2f77_0.conda + sha256: 08aef1b27e67ca6e6d16a7d1dde4f4d3351fb1545d8bdf8a77ec7c073fcd859e + md5: 3dd3e352b5c24047b4a46beed6af1a1f + depends: + - libstdcxx >=14 + - libgcc >=14 + - imath >=3.1.12,<3.1.13.0a0 + - libdeflate >=1.24,<1.25.0a0 + - libzlib >=1.3.1,<2.0a0 + license: BSD-3-Clause + license_family: BSD + size: 1285497 + timestamp: 1753614928285 +- conda: https://prefix.dev/conda-forge/osx-arm64/openexr-3.3.5-haaeed0a_0.conda + sha256: a47fed37ef5876c7b1fbf600619e5a9b8f57c9384afc712e1d8e4b884ea75e21 + md5: 6dcb264f3a48d6ad5b863d8dc0890afd + depends: + - __osx >=11.0 + - libcxx >=19 + - libdeflate >=1.24,<1.25.0a0 + - imath >=3.1.12,<3.1.13.0a0 + - libzlib >=1.3.1,<2.0a0 + license: BSD-3-Clause + license_family: BSD + size: 1096380 + timestamp: 1753614981444 +- conda: https://prefix.dev/conda-forge/win-64/openexr-3.3.5-h4750f91_0.conda + sha256: d1ba290a484da1dcb6900a94a6b0a9e37799a056b6416c81fdae46fd73224094 + md5: 1adc969e971c0265e57f2fe0fce7035c + depends: + - vc >=14.3,<15 + - vc14_runtime >=14.44.35208 + - ucrt >=10.0.20348.0 + - vc >=14.3,<15 + - vc14_runtime >=14.44.35208 + - ucrt >=10.0.20348.0 + - libdeflate >=1.24,<1.25.0a0 + - imath >=3.1.12,<3.1.13.0a0 + - libzlib >=1.3.1,<2.0a0 + license: BSD-3-Clause + license_family: BSD + size: 1060265 + timestamp: 1753614985511 +- conda: https://prefix.dev/conda-forge/linux-64/openh264-2.6.0-hc22cd8d_0.conda + sha256: 3f231f2747a37a58471c82a9a8a80d92b7fece9f3fce10901a5ac888ce00b747 + md5: b28cf020fd2dead0ca6d113608683842 + depends: + - __glibc >=2.17,<3.0.a0 + - libgcc >=13 + - libstdcxx >=13 + license: BSD-2-Clause + license_family: BSD + size: 731471 + timestamp: 1739400677213 +- conda: https://prefix.dev/conda-forge/linux-aarch64/openh264-2.6.0-h0564a2a_0.conda + sha256: 3b7a519e3b7d7721a0536f6cba7f1909b878c71962ee67f02242958314748341 + md5: 0abed5d78c07a64e85c54f705ba14d30 + depends: + - libgcc >=13 + - libstdcxx >=13 + license: BSD-2-Clause + license_family: BSD + size: 774512 + timestamp: 1739400731652 +- conda: https://prefix.dev/conda-forge/osx-arm64/openh264-2.6.0-hb5b2745_0.conda + sha256: fbea05722a8e8abfb41c989e2cec7ba6597eabe27cb6b88ff0b6443a5abb9069 + md5: 6ff0890a94972aca7cc7f8f8ef1ff142 + depends: + - __osx >=11.0 + - libcxx >=18 + license: BSD-2-Clause + license_family: BSD + size: 601538 + timestamp: 1739400923874 +- conda: https://prefix.dev/conda-forge/win-64/openh264-2.6.0-hb17fa0b_0.conda + sha256: 914702d9a64325ff3afb072c8bc0f8cbea3f19955a8395a8c190e45604f83c76 + md5: ad4cac6ceb9e4c8e01802e3f15e87bb2 + depends: + - ucrt >=10.0.20348.0 + - vc >=14.2,<15 + - vc14_runtime >=14.29.30139 + license: BSD-2-Clause + license_family: BSD + size: 411269 + timestamp: 1739401120354 +- conda: https://prefix.dev/conda-forge/linux-64/openjpeg-2.5.3-h55fea9a_1.conda + sha256: 0b7396dacf988f0b859798711b26b6bc9c6161dca21bacfd778473da58730afa + md5: 01243c4aaf71bde0297966125aea4706 + depends: + - __glibc >=2.17,<3.0.a0 + - libgcc >=14 + - libpng >=1.6.50,<1.7.0a0 + - libstdcxx >=14 + - libtiff >=4.7.0,<4.8.0a0 + - libzlib >=1.3.1,<2.0a0 + license: BSD-2-Clause + license_family: BSD + size: 357828 + timestamp: 1754297886899 +- conda: https://prefix.dev/conda-forge/linux-aarch64/openjpeg-2.5.3-h5da879a_1.conda + sha256: a2e3b9c3cdccccae690add5d144ac7e301d5bed57f464eaf4a7a921a6ee526a8 + md5: af94f7f26d2aa7881299bf6430863f55 + depends: + - libgcc >=14 + - libpng >=1.6.50,<1.7.0a0 + - libstdcxx >=14 + - libtiff >=4.7.0,<4.8.0a0 + - libzlib >=1.3.1,<2.0a0 + license: BSD-2-Clause + license_family: BSD + size: 397313 + timestamp: 1754297834820 +- conda: https://prefix.dev/conda-forge/osx-arm64/openjpeg-2.5.3-h889cd5d_1.conda + sha256: 6013916893fcd9bc97c479279cfe4616de7735ec566bad0ee41bc729e14d31b2 + md5: ab581998c77c512d455a13befcddaac3 + depends: + - __osx >=11.0 + - libcxx >=19 + - libpng >=1.6.50,<1.7.0a0 + - libtiff >=4.7.0,<4.8.0a0 + - libzlib >=1.3.1,<2.0a0 + license: BSD-2-Clause + license_family: BSD + size: 320198 + timestamp: 1754297986425 +- conda: https://prefix.dev/conda-forge/win-64/openjpeg-2.5.3-h24db6dd_1.conda + sha256: c29cb1641bc5cfc2197e9b7b436f34142be4766dd2430a937b48b7474935aa55 + md5: 25f45acb1a234ad1c9b9a20e1e6c559e + depends: + - libpng >=1.6.50,<1.7.0a0 + - libtiff >=4.7.0,<4.8.0a0 + - libzlib >=1.3.1,<2.0a0 + - ucrt >=10.0.20348.0 + - vc >=14.3,<15 + - vc14_runtime >=14.44.35208 + license: BSD-2-Clause + license_family: BSD + size: 245076 + timestamp: 1754298075628 +- conda: https://prefix.dev/conda-forge/linux-64/openldap-2.6.10-he970967_0.conda + sha256: cb0b07db15e303e6f0a19646807715d28f1264c6350309a559702f4f34f37892 + md5: 2e5bf4f1da39c0b32778561c3c4e5878 + depends: + - __glibc >=2.17,<3.0.a0 + - cyrus-sasl >=2.1.27,<3.0a0 + - krb5 >=1.21.3,<1.22.0a0 + - libgcc >=13 + - libstdcxx >=13 + - openssl >=3.5.0,<4.0a0 + license: OLDAP-2.8 + license_family: BSD + size: 780253 + timestamp: 1748010165522 +- conda: https://prefix.dev/conda-forge/linux-aarch64/openldap-2.6.10-h30c48ee_0.conda + sha256: 13c7ba058b6e151468111235218158083b9e867738e66a5afb96096c5c123348 + md5: 48f31a61be512ec1929f4b4a9cedf4bd + depends: + - cyrus-sasl >=2.1.27,<3.0a0 + - krb5 >=1.21.3,<1.22.0a0 + - libgcc >=13 + - libstdcxx >=13 + - openssl >=3.5.0,<4.0a0 + license: OLDAP-2.8 + license_family: BSD + size: 902902 + timestamp: 1748010210718 +- conda: https://prefix.dev/conda-forge/osx-arm64/openldap-2.6.10-hbe55e7a_0.conda + sha256: 08d859836b81296c16f74336c3a9a455b23d57ce1d7c2b0b3e1b7a07f984c677 + md5: 6fd5d73c63b5d37d9196efb4f044af76 + depends: + - __osx >=11.0 + - cyrus-sasl >=2.1.27,<3.0a0 + - krb5 >=1.21.3,<1.22.0a0 + - libcxx >=18 + - openssl >=3.5.0,<4.0a0 + license: OLDAP-2.8 + license_family: BSD + size: 843597 + timestamp: 1748010484231 +- conda: https://prefix.dev/conda-forge/linux-64/openssl-3.5.2-h26f9b46_0.conda + sha256: c9f54d4e8212f313be7b02eb962d0cb13a8dae015683a403d3accd4add3e520e + md5: ffffb341206dd0dab0c36053c048d621 + depends: + - __glibc >=2.17,<3.0.a0 + - ca-certificates + - libgcc >=14 + license: Apache-2.0 + license_family: Apache + size: 3128847 + timestamp: 1754465526100 +- conda: https://prefix.dev/conda-forge/linux-aarch64/openssl-3.5.2-h8e36d6e_0.conda + sha256: 07d96b672fc8ae796208628d4a996b5155ab14b69e4f26fe3eaf82bcd71d1d7f + md5: ed060dc5bd1dc09e8df358fbba05d27c + depends: + - ca-certificates + - libgcc >=14 + license: Apache-2.0 + license_family: Apache + size: 3655596 + timestamp: 1754467141632 +- conda: https://prefix.dev/conda-forge/osx-arm64/openssl-3.5.2-he92f556_0.conda + sha256: f6d1c87dbcf7b39fad24347570166dade1c533ae2d53c60a70fa4dc874ef0056 + md5: bcb0d87dfbc199d0a461d2c7ca30b3d8 + depends: + - __osx >=11.0 + - ca-certificates + license: Apache-2.0 + license_family: Apache + size: 3074848 + timestamp: 1754465710470 +- conda: https://prefix.dev/conda-forge/win-64/openssl-3.5.2-h725018a_0.conda + sha256: 2413f3b4606018aea23acfa2af3c4c46af786739ab4020422e9f0c2aec75321b + md5: 150d3920b420a27c0848acca158f94dc + depends: + - ca-certificates + - ucrt >=10.0.20348.0 + - vc >=14.3,<15 + - vc14_runtime >=14.44.35208 + license: Apache-2.0 + license_family: Apache + size: 9275175 + timestamp: 1754467904482 +- conda: https://prefix.dev/conda-forge/linux-64/orocos-kdl-1.5.1-h5888daf_8.conda + sha256: 2c32fc459cabed3b272b3d41c63a869de3bee69636dee39519005fbc3e9c7b64 + md5: 81554d1604c59c8eabf592eacd1f561a + depends: + - __glibc >=2.17,<3.0.a0 + - eigen + - libgcc >=13 + - libstdcxx >=13 + license: LGPL-2.1-or-later + license_family: LGPL + size: 388297 + timestamp: 1729197896717 +- conda: https://prefix.dev/conda-forge/linux-aarch64/orocos-kdl-1.5.1-h5ad3122_8.conda + sha256: 8f5c6dce2c01310f98fcfb4d5ce58c9deac705673be86c21c33c4a2e1b3b4710 + md5: c1ae5b9ea5ec8f760127f6c5e1ebc565 + depends: + - eigen + - libgcc >=13 + - libstdcxx >=13 + license: LGPL-2.1-or-later + license_family: LGPL + size: 368402 + timestamp: 1729198046581 +- conda: https://prefix.dev/conda-forge/osx-arm64/orocos-kdl-1.5.1-h5833ebf_8.conda + sha256: 722ef90eb9c45c13d7d02a5c799927420417e21e532854fef243697ecdbd51ac + md5: 8e792f8fd3a6ff731f0daedb0be9ce5d + depends: + - __osx >=11.0 + - eigen + - libcxx >=17 + license: LGPL-2.1-or-later + license_family: LGPL + size: 303658 + timestamp: 1729198039533 +- conda: https://prefix.dev/conda-forge/win-64/orocos-kdl-1.5.1-he0c23c2_8.conda + sha256: 842299b67085d86cbf12fd822532f49294e2b6b6d056ccc7380fb3e8faac9b4e + md5: e722963f01da39566a547030cfb29957 + depends: + - eigen + - ucrt >=10.0.20348.0 + - vc >=14.2,<15 + - vc14_runtime >=14.29.30139 + license: LGPL-2.1-or-later + license_family: LGPL + size: 1782724 + timestamp: 1729198171830 +- conda: https://prefix.dev/conda-forge/noarch/packaging-25.0-pyh29332c3_1.conda + sha256: 289861ed0c13a15d7bbb408796af4de72c2fe67e2bcb0de98f4c3fce259d7991 + md5: 58335b26c38bf4a20f399384c33cbcf9 + depends: + - python >=3.8 + - python + license: Apache-2.0 + license_family: APACHE + size: 62477 + timestamp: 1745345660407 +- conda: https://prefix.dev/conda-forge/linux-64/pango-1.56.4-hadf4263_0.conda + sha256: 3613774ad27e48503a3a6a9d72017087ea70f1426f6e5541dbdb59a3b626eaaf + md5: 79f71230c069a287efe3a8614069ddf1 + depends: + - __glibc >=2.17,<3.0.a0 + - cairo >=1.18.4,<2.0a0 + - fontconfig >=2.15.0,<3.0a0 + - fonts-conda-ecosystem + - fribidi >=1.0.10,<2.0a0 + - harfbuzz >=11.0.1 + - libexpat >=2.7.0,<3.0a0 + - libfreetype >=2.13.3 + - libfreetype6 >=2.13.3 + - libgcc >=13 + - libglib >=2.84.2,<3.0a0 + - libpng >=1.6.49,<1.7.0a0 + - libzlib >=1.3.1,<2.0a0 + license: LGPL-2.1-or-later + size: 455420 + timestamp: 1751292466873 +- conda: https://prefix.dev/conda-forge/linux-aarch64/pango-1.56.4-he55ef5b_0.conda + sha256: dd36cd5b6bc1c2988291a6db9fa4eb8acade9b487f6f1da4eaa65a1eebb0a12d + md5: a22cc88bf6059c9bcc158c94c9aab5b8 + depends: + - cairo >=1.18.4,<2.0a0 + - fontconfig >=2.15.0,<3.0a0 + - fonts-conda-ecosystem + - fribidi >=1.0.10,<2.0a0 + - harfbuzz >=11.0.1 + - libexpat >=2.7.0,<3.0a0 + - libfreetype >=2.13.3 + - libfreetype6 >=2.13.3 + - libgcc >=13 + - libglib >=2.84.2,<3.0a0 + - libpng >=1.6.49,<1.7.0a0 + - libzlib >=1.3.1,<2.0a0 + license: LGPL-2.1-or-later + size: 468811 + timestamp: 1751293869070 +- conda: https://prefix.dev/conda-forge/osx-arm64/pango-1.56.4-h875632e_0.conda + sha256: 705484ad60adee86cab1aad3d2d8def03a699ece438c864e8ac995f6f66401a6 + md5: 7d57f8b4b7acfc75c777bc231f0d31be + depends: + - __osx >=11.0 + - cairo >=1.18.4,<2.0a0 + - fontconfig >=2.15.0,<3.0a0 + - fonts-conda-ecosystem + - fribidi >=1.0.10,<2.0a0 + - harfbuzz >=11.0.1 + - libexpat >=2.7.0,<3.0a0 + - libfreetype >=2.13.3 + - libfreetype6 >=2.13.3 + - libglib >=2.84.2,<3.0a0 + - libpng >=1.6.49,<1.7.0a0 + - libzlib >=1.3.1,<2.0a0 + license: LGPL-2.1-or-later + size: 426931 + timestamp: 1751292636271 +- conda: https://prefix.dev/conda-forge/win-64/pango-1.56.4-h03d888a_0.conda + sha256: dcda7e9bedc1c87f51ceef7632a5901e26081a1f74a89799a3e50dbdc801c0bd + md5: 452d6d3b409edead3bd90fc6317cd6d4 + depends: + - cairo >=1.18.4,<2.0a0 + - fontconfig >=2.15.0,<3.0a0 + - fonts-conda-ecosystem + - fribidi >=1.0.10,<2.0a0 + - harfbuzz >=11.0.1 + - libexpat >=2.7.0,<3.0a0 + - libfreetype >=2.13.3 + - libfreetype6 >=2.13.3 + - libglib >=2.84.2,<3.0a0 + - libpng >=1.6.49,<1.7.0a0 + - libzlib >=1.3.1,<2.0a0 + - ucrt >=10.0.20348.0 + - vc >=14.2,<15 + - vc14_runtime >=14.29.30139 + license: LGPL-2.1-or-later + size: 454854 + timestamp: 1751292618315 +- conda: https://prefix.dev/conda-forge/linux-64/pcl-1.15.0-hd1363f8_2.conda + sha256: e6d5fe4a022229fe15ed7fe5226716893375deb3b3ef65e6a5caabe9fb76015b + md5: 2065962ae1fc02ce98a73e8ef9ba0591 + depends: + - __glibc >=2.17,<3.0.a0 + - eigen + - flann >=1.9.2,<1.9.3.0a0 + - glew >=2.1.0,<2.2.0a0 + - libboost >=1.86.0,<1.87.0a0 + - libboost-devel + - libgcc >=13 + - libgl >=1.7.0,<2.0a0 + - libpng >=1.6.47,<1.7.0a0 + - libstdcxx >=13 + - qhull >=2020.2,<2020.3.0a0 + - qt6-main >=6.9.0,<6.10.0a0 + - vtk + - vtk-base >=9.4.2,<9.4.3.0a0 + - xorg-libxfixes >=6.0.1,<7.0a0 + license: BSD-3-Clause + license_family: BSD + size: 18080330 + timestamp: 1748340656265 +- conda: https://prefix.dev/conda-forge/linux-aarch64/pcl-1.15.0-h462c444_2.conda + sha256: 468994d7796fd420ee2e9f0cc31a89832fcef03fb20af5e68c5d6633b1c30f67 + md5: 32c47026ad63f97508b424c41e701995 + depends: + - eigen + - flann >=1.9.2,<1.9.3.0a0 + - glew >=2.1.0,<2.2.0a0 + - libboost >=1.86.0,<1.87.0a0 + - libboost-devel + - libgcc >=13 + - libgl >=1.7.0,<2.0a0 + - libpng >=1.6.47,<1.7.0a0 + - libstdcxx >=13 + - qhull >=2020.2,<2020.3.0a0 + - qt6-main >=6.9.0,<6.10.0a0 + - vtk + - vtk-base >=9.4.2,<9.4.3.0a0 + - xorg-libxfixes >=6.0.1,<7.0a0 + license: BSD-3-Clause + license_family: BSD + size: 17230683 + timestamp: 1748339138592 +- conda: https://prefix.dev/conda-forge/osx-arm64/pcl-1.15.0-hae97317_2.conda + sha256: 2ccfed736fabf25646e0a0fd42bf691cb8571cef451147bd821ace3b2a728a4c + md5: def9239db09d106e2c5f35b6ed46bf61 + depends: + - __osx >=11.0 + - eigen + - flann >=1.9.2,<1.9.3.0a0 + - glew >=2.1.0,<2.2.0a0 + - libboost >=1.86.0,<1.87.0a0 + - libboost-devel + - libcxx >=18 + - libpng >=1.6.47,<1.7.0a0 + - qhull >=2020.2,<2020.3.0a0 + - qt6-main >=6.9.0,<6.10.0a0 + - vtk + - vtk-base >=9.4.2,<9.4.3.0a0 + license: BSD-3-Clause + license_family: BSD + size: 13240094 + timestamp: 1748339721490 +- conda: https://prefix.dev/conda-forge/win-64/pcl-1.15.0-hd388526_2.conda + sha256: 6d6a80ced532beaaa7de540b87b11f3d66d79160958c00772875785c70c2e954 + md5: 30de620107e3beaf00ddd2b98d0d6c4f + depends: + - eigen + - flann >=1.9.2,<1.9.3.0a0 + - glew >=2.1.0,<2.2.0a0 + - libboost >=1.86.0,<1.87.0a0 + - libboost-devel + - libpng >=1.6.47,<1.7.0a0 + - qhull >=2020.2,<2020.3.0a0 + - qt6-main >=6.9.0,<6.10.0a0 + - tbb >=2021.13.0 + - ucrt >=10.0.20348.0 + - vc >=14.2,<15 + - vc14_runtime >=14.29.30139 + - vtk + - vtk-base >=9.4.2,<9.4.3.0a0 + license: BSD-3-Clause + license_family: BSD + size: 9356593 + timestamp: 1748340232669 +- conda: https://prefix.dev/conda-forge/linux-64/pcre-8.45-h9c3ff4c_0.tar.bz2 + sha256: 8f35c244b1631a4f31fb1d66ab6e1d9bfac0ca9b679deced1112c7225b3ad138 + md5: c05d1820a6d34ff07aaaab7a9b7eddaa + depends: + - libgcc-ng >=9.3.0 + - libstdcxx-ng >=9.3.0 + license: BSD-3-Clause + license_family: BSD + size: 259377 + timestamp: 1623788789327 +- conda: https://prefix.dev/conda-forge/linux-aarch64/pcre-8.45-h01db608_0.tar.bz2 + sha256: 7a6062de76f695f6d8f0ddda0ff171e4b47e2b863d6012def440c7703aea0069 + md5: 3963d9f84749d6cdba1f12c65967ccd1 + depends: + - libgcc-ng >=9.3.0 + - libstdcxx-ng >=9.3.0 + license: BSD-3-Clause + license_family: BSD + size: 249883 + timestamp: 1623793306266 +- conda: https://prefix.dev/conda-forge/osx-arm64/pcre-8.45-hbdafb3b_0.tar.bz2 + sha256: f2e0c4ae3306f94851eea2318c6d26d24f8e191e329ddd256a612cd1184c5737 + md5: 500758f2515ae07c640d255c11afc19f + depends: + - libcxx >=11.1.0 + license: BSD-3-Clause + license_family: BSD + size: 235554 + timestamp: 1623788902053 +- conda: https://prefix.dev/conda-forge/win-64/pcre-8.45-h0e60522_0.tar.bz2 + sha256: 2ee62337b921b2d60a87aa9a91bf34bc855a0bbf6a5642ec66a7a175a772be6d + md5: 3cd3948bb5de74ebef93b6be6d8cf0d5 + depends: + - vc >=14.1,<15.0a0 + - vs2015_runtime >=14.16.27012 + license: BSD-3-Clause + license_family: BSD + size: 530818 + timestamp: 1623789181657 +- conda: https://prefix.dev/conda-forge/linux-64/pcre2-10.45-hc749103_0.conda + sha256: 27c4014f616326240dcce17b5f3baca3953b6bc5f245ceb49c3fa1e6320571eb + md5: b90bece58b4c2bf25969b70f3be42d25 + depends: + - __glibc >=2.17,<3.0.a0 + - bzip2 >=1.0.8,<2.0a0 + - libgcc >=13 + - libzlib >=1.3.1,<2.0a0 + license: BSD-3-Clause + license_family: BSD + size: 1197308 + timestamp: 1745955064657 +- conda: https://prefix.dev/conda-forge/linux-aarch64/pcre2-10.45-hf4ec17f_0.conda + sha256: d5aecfcb64514719600e35290cc885098dbfef8e9c037eea6afc43d1acc65c2e + md5: ad22a9a9497f7aedce73e0da53cd215f + depends: + - bzip2 >=1.0.8,<2.0a0 + - libgcc >=13 + - libzlib >=1.3.1,<2.0a0 + license: BSD-3-Clause + license_family: BSD + size: 1134832 + timestamp: 1745955178803 +- conda: https://prefix.dev/conda-forge/osx-arm64/pcre2-10.45-ha881caa_0.conda + sha256: e9ecb706b58b5a2047c077b3a1470e8554f3aad02e9c3c00cfa35d537420fea3 + md5: a52385b93558d8e6bbaeec5d61a21cd7 + depends: + - __osx >=11.0 + - bzip2 >=1.0.8,<2.0a0 + - libzlib >=1.3.1,<2.0a0 + license: BSD-3-Clause + license_family: BSD + size: 837826 + timestamp: 1745955207242 +- conda: https://prefix.dev/conda-forge/win-64/pcre2-10.45-h99c9b8b_0.conda + sha256: 165d6f76e7849615cfa5fe5f0209b90103102db17a7b4632f933fa9c0e8d8bfe + md5: f4c483274001678e129f5cbaf3a8d765 + depends: + - bzip2 >=1.0.8,<2.0a0 + - libzlib >=1.3.1,<2.0a0 + - ucrt >=10.0.20348.0 + - vc >=14.2,<15 + - vc14_runtime >=14.29.30139 + license: BSD-3-Clause + license_family: BSD + size: 1040584 + timestamp: 1745955875845 +- conda: https://prefix.dev/conda-forge/noarch/pep517-0.13.0-pyhd8ed1ab_0.tar.bz2 + sha256: 6a6f2fa6bc9106b2edcccc142242dc3ab1f2f77a6debbd5b480f08482f052636 + md5: d94aa03d99d8adc9898f783eba0d84d2 + depends: + - python >=3.8 + - tomli + license: MIT + license_family: MIT + size: 19044 + timestamp: 1667916747996 +- conda: https://prefix.dev/conda-forge/linux-64/pillow-11.3.0-py311h1322bbf_0.conda + sha256: cf296d5185090f27ac4e3d73177ff865ca87307c815d759f3baa0f9c8680a250 + md5: 8b4568b1357f5ec5494e36b06076c3a1 + depends: + - __glibc >=2.17,<3.0.a0 + - lcms2 >=2.17,<3.0a0 + - libfreetype >=2.13.3 + - libfreetype6 >=2.13.3 + - libgcc >=13 + - libjpeg-turbo >=3.1.0,<4.0a0 + - libtiff >=4.7.0,<4.8.0a0 + - libwebp-base >=1.5.0,<2.0a0 + - libxcb >=1.17.0,<2.0a0 + - libzlib >=1.3.1,<2.0a0 + - openjpeg >=2.5.3,<3.0a0 + - python >=3.11,<3.12.0a0 + - python_abi 3.11.* *_cp311 + - tk >=8.6.13,<8.7.0a0 + license: HPND + size: 43054892 + timestamp: 1751482121228 +- conda: https://prefix.dev/conda-forge/linux-aarch64/pillow-11.3.0-py311ha4eaa5e_0.conda + sha256: 7c72c086e9107b6cd69dbe4c77e2a6b50cb07c23dc1ddf65695cf0ee21e04e22 + md5: 57f11244fdf61846086d1e942f65da49 + depends: + - lcms2 >=2.17,<3.0a0 + - libfreetype >=2.13.3 + - libfreetype6 >=2.13.3 + - libgcc >=13 + - libjpeg-turbo >=3.1.0,<4.0a0 + - libtiff >=4.7.0,<4.8.0a0 + - libwebp-base >=1.5.0,<2.0a0 + - libxcb >=1.17.0,<2.0a0 + - libzlib >=1.3.1,<2.0a0 + - openjpeg >=2.5.3,<3.0a0 + - python >=3.11,<3.12.0a0 + - python_abi 3.11.* *_cp311 + - tk >=8.6.13,<8.7.0a0 + license: HPND + size: 42348723 + timestamp: 1751483298337 +- conda: https://prefix.dev/conda-forge/osx-arm64/pillow-11.3.0-py311hb9ba9e9_0.conda + sha256: 6eb85c7828cd28f79980dff822a2acac74c8edaa186a9dfef53bc2bf7421cd26 + md5: afcdff84f6b7dd35ba49f3fe55dcc90f + depends: + - __osx >=11.0 + - lcms2 >=2.17,<3.0a0 + - libfreetype >=2.13.3 + - libfreetype6 >=2.13.3 + - libjpeg-turbo >=3.1.0,<4.0a0 + - libtiff >=4.7.0,<4.8.0a0 + - libwebp-base >=1.5.0,<2.0a0 + - libxcb >=1.17.0,<2.0a0 + - libzlib >=1.3.1,<2.0a0 + - openjpeg >=2.5.3,<3.0a0 + - python >=3.11,<3.12.0a0 + - python >=3.11,<3.12.0a0 *_cpython + - python_abi 3.11.* *_cp311 + - tk >=8.6.13,<8.7.0a0 + license: HPND + size: 42028662 + timestamp: 1751482509684 +- conda: https://prefix.dev/conda-forge/win-64/pillow-11.3.0-py311h0f9b5fc_0.conda + sha256: 91aa79f6a0894edf9c698251428f3bb175f274c476f6bc07eb9136ab10ba1e76 + md5: feb1a7f0fa15a147350d2c7d477e72b3 + depends: + - lcms2 >=2.17,<3.0a0 + - libfreetype >=2.13.3 + - libfreetype6 >=2.13.3 + - libjpeg-turbo >=3.1.0,<4.0a0 + - libtiff >=4.7.0,<4.8.0a0 + - libwebp-base >=1.5.0,<2.0a0 + - libxcb >=1.17.0,<2.0a0 + - libzlib >=1.3.1,<2.0a0 + - openjpeg >=2.5.3,<3.0a0 + - python >=3.11,<3.12.0a0 + - python_abi 3.11.* *_cp311 + - tk >=8.6.13,<8.7.0a0 + - ucrt >=10.0.20348.0 + - vc >=14.3,<15 + - vc14_runtime >=14.44.35208 + license: HPND + size: 42754092 + timestamp: 1751482299214 +- conda: https://prefix.dev/conda-forge/linux-64/pixman-0.46.4-h54a6638_1.conda + sha256: 43d37bc9ca3b257c5dd7bf76a8426addbdec381f6786ff441dc90b1a49143b6a + md5: c01af13bdc553d1a8fbfff6e8db075f0 + depends: + - libgcc >=14 + - libstdcxx >=14 + - libgcc >=14 + - __glibc >=2.17,<3.0.a0 + license: MIT + license_family: MIT + size: 450960 + timestamp: 1754665235234 +- conda: https://prefix.dev/conda-forge/linux-aarch64/pixman-0.46.4-h7ac5ae9_1.conda + sha256: e6b0846a998f2263629cfeac7bca73565c35af13251969f45d385db537a514e4 + md5: 1587081d537bd4ae77d1c0635d465ba5 + depends: + - libgcc >=14 + - libstdcxx >=14 + - libgcc >=14 + license: MIT + license_family: MIT + size: 357913 + timestamp: 1754665583353 +- conda: https://prefix.dev/conda-forge/osx-arm64/pixman-0.46.4-h81086ad_1.conda + sha256: 29c9b08a9b8b7810f9d4f159aecfd205fce051633169040005c0b7efad4bc718 + md5: 17c3d745db6ea72ae2fce17e7338547f + depends: + - __osx >=11.0 + - libcxx >=19 + license: MIT + license_family: MIT + size: 248045 + timestamp: 1754665282033 +- conda: https://prefix.dev/conda-forge/win-64/pixman-0.46.4-h5112557_1.conda + sha256: 246fce4706b3f8b247a7d6142ba8d732c95263d3c96e212b9d63d6a4ab4aff35 + md5: 08c8fa3b419df480d985e304f7884d35 + depends: + - vc >=14.3,<15 + - vc14_runtime >=14.44.35208 + - ucrt >=10.0.20348.0 + - vc >=14.3,<15 + - vc14_runtime >=14.44.35208 + - ucrt >=10.0.20348.0 + license: MIT + license_family: MIT + size: 542795 + timestamp: 1754665193489 +- conda: https://prefix.dev/conda-forge/linux-64/pkg-config-0.29.2-h4bc722e_1009.conda + sha256: c9601efb1af5391317e04eca77c6fe4d716bf1ca1ad8da2a05d15cb7c28d7d4e + md5: 1bee70681f504ea424fb07cdb090c001 + depends: + - __glibc >=2.17,<3.0.a0 + - libgcc-ng >=12 + license: GPL-2.0-or-later + license_family: GPL + size: 115175 + timestamp: 1720805894943 +- conda: https://prefix.dev/conda-forge/linux-aarch64/pkg-config-0.29.2-hce167ba_1009.conda + sha256: 6468cbfaf1d3140be46dd315ec383d373dbbafd770ce2efe77c3f0cdbc4576c1 + md5: 05eda637f6465f7e8c5ab7e341341ea9 + depends: + - libgcc-ng >=12 + - libglib >=2.80.3,<3.0a0 + license: GPL-2.0-or-later + license_family: GPL + size: 54834 + timestamp: 1720806008171 +- conda: https://prefix.dev/conda-forge/osx-arm64/pkg-config-0.29.2-hde07d2e_1009.conda + sha256: d82f4655b2d67fe12eefe1a3eea4cd27d33fa41dbc5e9aeab5fd6d3d2c26f18a + md5: b4f41e19a8c20184eec3aaf0f0953293 + depends: + - __osx >=11.0 + - libglib >=2.80.3,<3.0a0 + - libiconv >=1.17,<2.0a0 + license: GPL-2.0-or-later + license_family: GPL + size: 49724 + timestamp: 1720806128118 +- conda: https://prefix.dev/conda-forge/win-64/pkg-config-0.29.2-h88c491f_1009.conda + sha256: 86b0c40c8b569dbc164cb1de098ddabf4c240a5e8f38547aab00493891fa67f3 + md5: 122d6514d415fbe02c9b58aee9f6b53e + depends: + - libglib >=2.80.3,<3.0a0 + - ucrt >=10.0.20348.0 + - vc >=14.2,<15 + - vc14_runtime >=14.29.30139 + license: GPL-2.0-or-later + license_family: GPL + size: 36118 + timestamp: 1720806338740 +- conda: https://prefix.dev/conda-forge/noarch/pluggy-1.6.0-pyhd8ed1ab_0.conda + sha256: a8eb555eef5063bbb7ba06a379fa7ea714f57d9741fe0efdb9442dbbc2cccbcc + md5: 7da7ccd349dbf6487a7778579d2bb971 + depends: + - python >=3.9 + license: MIT + license_family: MIT + size: 24246 + timestamp: 1747339794916 +- conda: https://prefix.dev/conda-forge/noarch/ply-3.11-pyhd8ed1ab_3.conda + sha256: bae453e5cecf19cab23c2e8929c6e30f4866d996a8058be16c797ed4b935461f + md5: fd5062942bfa1b0bd5e0d2a4397b099e + depends: + - python >=3.9 + license: BSD-3-Clause + license_family: BSD + size: 49052 + timestamp: 1733239818090 +- conda: https://prefix.dev/conda-forge/linux-64/proj-9.6.2-h18fbb6c_2.conda + sha256: c1c9e38646a2d07007844625c8dea82404c8785320f8a6326b9338f8870875d0 + md5: 1aeede769ec2fa0f474f8b73a7ac057f + depends: + - __glibc >=2.17,<3.0.a0 + - libcurl >=8.14.1,<9.0a0 + - libgcc >=14 + - libsqlite >=3.50.4,<4.0a0 + - libstdcxx >=14 + - libtiff >=4.7.0,<4.8.0a0 + - sqlite + constrains: + - proj4 ==999999999999 + license: MIT + license_family: MIT + size: 3240415 + timestamp: 1754927975218 +- conda: https://prefix.dev/conda-forge/linux-aarch64/proj-9.6.2-h561be74_2.conda + sha256: 253a71ef5c7d7a9d053bb4b9a9773ff4557e337361a07f8e93041bea74c3715d + md5: 0833b27f1145345bbd9d45a58a1fbf3c + depends: + - libcurl >=8.14.1,<9.0a0 + - libgcc >=14 + - libsqlite >=3.50.4,<4.0a0 + - libstdcxx >=14 + - libtiff >=4.7.0,<4.8.0a0 + - sqlite + constrains: + - proj4 ==999999999999 + license: MIT + license_family: MIT + size: 3142537 + timestamp: 1754928738268 +- conda: https://prefix.dev/conda-forge/osx-arm64/proj-9.6.2-hdbeaa80_2.conda + sha256: 75e4bfa1a2d2b46b7aa11e2293abfe664f5775f21785fb7e3d41226489687501 + md5: e68d0d91e188ab134cb25675de82b479 + depends: + - __osx >=11.0 + - libcurl >=8.14.1,<9.0a0 + - libcxx >=19 + - libsqlite >=3.50.4,<4.0a0 + - libtiff >=4.7.0,<4.8.0a0 + - sqlite + constrains: + - proj4 ==999999999999 + license: MIT + license_family: MIT + size: 2787374 + timestamp: 1754927844772 +- conda: https://prefix.dev/conda-forge/win-64/proj-9.6.2-h7990399_2.conda + sha256: e798e9bd658f6c00cfac0d8573c7fe97d9ebad5966c96c23e0702f44e51905bb + md5: 6e0e8fcc3eb2c1418d663005bf040d8d + depends: + - libcurl >=8.14.1,<9.0a0 + - libsqlite >=3.50.4,<4.0a0 + - libtiff >=4.7.0,<4.8.0a0 + - sqlite + - ucrt >=10.0.20348.0 + - vc >=14.3,<15 + - vc14_runtime >=14.44.35208 + constrains: + - proj4 ==999999999999 + license: MIT + license_family: MIT + size: 2788230 + timestamp: 1754928361098 +- conda: https://prefix.dev/conda-forge/linux-64/propcache-0.3.1-py311h2dc5d0c_0.conda + sha256: 38ef315508a4c6c96985a990b172964a8ed737fe4e991d82ad9d2a77c45add1f + md5: c75eb8c91d69fe0385fce584f3ce193a + depends: + - __glibc >=2.17,<3.0.a0 + - libgcc >=13 + - python >=3.11,<3.12.0a0 + - python_abi 3.11.* *_cp311 + license: Apache-2.0 + license_family: APACHE + size: 54558 + timestamp: 1744525097548 +- conda: https://prefix.dev/conda-forge/linux-aarch64/propcache-0.3.1-py311h58d527c_0.conda + sha256: 65d0f979c9f3e3972dc8ef178c5fbb0bf6858cd82521ec9e6be5b563c18756c3 + md5: 872b336081fdbcd407ba6eef96f6651a + depends: + - libgcc >=13 + - python >=3.11,<3.12.0a0 + - python >=3.11,<3.12.0a0 *_cpython + - python_abi 3.11.* *_cp311 + license: Apache-2.0 + license_family: APACHE + size: 54289 + timestamp: 1744525129299 +- conda: https://prefix.dev/conda-forge/osx-arm64/propcache-0.3.1-py311h4921393_0.conda + sha256: 559f330cc40372422f8d9d5068b905b80d6762a8c2c7aeb4886a98ed7023c686 + md5: 667f23d757cbfa63e8b3ecc7e7d34b18 + depends: + - __osx >=11.0 + - python >=3.11,<3.12.0a0 + - python >=3.11,<3.12.0a0 *_cpython + - python_abi 3.11.* *_cp311 + license: Apache-2.0 + license_family: APACHE + size: 51291 + timestamp: 1744525140418 +- conda: https://prefix.dev/conda-forge/win-64/propcache-0.3.1-py311h5082efb_0.conda + sha256: aa123cee8e1ad192896c79e39a88f131e289b66113c177e11933ec5812d69533 + md5: 7ea79e503415ce3f38a73669d3168cee + depends: + - python >=3.11,<3.12.0a0 + - python_abi 3.11.* *_cp311 + - ucrt >=10.0.20348.0 + - vc >=14.2,<15 + - vc14_runtime >=14.29.30139 + license: Apache-2.0 + license_family: APACHE + size: 50616 + timestamp: 1744525381124 +- conda: https://prefix.dev/conda-forge/linux-64/psutil-7.0.0-py311h49ec1c0_1.conda + sha256: 729720d777b14329af411220fd305f78e8914356f963af0053420e1cf5e58a53 + md5: d30c3f3b089100634f93e97e5ee3aa85 + depends: + - __glibc >=2.17,<3.0.a0 + - libgcc >=14 + - python >=3.11,<3.12.0a0 + - python_abi 3.11.* *_cp311 + license: BSD-3-Clause + license_family: BSD + size: 483612 + timestamp: 1755851438911 +- conda: https://prefix.dev/conda-forge/linux-aarch64/psutil-7.0.0-py311h19352d5_1.conda + sha256: ce0638b53e85e60b7f935605479c7b515b0b5afa45976eda18f57e860b875332 + md5: 5a0236728377473c4154a3355dcbf6f8 + depends: + - libgcc >=14 + - python >=3.11,<3.12.0a0 + - python >=3.11,<3.12.0a0 *_cpython + - python_abi 3.11.* *_cp311 + license: BSD-3-Clause + license_family: BSD + size: 486057 + timestamp: 1755851456784 +- conda: https://prefix.dev/conda-forge/osx-arm64/psutil-7.0.0-py311h3696347_1.conda + sha256: c21cd67c4037f232ba539f221839d1bcc7dbcc416d51f821fd319d91b5b61c3b + md5: c449b450f0c81bc09e6a59a07adf95a1 + depends: + - __osx >=11.0 + - python >=3.11,<3.12.0a0 + - python >=3.11,<3.12.0a0 *_cpython + - python_abi 3.11.* *_cp311 + license: BSD-3-Clause + license_family: BSD + size: 493127 + timestamp: 1755851546773 +- conda: https://prefix.dev/conda-forge/win-64/psutil-7.0.0-py311h3485c13_1.conda + sha256: f48c2e47fda7259235f8abb55d219c419df3cc52e2e15ee9ee17da20b86393e5 + md5: cd66a378835a5da422201faac2c114c7 + depends: + - python >=3.11,<3.12.0a0 + - python_abi 3.11.* *_cp311 + - ucrt >=10.0.20348.0 + - vc >=14.3,<15 + - vc14_runtime >=14.44.35208 + license: BSD-3-Clause + license_family: BSD + size: 499413 + timestamp: 1755851559633 +- conda: https://prefix.dev/conda-forge/linux-64/pthread-stubs-0.4-hb9d3cd8_1002.conda + sha256: 9c88f8c64590e9567c6c80823f0328e58d3b1efb0e1c539c0315ceca764e0973 + md5: b3c17d95b5a10c6e64a21fa17573e70e + depends: + - __glibc >=2.17,<3.0.a0 + - libgcc >=13 + license: MIT + license_family: MIT + size: 8252 + timestamp: 1726802366959 +- conda: https://prefix.dev/conda-forge/linux-aarch64/pthread-stubs-0.4-h86ecc28_1002.conda + sha256: 977dfb0cb3935d748521dd80262fe7169ab82920afd38ed14b7fee2ea5ec01ba + md5: bb5a90c93e3bac3d5690acf76b4a6386 + depends: + - libgcc >=13 + license: MIT + license_family: MIT + size: 8342 + timestamp: 1726803319942 +- conda: https://prefix.dev/conda-forge/osx-arm64/pthread-stubs-0.4-hd74edd7_1002.conda + sha256: 8ed65e17fbb0ca944bfb8093b60086e3f9dd678c3448b5de212017394c247ee3 + md5: 415816daf82e0b23a736a069a75e9da7 + depends: + - __osx >=11.0 + license: MIT + license_family: MIT + size: 8381 + timestamp: 1726802424786 +- conda: https://prefix.dev/conda-forge/win-64/pthread-stubs-0.4-h0e40799_1002.conda + sha256: 7e446bafb4d692792310ed022fe284e848c6a868c861655a92435af7368bae7b + md5: 3c8f2573569bb816483e5cf57efbbe29 + depends: + - libgcc >=13 + - libwinpthread >=12.0.0.r4.gg4f2fc60ca + - ucrt >=10.0.20348.0 + license: MIT + license_family: MIT + size: 9389 + timestamp: 1726802555076 +- conda: https://prefix.dev/conda-forge/linux-64/pugixml-1.15-h3f63f65_0.conda + sha256: 23c98a5000356e173568dc5c5770b53393879f946f3ace716bbdefac2a8b23d2 + md5: b11a4c6bf6f6f44e5e143f759ffa2087 + depends: + - __glibc >=2.17,<3.0.a0 + - libgcc >=13 + - libstdcxx >=13 + license: MIT + license_family: MIT + size: 118488 + timestamp: 1736601364156 +- conda: https://prefix.dev/conda-forge/linux-aarch64/pugixml-1.15-h6ef32b0_0.conda + sha256: adc17205a87e064508d809fe5542b7cf49f9b9a458418f8448e2fc895fcd04f3 + md5: 53e14f45d38558aa2b9a15b07416e472 + depends: + - libgcc >=13 + - libstdcxx >=13 + license: MIT + license_family: MIT + size: 113424 + timestamp: 1737355438448 +- conda: https://prefix.dev/conda-forge/osx-arm64/pugixml-1.15-hd3d436d_0.conda + sha256: 5ad8d036040b095f85d23c70624d3e5e1e4c00bc5cea97831542f2dcae294ec9 + md5: b9a4004e46de7aeb005304a13b35cb94 + depends: + - __osx >=11.0 + - libcxx >=18 + license: MIT + license_family: MIT + size: 91283 + timestamp: 1736601509593 +- conda: https://prefix.dev/conda-forge/win-64/pugixml-1.15-h372dad0_0.conda + sha256: 97b34ed73b6f559fcf5e706d4c8435923ba95cfed478d3fd50b475f94f60dc6e + md5: cadea4c6edb512e979edbf793bf979ac + depends: + - ucrt >=10.0.20348.0 + - vc >=14.2,<15 + - vc14_runtime >=14.29.30139 + license: MIT + license_family: MIT + size: 113967 + timestamp: 1736601565527 +- conda: https://prefix.dev/conda-forge/linux-64/pulseaudio-client-17.0-hac146a9_1.conda + sha256: d2377bb571932f2373f593b7b2fc3b9728dc6ae5b993b1b65d7f2c8bb39a0b49 + md5: 66b1fa9608d8836e25f9919159adc9c6 + depends: + - __glibc >=2.17,<3.0.a0 + - dbus >=1.13.6,<2.0a0 + - libgcc >=13 + - libglib >=2.82.2,<3.0a0 + - libiconv >=1.18,<2.0a0 + - libsndfile >=1.2.2,<1.3.0a0 + - libsystemd0 >=257.4 + - libxcb >=1.17.0,<2.0a0 + constrains: + - pulseaudio 17.0 *_1 + license: LGPL-2.1-or-later + license_family: LGPL + size: 764231 + timestamp: 1742507189208 +- conda: https://prefix.dev/conda-forge/linux-aarch64/pulseaudio-client-17.0-h2f84921_1.conda + sha256: 0294728d0a2fc0bdfbcfda98b7ada2d8bb420f76c944fa041ece4140858c2ee5 + md5: a617203ec445f510a3a8651810c735e0 + depends: + - dbus >=1.13.6,<2.0a0 + - libgcc >=13 + - libglib >=2.82.2,<3.0a0 + - libiconv >=1.18,<2.0a0 + - libsndfile >=1.2.2,<1.3.0a0 + - libsystemd0 >=257.4 + - libxcb >=1.17.0,<2.0a0 + constrains: + - pulseaudio 17.0 *_1 + license: LGPL-2.1-or-later + license_family: LGPL + size: 763814 + timestamp: 1742507234837 +- conda: https://prefix.dev/conda-forge/linux-64/py-opencv-4.11.0-qt6_py311h5956852_609.conda + sha256: ec2270e78cdcd9157b9ac0e84dc465f07e054ed6460b077eb14c2e9189fe003f + md5: 9fe7beecda645b849c669555ec749b5e + depends: + - libopencv 4.11.0 qt6_py311h58ab8b7_609 + - libprotobuf >=5.29.3,<5.29.4.0a0 + - numpy >=1.23,<3 + - python >=3.11,<3.12.0a0 + - python_abi 3.11.* *_cp311 + license: Apache-2.0 + license_family: Apache + size: 1155775 + timestamp: 1750899100525 +- conda: https://prefix.dev/conda-forge/linux-aarch64/py-opencv-4.11.0-qt6_py311h01b6c42_609.conda + sha256: aeddfe80bbf16ecaf564a13b387e65b9b725e81c42967f3cdddf7f8ab355323b + md5: 81a13ed91383d21ed36d56baaec06cd7 + depends: + - libopencv 4.11.0 qt6_py311h9691740_609 + - libprotobuf >=5.29.3,<5.29.4.0a0 + - numpy >=1.23,<3 + - python >=3.11,<3.12.0a0 + - python_abi 3.11.* *_cp311 + license: Apache-2.0 + license_family: Apache + size: 1155824 + timestamp: 1750898691622 +- conda: https://prefix.dev/conda-forge/osx-arm64/py-opencv-4.11.0-qt6_py311h28af0ab_609.conda + sha256: 5882d0a64579945504bf1c569324132ed66144fbb3a53e81df426251cad7de73 + md5: 31665f48d45cd43dca519d602640fc55 + depends: + - libopencv 4.11.0 qt6_py311haa5a432_609 + - libprotobuf >=5.29.3,<5.29.4.0a0 + - numpy >=1.23,<3 + - python >=3.11,<3.12.0a0 + - python_abi 3.11.* *_cp311 + license: Apache-2.0 + license_family: Apache + size: 1156197 + timestamp: 1750898351572 +- conda: https://prefix.dev/conda-forge/win-64/py-opencv-4.11.0-qt6_py311h336b8d4_609.conda + sha256: 31088c98b8bece0369a29045c8343ae7887813fad6026ee7d65bb3bf833cb8f8 + md5: 4e76e66f4767a94c523db84c623348bf + depends: + - libopencv 4.11.0 qt6_py311h2b71597_609 + - libprotobuf >=5.29.3,<5.29.4.0a0 + - numpy >=1.23,<3 + - python >=3.11,<3.12.0a0 + - python_abi 3.11.* *_cp311 + license: Apache-2.0 + license_family: Apache + size: 1156368 + timestamp: 1750900440952 +- conda: https://prefix.dev/conda-forge/noarch/pybind11-3.0.0-pyh9380348_1.conda + sha256: 714eaae4187d31a25d8eef72784410bd2ad9155ec690756aa70d2cda1c35dee2 + md5: 309c97c5918389f181cc7d9c29e2a6e5 + depends: + - python >=3.9 + - pybind11-global ==3.0.0 *_1 + - python + constrains: + - pybind11-abi ==11 + license: BSD-3-Clause + license_family: BSD + size: 231086 + timestamp: 1752769966512 +- conda: https://prefix.dev/conda-forge/noarch/pybind11-abi-11-hc364b38_1.conda + sha256: 9e7fe12f727acd2787fb5816b2049cef4604b7a00ad3e408c5e709c298ce8bf1 + md5: f0599959a2447c1e544e216bddf393fa + license: BSD-3-Clause + license_family: BSD + size: 14671 + timestamp: 1752769938071 +- conda: https://prefix.dev/conda-forge/noarch/pybind11-global-3.0.0-pyh229d059_1.conda + sha256: ea36a1a8f3a53415a039eee6909b480e01868831be5ddda37c42048e1e859b44 + md5: b3a4e32a727d4ee9726e83afba8451e9 + depends: + - python >=3.9 + - __win + - python + constrains: + - pybind11-abi ==11 + license: BSD-3-Clause + license_family: BSD + size: 226076 + timestamp: 1752769966512 +- conda: https://prefix.dev/conda-forge/noarch/pybind11-global-3.0.0-pyhf748d72_1.conda + sha256: 7ee5a97d9eb5a0fb0003a2c5d70ec2439c9bfb91fa1d0367efc75307ca5717f8 + md5: 5da3d3a7c804a3cd719448b81dd3dcb5 + depends: + - python >=3.9 + - __unix + - python + constrains: + - pybind11-abi ==11 + license: BSD-3-Clause + license_family: BSD + size: 227229 + timestamp: 1752769938071 +- conda: https://prefix.dev/conda-forge/linux-64/pybullet-3.25-py311h2ed89a0_4.conda + sha256: 91586c22571d410403c0161b5cd5e6904a9301ac1a32346d006add5a213fb633 + md5: e42dc8e97f016935a2f86a420a8ad568 + depends: + - __glibc >=2.17,<3.0.a0 + - bullet-cpp 3.25 h7db5c69_4 + - libgcc >=13 + - libstdcxx >=13 + - libzlib >=1.3.1,<2.0a0 + - numpy >=1.19,<3 + - python >=3.11,<3.12.0a0 + - python_abi 3.11.* *_cp311 + license: Zlib + size: 62898751 + timestamp: 1747516495240 +- conda: https://prefix.dev/conda-forge/linux-aarch64/pybullet-3.25-py311h7b00dee_4.conda + sha256: d6206b7377ddce51a279cb16bdd8cea1ef312f04eba752c62b3bed63fde47a40 + md5: f4b0192b18ac38b8e72471309af678a6 + depends: + - bullet-cpp 3.25 py311h848c333_4 + - libgcc >=13 + - libstdcxx >=13 + - libzlib >=1.3.1,<2.0a0 + - numpy >=1.19,<3 + - python >=3.11,<3.12.0a0 + - python >=3.11,<3.12.0a0 *_cpython + - python_abi 3.11.* *_cp311 + license: Zlib + size: 63342267 + timestamp: 1747516698760 +- conda: https://prefix.dev/conda-forge/osx-arm64/pybullet-3.25-py311he9eb210_4.conda + sha256: f73bd39f196555933422bf81551f3476a808f796e30a6dd488ab36342a4a323f + md5: 21c254ee6ce7dc2304ecefa05666cb5e + depends: + - __osx >=11.0 + - bullet-cpp 3.25 py311hca32420_4 + - libcxx >=18 + - libzlib >=1.3.1,<2.0a0 + - numpy >=1.19,<3 + - python >=3.11,<3.12.0a0 + - python >=3.11,<3.12.0a0 *_cpython + - python_abi 3.11.* *_cp311 + license: Zlib + size: 62629105 + timestamp: 1747516110912 +- conda: https://prefix.dev/conda-forge/win-64/pybullet-3.25-py311h42043a9_4.conda + sha256: dbdda7744222f565ea291c48ec4529a59bd36e281ea4988b4dd3baec953f24ca + md5: 5f2f0a0112f607639691b6800f8166bd + depends: + - bullet-cpp 3.25 hcf9f919_4 + - libzlib >=1.3.1,<2.0a0 + - numpy >=1.19,<3 + - python >=3.11,<3.12.0a0 + - python_abi 3.11.* *_cp311 + - ucrt >=10.0.20348.0 + - vc >=14.2,<15 + - vc14_runtime >=14.29.30139 + license: Zlib + size: 62153077 + timestamp: 1747516653820 +- conda: https://prefix.dev/conda-forge/linux-64/pycairo-1.28.0-py311hd785cd9_0.conda + sha256: 793b7c0ac01659b3c6c94e645af82dfdfdf38362541932a01ad2b89a0599505d + md5: 25e7689a20f93528204330c11075928b + depends: + - __glibc >=2.17,<3.0.a0 + - cairo >=1.18.4,<2.0a0 + - libexpat >=2.7.0,<3.0a0 + - libgcc >=13 + - libzlib >=1.3.1,<2.0a0 + - python >=3.11,<3.12.0a0 + - python_abi 3.11.* *_cp311 + license: LGPL-2.1-only OR MPL-1.1 + size: 117823 + timestamp: 1744682534075 +- conda: https://prefix.dev/conda-forge/linux-aarch64/pycairo-1.28.0-py311h0c1bbf2_0.conda + sha256: d28dfec4ff76590a4079480b3d8f3b64c7de08900b650bdf8a7071dec52fd13c + md5: 24d76f41630c579ff6778535df67d551 + depends: + - cairo >=1.18.4,<2.0a0 + - libexpat >=2.7.0,<3.0a0 + - libgcc >=13 + - libzlib >=1.3.1,<2.0a0 + - python >=3.11,<3.12.0a0 + - python_abi 3.11.* *_cp311 + license: LGPL-2.1-only OR MPL-1.1 + size: 121202 + timestamp: 1744684213740 +- conda: https://prefix.dev/conda-forge/osx-arm64/pycairo-1.28.0-py311h8a0deb1_0.conda + sha256: 9c1b125fa664c71c789f70607c35053fb8fa04abc36bfff22775b0f25bf4fa7a + md5: 0c6523fd51b12c48e7cd256d8fb6309f + depends: + - __osx >=11.0 + - cairo >=1.18.4,<2.0a0 + - libexpat >=2.7.0,<3.0a0 + - libzlib >=1.3.1,<2.0a0 + - python >=3.11,<3.12.0a0 + - python >=3.11,<3.12.0a0 *_cpython + - python_abi 3.11.* *_cp311 + license: LGPL-2.1-only OR MPL-1.1 + size: 106180 + timestamp: 1744682953668 +- conda: https://prefix.dev/conda-forge/win-64/pycairo-1.28.0-py311h80daabd_0.conda + sha256: 15f8fae9328e57ef0c1b668be97c2c40f55a411ebceda875e535e07b91ff5344 + md5: 9d75105157665cff95b395b5fdd90911 + depends: + - cairo >=1.18.4,<2.0a0 + - libexpat >=2.7.0,<3.0a0 + - libzlib >=1.3.1,<2.0a0 + - python >=3.11,<3.12.0a0 + - python_abi 3.11.* *_cp311 + - ucrt >=10.0.20348.0 + - vc >=14.2,<15 + - vc14_runtime >=14.29.30139 + license: LGPL-2.1-only OR MPL-1.1 + size: 103892 + timestamp: 1744683056178 +- conda: https://prefix.dev/conda-forge/noarch/pycodestyle-2.14.0-pyhd8ed1ab_0.conda + sha256: 1950f71ff44e64163e176b1ca34812afc1a104075c3190de50597e1623eb7d53 + md5: 85815c6a22905c080111ec8d56741454 + depends: + - python >=3.9 + license: MIT + license_family: MIT + size: 35182 + timestamp: 1750616054854 +- conda: https://prefix.dev/conda-forge/noarch/pycparser-2.22-pyh29332c3_1.conda + sha256: 79db7928d13fab2d892592223d7570f5061c192f27b9febd1a418427b719acc6 + md5: 12c566707c80111f9799308d9e265aef + depends: + - python >=3.9 + - python + license: BSD-3-Clause + license_family: BSD + size: 110100 + timestamp: 1733195786147 +- conda: https://prefix.dev/conda-forge/noarch/pydocstyle-6.3.0-pyhd8ed1ab_1.conda + sha256: 83ab8434e3baf6a018914da4f1c2ae9023e23fb41e131b68b3e3f9ca41ecef61 + md5: a36aa6e0119331d3280f4bba043314c7 + depends: + - python >=3.9 + - snowballstemmer >=2.2.0 + - tomli >=1.2.3 + license: MIT + license_family: MIT + size: 40236 + timestamp: 1733261742916 +- conda: https://prefix.dev/conda-forge/linux-64/pydot-4.0.1-py311h38be061_0.conda + sha256: 7483218e6ff1f7b0bbd3b7fb9c71c1b8fda70722ae5e10747db1bee04fd4460d + md5: 65cb377afd9f3f8b3077008677926315 + depends: + - graphviz >=2.38.0 + - pyparsing >=3.0.9 + - python >=3.11,<3.12.0a0 + - python_abi 3.11.* *_cp311 + license: MIT + license_family: MIT + size: 86816 + timestamp: 1750503649380 +- conda: https://prefix.dev/conda-forge/linux-aarch64/pydot-4.0.1-py311hec3470c_0.conda + sha256: 0a1bdca9856389fc076197fe3999f6d4f3f40f3fe7c5d1a1273cae73cd78efc8 + md5: fed0ef8a00d124dc9ce109c7c66b02ad + depends: + - graphviz >=2.38.0 + - pyparsing >=3.0.9 + - python >=3.11,<3.12.0a0 + - python >=3.11,<3.12.0a0 *_cpython + - python_abi 3.11.* *_cp311 + license: MIT + license_family: MIT + size: 86935 + timestamp: 1750503778267 +- conda: https://prefix.dev/conda-forge/osx-arm64/pydot-4.0.1-py311h267d04e_0.conda + sha256: 94e84420d92630d8f846c09c7490301ac7c90dc0d4098ae83222b347ae756640 + md5: 1c8de6a8784ef6959bb72006d019bbf8 + depends: + - graphviz >=2.38.0 + - pyparsing >=3.0.9 + - python >=3.11,<3.12.0a0 + - python >=3.11,<3.12.0a0 *_cpython + - python_abi 3.11.* *_cp311 + license: MIT + license_family: MIT + size: 87084 + timestamp: 1750503910887 +- conda: https://prefix.dev/conda-forge/win-64/pydot-4.0.1-py311h1ea47a8_0.conda + sha256: bc1ba2a10826e6ed5085c35d0a28175fccb4a538370c5d44d1e23438f7f781c8 + md5: 6b37cb8eb3ed067f6cbe8669172cce4d + depends: + - graphviz >=2.38.0 + - pyparsing >=3.0.9 + - python >=3.11,<3.12.0a0 + - python_abi 3.11.* *_cp311 + license: MIT + license_family: MIT + size: 86838 + timestamp: 1750503746924 +- conda: https://prefix.dev/conda-forge/noarch/pyflakes-3.4.0-pyhd8ed1ab_0.conda + sha256: 4b6fb3f7697b4e591c06149671699777c71ca215e9ec16d5bd0767425e630d65 + md5: dba204e749e06890aeb3756ef2b1bf35 + depends: + - python >=3.9 + license: MIT + license_family: MIT + size: 59592 + timestamp: 1750492011671 +- conda: https://prefix.dev/conda-forge/noarch/pygments-2.19.2-pyhd8ed1ab_0.conda + sha256: 5577623b9f6685ece2697c6eb7511b4c9ac5fb607c9babc2646c811b428fd46a + md5: 6b6ece66ebcae2d5f326c77ef2c5a066 + depends: + - python >=3.9 + license: BSD-2-Clause + license_family: BSD + size: 889287 + timestamp: 1750615908735 +- conda: https://prefix.dev/conda-forge/noarch/pyparsing-3.2.3-pyhe01879c_2.conda + sha256: afe32182b1090911b64ac0f29eb47e03a015d142833d8a917defd65d91c99b74 + md5: aa0028616c0750c773698fdc254b2b8d + depends: + - python >=3.9 + - python + license: MIT + license_family: MIT + size: 102292 + timestamp: 1753873557076 +- conda: https://prefix.dev/conda-forge/linux-64/pyqt-5.15.11-py311he22028a_1.conda + sha256: c2b568492db18dfaf9d920498bc338c657a2a5db65ed82287f73846ecea0fe66 + md5: bfd19c4ed7170fe34df119f5b225a5bf + depends: + - __glibc >=2.17,<3.0.a0 + - libegl >=1.7.0,<2.0a0 + - libgcc >=13 + - libgl >=1.7.0,<2.0a0 + - libopengl >=1.7.0,<2.0a0 + - libstdcxx >=13 + - pyqt5-sip 12.17.0 py311hfdbb021_1 + - python >=3.11,<3.12.0a0 + - python_abi 3.11.* *_cp311 + - qt-main >=5.15.15,<5.16.0a0 + - sip >=6.10.0,<6.11.0a0 + - xcb-util >=0.4.1,<0.5.0a0 + - xcb-util-image >=0.4.0,<0.5.0a0 + - xcb-util-keysyms >=0.4.1,<0.5.0a0 + - xcb-util-renderutil >=0.3.10,<0.4.0a0 + - xcb-util-wm >=0.4.2,<0.5.0a0 + - xorg-libice >=1.1.2,<2.0a0 + - xorg-libsm >=1.2.6,<2.0a0 + - xorg-libx11 >=1.8.12,<2.0a0 + - xorg-libxcomposite >=0.4.6,<1.0a0 + - xorg-libxdamage >=1.1.6,<2.0a0 + - xorg-libxext >=1.3.6,<2.0a0 + - xorg-libxxf86vm >=1.1.6,<2.0a0 + license: GPL-3.0-only + license_family: GPL + size: 5242946 + timestamp: 1749226326779 +- conda: https://prefix.dev/conda-forge/linux-aarch64/pyqt-5.15.11-py311h70a6756_1.conda + sha256: 9a85ce43d1a34e6ae79f03d14a93de16254191fcbc8bb6041f8c6feadb528941 + md5: 34707ca04fc77d1b7930dfd51b6dbd8b + depends: + - libegl >=1.7.0,<2.0a0 + - libgcc >=13 + - libgl >=1.7.0,<2.0a0 + - libopengl >=1.7.0,<2.0a0 + - libstdcxx >=13 + - pyqt5-sip 12.17.0 py311h89d996e_1 + - python >=3.11,<3.12.0a0 + - python >=3.11,<3.12.0a0 *_cpython + - python_abi 3.11.* *_cp311 + - qt-main >=5.15.15,<5.16.0a0 + - xcb-util >=0.4.1,<0.5.0a0 + - xcb-util-image >=0.4.0,<0.5.0a0 + - xcb-util-keysyms >=0.4.1,<0.5.0a0 + - xcb-util-renderutil >=0.3.10,<0.4.0a0 + - xcb-util-wm >=0.4.2,<0.5.0a0 + - xorg-libice >=1.1.2,<2.0a0 + - xorg-libsm >=1.2.6,<2.0a0 + - xorg-libx11 >=1.8.12,<2.0a0 + - xorg-libxcomposite >=0.4.6,<1.0a0 + - xorg-libxdamage >=1.1.6,<2.0a0 + - xorg-libxext >=1.3.6,<2.0a0 + - xorg-libxxf86vm >=1.1.6,<2.0a0 + license: GPL-3.0-only + license_family: GPL + size: 6273625 + timestamp: 1749226653991 +- conda: https://prefix.dev/conda-forge/osx-arm64/pyqt-5.15.11-py311h2146069_1.conda + sha256: 92f61d8aac18de3671bfc5f4d4e9e8b2b85715077f9b31e5f3d3235bc5deeafb + md5: 8909cf082fc6ef72c70658011d5e7232 + depends: + - __osx >=11.0 + - libcxx >=18 + - pyqt5-sip 12.17.0 py311h155a34a_1 + - python >=3.11,<3.12.0a0 + - python >=3.11,<3.12.0a0 *_cpython + - python_abi 3.11.* *_cp311 + - qt-main >=5.15.15,<5.16.0a0 + license: GPL-3.0-only + license_family: GPL + size: 3967420 + timestamp: 1749226261628 +- conda: https://prefix.dev/conda-forge/win-64/pyqt-5.15.11-py311h2d05f59_1.conda + sha256: 2233b8b78dde2d364811095ca6f9c14e553e2f92076ea28632fa59e993de90c7 + md5: ea51bea0016f502880c2d067c458bd56 + depends: + - pyqt5-sip 12.17.0 py311hda3d55a_1 + - python >=3.11,<3.12.0a0 + - python_abi 3.11.* *_cp311 + - qt-main >=5.15.15,<5.16.0a0 + - sip >=6.10.0,<6.11.0a0 + - ucrt >=10.0.20348.0 + - vc >=14.2,<15 + - vc14_runtime >=14.29.30139 + license: GPL-3.0-only + license_family: GPL + size: 3908452 + timestamp: 1749226835914 +- conda: https://prefix.dev/conda-forge/noarch/pyqt-builder-1.15.4-pyhd8ed1ab_1.conda + sha256: 7000bf38da6e5235b4501567a947b98c16bd3a64ed24a2b3810ee7952d93becf + md5: e7e42825f9277818ad114fea56385dae + depends: + - packaging + - python >=3.9 + - sip + - toml + license: GPL-3.0-only + license_family: GPL + size: 2965472 + timestamp: 1742182116448 +- conda: https://prefix.dev/conda-forge/linux-64/pyqt5-sip-12.17.0-py311hfdbb021_1.conda + sha256: f2fbe31a7bd423c2d473516de5a2f648f6cc598350d233d2459390a6da8b15bc + md5: e5dfc88ced7eae4918db0dd17c28633f + depends: + - __glibc >=2.17,<3.0.a0 + - libgcc >=13 + - libstdcxx >=13 + - packaging + - python >=3.11,<3.12.0a0 + - python_abi 3.11.* *_cp311 + - sip + - toml + license: GPL-3.0-only + license_family: GPL + size: 84215 + timestamp: 1749224312844 +- conda: https://prefix.dev/conda-forge/linux-aarch64/pyqt5-sip-12.17.0-py311h89d996e_1.conda + sha256: af218fa6c4816e7591b50db5c58191ebd961c36821cdb84b0f75e962bd513089 + md5: 823252563080739289e81ac6e7bbac4b + depends: + - libgcc >=13 + - libstdcxx >=13 + - packaging + - python >=3.11,<3.12.0a0 + - python >=3.11,<3.12.0a0 *_cpython + - python_abi 3.11.* *_cp311 + - sip + - toml + license: GPL-3.0-only + license_family: GPL + size: 89209 + timestamp: 1749224391517 +- conda: https://prefix.dev/conda-forge/osx-arm64/pyqt5-sip-12.17.0-py311h155a34a_1.conda + sha256: 2e7a375faa60668d63eb5f5ccfe5ee79eea2698478b00cf0baacc07a4a47b8f5 + md5: 2e17721a68314daf89c676a1ddcd79c1 + depends: + - __osx >=11.0 + - libcxx >=18 + - packaging + - python >=3.11,<3.12.0a0 + - python >=3.11,<3.12.0a0 *_cpython + - python_abi 3.11.* *_cp311 + - sip + - toml + license: GPL-3.0-only + license_family: GPL + size: 73888 + timestamp: 1749224403256 +- conda: https://prefix.dev/conda-forge/win-64/pyqt5-sip-12.17.0-py311hda3d55a_1.conda + sha256: 2c42a900bc43fc87f9c860391f2b6c306659faf213ed5e32e9f50db44e717610 + md5: 71c0c9b9343cdb746a8b8403329a193f + depends: + - packaging + - python >=3.11,<3.12.0a0 + - python_abi 3.11.* *_cp311 + - sip + - toml + - ucrt >=10.0.20348.0 + - vc >=14.2,<15 + - vc14_runtime >=14.29.30139 + license: GPL-3.0-only + license_family: GPL + size: 75820 + timestamp: 1749224745973 +- conda: https://prefix.dev/conda-forge/noarch/pytest-8.4.1-pyhd8ed1ab_0.conda + sha256: 93e267e4ec35353e81df707938a6527d5eb55c97bf54c3b87229b69523afb59d + md5: a49c2283f24696a7b30367b7346a0144 + depends: + - colorama >=0.4 + - exceptiongroup >=1 + - iniconfig >=1 + - packaging >=20 + - pluggy >=1.5,<2 + - pygments >=2.7.2 + - python >=3.9 + - tomli >=1 + constrains: + - pytest-faulthandler >=2 + license: MIT + license_family: MIT + size: 276562 + timestamp: 1750239526127 +- conda: https://prefix.dev/conda-forge/linux-64/python-3.11.13-h9e4cc4f_0_cpython.conda + sha256: 9979a7d4621049388892489267139f1aa629b10c26601ba5dce96afc2b1551d4 + md5: 8c399445b6dc73eab839659e6c7b5ad1 + depends: + - __glibc >=2.17,<3.0.a0 + - bzip2 >=1.0.8,<2.0a0 + - ld_impl_linux-64 >=2.36.1 + - libexpat >=2.7.0,<3.0a0 + - libffi >=3.4.6,<3.5.0a0 + - libgcc >=13 + - liblzma >=5.8.1,<6.0a0 + - libnsl >=2.0.1,<2.1.0a0 + - libsqlite >=3.50.0,<4.0a0 + - libuuid >=2.38.1,<3.0a0 + - libxcrypt >=4.4.36 + - libzlib >=1.3.1,<2.0a0 + - ncurses >=6.5,<7.0a0 + - openssl >=3.5.0,<4.0a0 + - readline >=8.2,<9.0a0 + - tk >=8.6.13,<8.7.0a0 + - tzdata + constrains: + - python_abi 3.11.* *_cp311 + license: Python-2.0 + size: 30629559 + timestamp: 1749050021812 +- conda: https://prefix.dev/conda-forge/linux-aarch64/python-3.11.13-h1683364_0_cpython.conda + sha256: b44a026ac1fb82f81ec59d4da49db25add375202f7f395b6c2cb1384ad6a33d6 + md5: 4efe51e746f7c0abc30338e6b3d13323 + depends: + - bzip2 >=1.0.8,<2.0a0 + - ld_impl_linux-aarch64 >=2.36.1 + - libexpat >=2.7.0,<3.0a0 + - libffi >=3.4.6,<3.5.0a0 + - libgcc >=13 + - liblzma >=5.8.1,<6.0a0 + - libnsl >=2.0.1,<2.1.0a0 + - libsqlite >=3.50.0,<4.0a0 + - libuuid >=2.38.1,<3.0a0 + - libxcrypt >=4.4.36 + - libzlib >=1.3.1,<2.0a0 + - ncurses >=6.5,<7.0a0 + - openssl >=3.5.0,<4.0a0 + - readline >=8.2,<9.0a0 + - tk >=8.6.13,<8.7.0a0 + - tzdata + constrains: + - python_abi 3.11.* *_cp311 + license: Python-2.0 + size: 15306062 + timestamp: 1749048115706 +- conda: https://prefix.dev/conda-forge/osx-arm64/python-3.11.13-hc22306f_0_cpython.conda + sha256: 2c966293ef9e97e66b55747c7a97bc95ba0311ac1cf0d04be4a51aafac60dcb1 + md5: 95facc4683b7b3b9cf8ae0ed10f30dce + depends: + - __osx >=11.0 + - bzip2 >=1.0.8,<2.0a0 + - libexpat >=2.7.0,<3.0a0 + - libffi >=3.4.6,<3.5.0a0 + - liblzma >=5.8.1,<6.0a0 + - libsqlite >=3.50.0,<4.0a0 + - libzlib >=1.3.1,<2.0a0 + - ncurses >=6.5,<7.0a0 + - openssl >=3.5.0,<4.0a0 + - readline >=8.2,<9.0a0 + - tk >=8.6.13,<8.7.0a0 + - tzdata + constrains: + - python_abi 3.11.* *_cp311 + license: Python-2.0 + size: 14573820 + timestamp: 1749048947732 +- conda: https://prefix.dev/conda-forge/win-64/python-3.11.13-h3f84c4b_0_cpython.conda + sha256: 723dbca1384f30bd2070f77dd83eefd0e8d7e4dda96ac3332fbf8fe5573a8abb + md5: bedbb6f7bb654839719cd528f9b298ad + depends: + - bzip2 >=1.0.8,<2.0a0 + - libexpat >=2.7.0,<3.0a0 + - libffi >=3.4.6,<3.5.0a0 + - liblzma >=5.8.1,<6.0a0 + - libsqlite >=3.50.0,<4.0a0 + - libzlib >=1.3.1,<2.0a0 + - openssl >=3.5.0,<4.0a0 + - tk >=8.6.13,<8.7.0a0 + - tzdata + - ucrt >=10.0.20348.0 + - vc >=14.2,<15 + - vc14_runtime >=14.29.30139 + constrains: + - python_abi 3.11.* *_cp311 + license: Python-2.0 + size: 18242669 + timestamp: 1749048351218 +- conda: https://prefix.dev/conda-forge/noarch/python-dateutil-2.9.0.post0-pyhe01879c_2.conda + sha256: d6a17ece93bbd5139e02d2bd7dbfa80bee1a4261dced63f65f679121686bf664 + md5: 5b8d21249ff20967101ffa321cab24e8 + depends: + - python >=3.9 + - six >=1.5 + - python + license: Apache-2.0 + license_family: APACHE + size: 233310 + timestamp: 1751104122689 +- conda: https://prefix.dev/conda-forge/linux-64/python-orocos-kdl-1.5.1-py311hfdbb021_8.conda + sha256: e58d40c89e354eaf7e17390db3ff59e5d5f623340ba71be10f6c94a987b509cd + md5: adecf45c8712909cf59a7448db5ee98f + depends: + - __glibc >=2.17,<3.0.a0 + - eigen + - libgcc >=13 + - libstdcxx >=13 + - orocos-kdl + - pybind11 + - python >=3.11,<3.12.0a0 + - python_abi 3.11.* *_cp311 + license: LGPL-2.1-or-later + license_family: LGPL + size: 304029 + timestamp: 1729198433320 +- conda: https://prefix.dev/conda-forge/linux-aarch64/python-orocos-kdl-1.5.1-py311h89d996e_8.conda + sha256: 159f227d27b96c662e8cf5ac0e60c5505f3a60e35e9ebc9ca87922d24dad4412 + md5: f54d59fc816b0a54987bcca093b488f3 + depends: + - eigen + - libgcc >=13 + - libstdcxx >=13 + - orocos-kdl + - pybind11 + - python >=3.11,<3.12.0a0 + - python >=3.11,<3.12.0a0 *_cpython + - python_abi 3.11.* *_cp311 + license: LGPL-2.1-or-later + license_family: LGPL + size: 256737 + timestamp: 1729198557240 +- conda: https://prefix.dev/conda-forge/osx-arm64/python-orocos-kdl-1.5.1-py311h6885ffc_8.conda + sha256: e4aab5bdcba25a333ab35cc79f7f2941a5c01af74a071fd4f73253d95c22774f + md5: 333854d317509522ed28405c81a87f85 + depends: + - __osx >=11.0 + - eigen + - libcxx >=17 + - orocos-kdl + - pybind11 + - python >=3.11,<3.12.0a0 + - python >=3.11,<3.12.0a0 *_cpython + - python_abi 3.11.* *_cp311 + license: LGPL-2.1-or-later + license_family: LGPL + size: 253023 + timestamp: 1729198173712 +- conda: https://prefix.dev/conda-forge/win-64/python-orocos-kdl-1.5.1-py311hda3d55a_8.conda + sha256: 20741b3164b8b91194ecc9e697796240e93c00183d0c0d676e4bf793e14fe9f8 + md5: 726e6b7342265b269b28411f5e1ffcc1 + depends: + - eigen + - orocos-kdl + - pybind11 + - python >=3.11,<3.12.0a0 + - python_abi 3.11.* *_cp311 + - ucrt >=10.0.20348.0 + - vc >=14.2,<15 + - vc14_runtime >=14.29.30139 + license: LGPL-2.1-or-later + license_family: LGPL + size: 365080 + timestamp: 1729198828200 +- conda: https://prefix.dev/conda-forge/noarch/python_abi-3.11-8_cp311.conda + build_number: 8 + sha256: fddf123692aa4b1fc48f0471e346400d9852d96eeed77dbfdd746fa50a8ff894 + md5: 8fcb6b0e2161850556231336dae58358 + constrains: + - python 3.11.* *_cpython + license: BSD-3-Clause + license_family: BSD + size: 7003 + timestamp: 1752805919375 +- conda: https://prefix.dev/conda-forge/linux-64/pyyaml-6.0.2-py311h2dc5d0c_2.conda + sha256: d107ad62ed5c62764fba9400f2c423d89adf917d687c7f2e56c3bfed605fb5b3 + md5: 014417753f948da1f70d132b2de573be + depends: + - __glibc >=2.17,<3.0.a0 + - libgcc >=13 + - python >=3.11,<3.12.0a0 + - python_abi 3.11.* *_cp311 + - yaml >=0.2.5,<0.3.0a0 + license: MIT + license_family: MIT + size: 213136 + timestamp: 1737454846598 +- conda: https://prefix.dev/conda-forge/linux-aarch64/pyyaml-6.0.2-py311h58d527c_2.conda + sha256: b7eb3696fae7e3ae66d523f422fc4757b1842b23f022ad5d0c94209f75c258b2 + md5: 01b93dc85ced3be09926e04498cbd260 + depends: + - libgcc >=13 + - python >=3.11,<3.12.0a0 + - python >=3.11,<3.12.0a0 *_cpython + - python_abi 3.11.* *_cp311 + - yaml >=0.2.5,<0.3.0a0 + license: MIT + license_family: MIT + size: 206194 + timestamp: 1737454848998 +- conda: https://prefix.dev/conda-forge/osx-arm64/pyyaml-6.0.2-py311h4921393_2.conda + sha256: 2af6006c9f692742181f4aa2e0656eb112981ccb0b420b899d3dd42c881bd72f + md5: 250b2ee8777221153fd2de9c279a7efa + depends: + - __osx >=11.0 + - python >=3.11,<3.12.0a0 + - python >=3.11,<3.12.0a0 *_cpython + - python_abi 3.11.* *_cp311 + - yaml >=0.2.5,<0.3.0a0 + license: MIT + license_family: MIT + size: 196951 + timestamp: 1737454935552 +- conda: https://prefix.dev/conda-forge/win-64/pyyaml-6.0.2-py311h5082efb_2.conda + sha256: 6095e1d58c666f6a06c55338df09485eac34c76e43d92121d5786794e195aa4d + md5: e474ba674d780f0fa3b979ae9e81ba91 + depends: + - python >=3.11,<3.12.0a0 + - python_abi 3.11.* *_cp311 + - ucrt >=10.0.20348.0 + - vc >=14.2,<15 + - vc14_runtime >=14.29.30139 + - yaml >=0.2.5,<0.3.0a0 + license: MIT + license_family: MIT + size: 187430 + timestamp: 1737454904007 +- conda: https://prefix.dev/conda-forge/linux-64/qhull-2020.2-h434a139_5.conda + sha256: 776363493bad83308ba30bcb88c2552632581b143e8ee25b1982c8c743e73abc + md5: 353823361b1d27eb3960efb076dfcaf6 + depends: + - __glibc >=2.17,<3.0.a0 + - libgcc-ng >=12 + - libstdcxx-ng >=12 + license: LicenseRef-Qhull + size: 552937 + timestamp: 1720813982144 +- conda: https://prefix.dev/conda-forge/linux-aarch64/qhull-2020.2-h70be974_5.conda + sha256: 49f777bdf3c5e030a8c7b24c58cdfe9486b51d6ae0001841079a3228bdf9fb51 + md5: bb138086d938e2b64f5f364945793ebf + depends: + - libgcc-ng >=12 + - libstdcxx-ng >=12 + license: LicenseRef-Qhull + size: 554571 + timestamp: 1720813941183 +- conda: https://prefix.dev/conda-forge/osx-arm64/qhull-2020.2-h420ef59_5.conda + sha256: 873ac689484262a51fd79bc6103c1a1bedbf524924d7f0088fb80703042805e4 + md5: 6483b1f59526e05d7d894e466b5b6924 + depends: + - __osx >=11.0 + - libcxx >=16 + license: LicenseRef-Qhull + size: 516376 + timestamp: 1720814307311 +- conda: https://prefix.dev/conda-forge/win-64/qhull-2020.2-hc790b64_5.conda + sha256: 887d53486a37bd870da62b8fa2ebe3993f912ad04bd755e7ed7c47ced97cbaa8 + md5: 854fbdff64b572b5c0b470f334d34c11 + depends: + - ucrt >=10.0.20348.0 + - vc >=14.2,<15 + - vc14_runtime >=14.29.30139 + license: LicenseRef-Qhull + size: 1377020 + timestamp: 1720814433486 +- conda: https://prefix.dev/conda-forge/linux-64/qt-main-5.15.15-hea1682b_4.conda + sha256: 723a2afd0a1d15baf20117ba6fa5c03ecb161557c607ef542eb017ff422198f7 + md5: c054d7f22cc719e12c72d454b2328d6c + depends: + - __glibc >=2.17,<3.0.a0 + - alsa-lib >=1.2.14,<1.3.0a0 + - dbus >=1.13.6,<2.0a0 + - fontconfig >=2.15.0,<3.0a0 + - fonts-conda-ecosystem + - gst-plugins-base >=1.24.11,<1.25.0a0 + - gstreamer >=1.24.11,<1.25.0a0 + - harfbuzz >=11.0.1 + - icu >=75.1,<76.0a0 + - krb5 >=1.21.3,<1.22.0a0 + - libclang-cpp20.1 >=20.1.4,<20.2.0a0 + - libclang13 >=20.1.4 + - libcups >=2.3.3,<2.4.0a0 + - libdrm >=2.4.124,<2.5.0a0 + - libegl >=1.7.0,<2.0a0 + - libevent >=2.1.12,<2.1.13.0a0 + - libexpat >=2.7.0,<3.0a0 + - libfreetype >=2.13.3 + - libfreetype6 >=2.13.3 + - libgcc >=13 + - libgl >=1.7.0,<2.0a0 + - libglib >=2.84.1,<3.0a0 + - libjpeg-turbo >=3.1.0,<4.0a0 + - libllvm20 >=20.1.4,<20.2.0a0 + - libpng >=1.6.47,<1.7.0a0 + - libpq >=17.5,<18.0a0 + - libsqlite >=3.49.2,<4.0a0 + - libstdcxx >=13 + - libxcb >=1.17.0,<2.0a0 + - libxkbcommon >=1.9.2,<2.0a0 + - libxml2 >=2.13.8,<2.14.0a0 + - libzlib >=1.3.1,<2.0a0 + - nspr >=4.36,<5.0a0 + - nss >=3.111,<4.0a0 + - openssl >=3.5.0,<4.0a0 + - pulseaudio-client >=17.0,<17.1.0a0 + - xcb-util >=0.4.1,<0.5.0a0 + - xcb-util-image >=0.4.0,<0.5.0a0 + - xcb-util-keysyms >=0.4.1,<0.5.0a0 + - xcb-util-renderutil >=0.3.10,<0.4.0a0 + - xcb-util-wm >=0.4.2,<0.5.0a0 + - xorg-libice >=1.1.2,<2.0a0 + - xorg-libsm >=1.2.6,<2.0a0 + - xorg-libx11 >=1.8.12,<2.0a0 + - xorg-libxdamage >=1.1.6,<2.0a0 + - xorg-libxext >=1.3.6,<2.0a0 + - xorg-libxxf86vm >=1.1.6,<2.0a0 + - zstd >=1.5.7,<1.6.0a0 + constrains: + - qt 5.15.15 + license: LGPL-3.0-only + license_family: LGPL + size: 52525654 + timestamp: 1747033292625 +- conda: https://prefix.dev/conda-forge/linux-aarch64/qt-main-5.15.15-hf34aa0b_4.conda + sha256: 22646cfab7c5c72f2dfb1b5867550713bf1362171bc5d0c7c0abbbf45026c086 + md5: d30d4069d51ada57f4d4d20ce4aed465 + depends: + - alsa-lib >=1.2.14,<1.3.0a0 + - dbus >=1.13.6,<2.0a0 + - fontconfig >=2.15.0,<3.0a0 + - fonts-conda-ecosystem + - gst-plugins-base >=1.24.11,<1.25.0a0 + - gstreamer >=1.24.11,<1.25.0a0 + - harfbuzz >=11.0.1 + - icu >=75.1,<76.0a0 + - krb5 >=1.21.3,<1.22.0a0 + - libclang-cpp20.1 >=20.1.4,<20.2.0a0 + - libclang13 >=20.1.4 + - libcups >=2.3.3,<2.4.0a0 + - libdrm >=2.4.124,<2.5.0a0 + - libegl >=1.7.0,<2.0a0 + - libevent >=2.1.12,<2.1.13.0a0 + - libexpat >=2.7.0,<3.0a0 + - libfreetype >=2.13.3 + - libfreetype6 >=2.13.3 + - libgcc >=13 + - libgl >=1.7.0,<2.0a0 + - libglib >=2.84.1,<3.0a0 + - libjpeg-turbo >=3.1.0,<4.0a0 + - libllvm20 >=20.1.4,<20.2.0a0 + - libpng >=1.6.47,<1.7.0a0 + - libpq >=17.4,<18.0a0 + - libsqlite >=3.49.2,<4.0a0 + - libstdcxx >=13 + - libxcb >=1.17.0,<2.0a0 + - libxkbcommon >=1.9.2,<2.0a0 + - libxml2 >=2.13.8,<2.14.0a0 + - libzlib >=1.3.1,<2.0a0 + - nspr >=4.36,<5.0a0 + - nss >=3.111,<4.0a0 + - openssl >=3.5.0,<4.0a0 + - pulseaudio-client >=17.0,<17.1.0a0 + - xcb-util >=0.4.1,<0.5.0a0 + - xcb-util-image >=0.4.0,<0.5.0a0 + - xcb-util-keysyms >=0.4.1,<0.5.0a0 + - xcb-util-renderutil >=0.3.10,<0.4.0a0 + - xcb-util-wm >=0.4.2,<0.5.0a0 + - xorg-libice >=1.1.2,<2.0a0 + - xorg-libsm >=1.2.6,<2.0a0 + - xorg-libx11 >=1.8.12,<2.0a0 + - xorg-libxdamage >=1.1.6,<2.0a0 + - xorg-libxext >=1.3.6,<2.0a0 + - xorg-libxxf86vm >=1.1.6,<2.0a0 + - zstd >=1.5.7,<1.6.0a0 + constrains: + - qt 5.15.15 + license: LGPL-3.0-only + license_family: LGPL + size: 51814164 + timestamp: 1746739351687 +- conda: https://prefix.dev/conda-forge/osx-arm64/qt-main-5.15.15-h67564f6_4.conda + sha256: aa96deb8e679a36ca462abfa9ae543ac513c1d85e2430535898ae7bbae702feb + md5: eaa0f63bb28febb724d984f9a303d731 + depends: + - __osx >=11.0 + - gst-plugins-base >=1.24.11,<1.25.0a0 + - gstreamer >=1.24.11,<1.25.0a0 + - icu >=75.1,<76.0a0 + - krb5 >=1.21.3,<1.22.0a0 + - libclang-cpp17 >=17.0.6,<17.1.0a0 + - libclang13 >=17.0.6 + - libcxx >=17 + - libglib >=2.84.1,<3.0a0 + - libjpeg-turbo >=3.1.0,<4.0a0 + - libllvm17 >=17.0.6,<17.1.0a0 + - libpng >=1.6.47,<1.7.0a0 + - libpq >=17.5,<18.0a0 + - libsqlite >=3.49.2,<4.0a0 + - libzlib >=1.3.1,<2.0a0 + - nspr >=4.36,<5.0a0 + - nss >=3.111,<4.0a0 + - zstd >=1.5.7,<1.6.0a0 + constrains: + - qt 5.15.15 + license: LGPL-3.0-only + license_family: LGPL + size: 49825159 + timestamp: 1747032500667 +- conda: https://prefix.dev/conda-forge/win-64/qt-main-5.15.15-h9151539_4.conda + sha256: 3db8756256e368869c2bce6e6d9aa7b8331e991c96c647f6899243af56b73c91 + md5: 299d235c59cd38c436f0cde97449496a + depends: + - gst-plugins-base >=1.24.11,<1.25.0a0 + - gstreamer >=1.24.11,<1.25.0a0 + - icu >=75.1,<76.0a0 + - krb5 >=1.21.3,<1.22.0a0 + - libclang13 >=20.1.4 + - libglib >=2.84.1,<3.0a0 + - libjpeg-turbo >=3.1.0,<4.0a0 + - libpng >=1.6.47,<1.7.0a0 + - libsqlite >=3.49.2,<4.0a0 + - libzlib >=1.3.1,<2.0a0 + - openssl >=3.5.0,<4.0a0 + - ucrt >=10.0.20348.0 + - vc >=14.2,<15 + - vc14_runtime >=14.29.30139 + - zstd >=1.5.7,<1.6.0a0 + constrains: + - qt 5.15.15 + license: LGPL-3.0-only + license_family: LGPL + size: 59723234 + timestamp: 1747037191195 +- conda: https://prefix.dev/conda-forge/linux-64/qt6-main-6.9.1-h6ac528c_2.conda + sha256: 8795462e675b7235ad3e01ff3367722a37915c7084d0fb897b328b7e28a358eb + md5: 34ccdb55340a25761efbac1ff1504091 + depends: + - __glibc >=2.17,<3.0.a0 + - alsa-lib >=1.2.14,<1.3.0a0 + - dbus >=1.16.2,<2.0a0 + - double-conversion >=3.3.1,<3.4.0a0 + - fontconfig >=2.15.0,<3.0a0 + - fonts-conda-ecosystem + - harfbuzz >=11.0.1 + - icu >=75.1,<76.0a0 + - krb5 >=1.21.3,<1.22.0a0 + - libclang-cpp20.1 >=20.1.8,<20.2.0a0 + - libclang13 >=20.1.8 + - libcups >=2.3.3,<2.4.0a0 + - libdrm >=2.4.125,<2.5.0a0 + - libegl >=1.7.0,<2.0a0 + - libfreetype >=2.13.3 + - libfreetype6 >=2.13.3 + - libgcc >=14 + - libgl >=1.7.0,<2.0a0 + - libglib >=2.84.2,<3.0a0 + - libjpeg-turbo >=3.1.0,<4.0a0 + - libllvm20 >=20.1.8,<20.2.0a0 + - libpng >=1.6.50,<1.7.0a0 + - libpq >=17.5,<18.0a0 + - libsqlite >=3.50.3,<4.0a0 + - libstdcxx >=14 + - libtiff >=4.7.0,<4.8.0a0 + - libwebp-base >=1.6.0,<2.0a0 + - libxcb >=1.17.0,<2.0a0 + - libxkbcommon >=1.10.0,<2.0a0 + - libxml2 >=2.13.8,<2.14.0a0 + - libzlib >=1.3.1,<2.0a0 + - openssl >=3.5.1,<4.0a0 + - pcre2 >=10.45,<10.46.0a0 + - wayland >=1.24.0,<2.0a0 + - xcb-util >=0.4.1,<0.5.0a0 + - xcb-util-cursor >=0.1.5,<0.2.0a0 + - xcb-util-image >=0.4.0,<0.5.0a0 + - xcb-util-keysyms >=0.4.1,<0.5.0a0 + - xcb-util-renderutil >=0.3.10,<0.4.0a0 + - xcb-util-wm >=0.4.2,<0.5.0a0 + - xorg-libice >=1.1.2,<2.0a0 + - xorg-libsm >=1.2.6,<2.0a0 + - xorg-libx11 >=1.8.12,<2.0a0 + - xorg-libxcomposite >=0.4.6,<1.0a0 + - xorg-libxcursor >=1.2.3,<2.0a0 + - xorg-libxdamage >=1.1.6,<2.0a0 + - xorg-libxext >=1.3.6,<2.0a0 + - xorg-libxrandr >=1.5.4,<2.0a0 + - xorg-libxtst >=1.2.5,<2.0a0 + - xorg-libxxf86vm >=1.1.6,<2.0a0 + - zstd >=1.5.7,<1.6.0a0 + constrains: + - qt 6.9.1 + license: LGPL-3.0-only + license_family: LGPL + size: 53080009 + timestamp: 1753420196625 +- conda: https://prefix.dev/conda-forge/linux-aarch64/qt6-main-6.9.1-haa40e84_2.conda + sha256: efae87da715ac79f123e350f8db31d2e4c14eb68cbecd5bb796f9bf2187a7c43 + md5: b388e58798370884d5226b2ae9209edc + depends: + - alsa-lib >=1.2.14,<1.3.0a0 + - dbus >=1.16.2,<2.0a0 + - double-conversion >=3.3.1,<3.4.0a0 + - fontconfig >=2.15.0,<3.0a0 + - fonts-conda-ecosystem + - harfbuzz >=11.0.1 + - icu >=75.1,<76.0a0 + - krb5 >=1.21.3,<1.22.0a0 + - libclang-cpp20.1 >=20.1.8,<20.2.0a0 + - libclang13 >=20.1.8 + - libcups >=2.3.3,<2.4.0a0 + - libdrm >=2.4.125,<2.5.0a0 + - libegl >=1.7.0,<2.0a0 + - libfreetype >=2.13.3 + - libfreetype6 >=2.13.3 + - libgcc >=14 + - libgl >=1.7.0,<2.0a0 + - libglib >=2.84.2,<3.0a0 + - libjpeg-turbo >=3.1.0,<4.0a0 + - libllvm20 >=20.1.8,<20.2.0a0 + - libpng >=1.6.50,<1.7.0a0 + - libpq >=17.5,<18.0a0 + - libsqlite >=3.50.3,<4.0a0 + - libstdcxx >=14 + - libtiff >=4.7.0,<4.8.0a0 + - libwebp-base >=1.6.0,<2.0a0 + - libxcb >=1.17.0,<2.0a0 + - libxkbcommon >=1.10.0,<2.0a0 + - libxml2 >=2.13.8,<2.14.0a0 + - libzlib >=1.3.1,<2.0a0 + - openssl >=3.5.1,<4.0a0 + - pcre2 >=10.45,<10.46.0a0 + - wayland >=1.24.0,<2.0a0 + - xcb-util >=0.4.1,<0.5.0a0 + - xcb-util-cursor >=0.1.5,<0.2.0a0 + - xcb-util-image >=0.4.0,<0.5.0a0 + - xcb-util-keysyms >=0.4.1,<0.5.0a0 + - xcb-util-renderutil >=0.3.10,<0.4.0a0 + - xcb-util-wm >=0.4.2,<0.5.0a0 + - xorg-libice >=1.1.2,<2.0a0 + - xorg-libsm >=1.2.6,<2.0a0 + - xorg-libx11 >=1.8.12,<2.0a0 + - xorg-libxcomposite >=0.4.6,<1.0a0 + - xorg-libxcursor >=1.2.3,<2.0a0 + - xorg-libxdamage >=1.1.6,<2.0a0 + - xorg-libxext >=1.3.6,<2.0a0 + - xorg-libxrandr >=1.5.4,<2.0a0 + - xorg-libxtst >=1.2.5,<2.0a0 + - xorg-libxxf86vm >=1.1.6,<2.0a0 + - zstd >=1.5.7,<1.6.0a0 + constrains: + - qt 6.9.1 + license: LGPL-3.0-only + license_family: LGPL + size: 55650304 + timestamp: 1753422994999 +- conda: https://prefix.dev/conda-forge/osx-arm64/qt6-main-6.9.1-h81d968c_2.conda + sha256: f8673c9704c278b032b84d2edf429ce00bd8a881b1e34ab12dec6c8bd500eccb + md5: c08d65d2d520dd6b85d18f174355aa06 + depends: + - __osx >=11.0 + - double-conversion >=3.3.1,<3.4.0a0 + - harfbuzz >=11.0.1 + - icu >=75.1,<76.0a0 + - krb5 >=1.21.3,<1.22.0a0 + - libclang-cpp19.1 >=19.1.7,<19.2.0a0 + - libclang13 >=19.1.7 + - libcxx >=19 + - libglib >=2.84.2,<3.0a0 + - libjpeg-turbo >=3.1.0,<4.0a0 + - libllvm19 >=19.1.7,<19.2.0a0 + - libpng >=1.6.50,<1.7.0a0 + - libpq >=17.5,<18.0a0 + - libsqlite >=3.50.3,<4.0a0 + - libtiff >=4.7.0,<4.8.0a0 + - libwebp-base >=1.6.0,<2.0a0 + - libzlib >=1.3.1,<2.0a0 + - openssl >=3.5.1,<4.0a0 + - pcre2 >=10.45,<10.46.0a0 + - zstd >=1.5.7,<1.6.0a0 + constrains: + - qt 6.9.1 + license: LGPL-3.0-only + license_family: LGPL + size: 44827847 + timestamp: 1753282490971 +- conda: https://prefix.dev/conda-forge/win-64/qt6-main-6.9.1-h02ddd7d_2.conda + sha256: 0093da5504b42a3b26ec10cdedc07d91e83225775590f596407b9de769ca4a5f + md5: 3cbddb0b12c72aa3b974a4d12af51f29 + depends: + - double-conversion >=3.3.1,<3.4.0a0 + - harfbuzz >=11.0.1 + - icu >=75.1,<76.0a0 + - krb5 >=1.21.3,<1.22.0a0 + - libclang13 >=20.1.8 + - libglib >=2.84.2,<3.0a0 + - libjpeg-turbo >=3.1.0,<4.0a0 + - libpng >=1.6.50,<1.7.0a0 + - libsqlite >=3.50.3,<4.0a0 + - libtiff >=4.7.0,<4.8.0a0 + - libwebp-base >=1.6.0,<2.0a0 + - libzlib >=1.3.1,<2.0a0 + - openssl >=3.5.1,<4.0a0 + - pcre2 >=10.45,<10.46.0a0 + - ucrt >=10.0.20348.0 + - vc >=14.3,<15 + - vc14_runtime >=14.44.35208 + - zstd >=1.5.7,<1.6.0a0 + constrains: + - qt 6.9.1 + license: LGPL-3.0-only + license_family: LGPL + size: 94478713 + timestamp: 1753285797220 +- conda: https://prefix.dev/conda-forge/linux-64/rav1e-0.7.1-h8fae777_3.conda + sha256: 6e5e704c1c21f820d760e56082b276deaf2b53cf9b751772761c3088a365f6f4 + md5: 2c42649888aac645608191ffdc80d13a + depends: + - __glibc >=2.17,<3.0.a0 + - libgcc >=13 + constrains: + - __glibc >=2.17 + license: BSD-2-Clause + license_family: BSD + size: 5176669 + timestamp: 1746622023242 +- conda: https://prefix.dev/conda-forge/linux-aarch64/rav1e-0.7.1-ha3529ed_3.conda + sha256: f1631eb0be7391b0f470fdd7c902741551eb00381efd52b234ceadfccf34588b + md5: 0a6e034273782e6e863d46f1d2a5078b + depends: + - libgcc >=13 + constrains: + - __glibc >=2.17 + license: BSD-2-Clause + license_family: BSD + size: 4822159 + timestamp: 1746621943955 +- conda: https://prefix.dev/conda-forge/osx-arm64/rav1e-0.7.1-h0716509_3.conda + sha256: 65f862b2b31ef2b557990a82015cbd41e5a66041c2f79b4451dd14b4595d4c04 + md5: 7b37f30516100b86ea522350c8cab44c + depends: + - __osx >=11.0 + constrains: + - __osx >=11.0 + license: BSD-2-Clause + license_family: BSD + size: 856271 + timestamp: 1746622200646 +- conda: https://prefix.dev/conda-forge/win-64/rav1e-0.7.1-ha073cba_3.conda + sha256: d19a58b882a0387c7c8efbfce4e67a0df4b19d8da6cf6cec3011b6079e5bc743 + md5: 3bd3626822633688691ed41d661c2b2e + depends: + - ucrt >=10.0.20348.0 + - vc >=14.2,<15 + - vc14_runtime >=14.29.30139 + license: BSD-2-Clause + license_family: BSD + size: 4122383 + timestamp: 1746622805379 +- conda: https://prefix.dev/conda-forge/linux-64/readline-8.2-h8c095d6_2.conda + sha256: 2d6d0c026902561ed77cd646b5021aef2d4db22e57a5b0178dfc669231e06d2c + md5: 283b96675859b20a825f8fa30f311446 + depends: + - libgcc >=13 + - ncurses >=6.5,<7.0a0 + license: GPL-3.0-only + license_family: GPL + size: 282480 + timestamp: 1740379431762 +- conda: https://prefix.dev/conda-forge/linux-aarch64/readline-8.2-h8382b9d_2.conda + sha256: 54bed3a3041befaa9f5acde4a37b1a02f44705b7796689574bcf9d7beaad2959 + md5: c0f08fc2737967edde1a272d4bf41ed9 + depends: + - libgcc >=13 + - ncurses >=6.5,<7.0a0 + license: GPL-3.0-only + license_family: GPL + size: 291806 + timestamp: 1740380591358 +- conda: https://prefix.dev/conda-forge/osx-arm64/readline-8.2-h1d1bf99_2.conda + sha256: 7db04684d3904f6151eff8673270922d31da1eea7fa73254d01c437f49702e34 + md5: 63ef3f6e6d6d5c589e64f11263dc5676 + depends: + - ncurses >=6.5,<7.0a0 + license: GPL-3.0-only + license_family: GPL + size: 252359 + timestamp: 1740379663071 +- conda: https://prefix.dev/conda-forge/linux-64/rhash-1.4.6-hb9d3cd8_1.conda + sha256: d5c73079c1dd2c2a313c3bfd81c73dbd066b7eb08d213778c8bff520091ae894 + md5: c1c9b02933fdb2cfb791d936c20e887e + depends: + - __glibc >=2.17,<3.0.a0 + - libgcc >=13 + license: MIT + license_family: MIT + size: 193775 + timestamp: 1748644872902 +- conda: https://prefix.dev/conda-forge/linux-aarch64/rhash-1.4.6-h86ecc28_1.conda + sha256: 0fe6f40213f2d8af4fcb7388eeb782a4e496c8bab32c189c3a34b37e8004e5a4 + md5: 745d02c0c22ea2f28fbda2cb5dbec189 + depends: + - libgcc >=13 + license: MIT + license_family: MIT + size: 207475 + timestamp: 1748644952027 +- conda: https://prefix.dev/conda-forge/osx-arm64/rhash-1.4.6-h5505292_1.conda + sha256: f4957c05f4fbcd99577de8838ca4b5b1ae4b400a44be647a0159c14f85b9bfc0 + md5: 029e812c8ae4e0d4cf6ff4f7d8dc9366 + depends: + - __osx >=11.0 + license: MIT + license_family: MIT + size: 185448 + timestamp: 1748645057503 +- conda: https://prefix.dev/robostack-staging/linux-64/ros-humble-action-msgs-1.2.1-np126py311hbc2a38a_13.conda + sha256: 21c3b06788cd8d7d6a8a4d66dc58131e486aae86f250d309ea69336fb4b1c450 + md5: f1fad637e992126ca6d4d6b4a2802f89 + depends: + - python + - ros-humble-builtin-interfaces + - ros-humble-ros-workspace + - ros-humble-rosidl-default-runtime + - ros-humble-unique-identifier-msgs + - ros2-distro-mutex 0.7.* humble_* + - libgcc >=13 + - libstdcxx >=13 + - libgcc >=13 + - __glibc >=2.17,<3.0.a0 + - numpy >=1.26.4,<2.0a0 + - python_abi 3.11.* *_cp311 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + license: BSD-3-Clause + size: 114465 + timestamp: 1753311870223 +- conda: https://prefix.dev/robostack-staging/linux-aarch64/ros-humble-action-msgs-1.2.1-np126py311hbdd918e_13.conda + sha256: ebd35ef6091a81ee14c9fad114e0cc35534cb8c19f352a6736ba520941ed196e + md5: 562b4ffa419d0aae6ab5ed1662aa5ffb + depends: + - python + - ros-humble-builtin-interfaces + - ros-humble-ros-workspace + - ros-humble-rosidl-default-runtime + - ros-humble-unique-identifier-msgs + - ros2-distro-mutex 0.7.* humble_* + - libgcc >=13 + - libstdcxx >=13 + - libgcc >=13 + - numpy >=1.26.4,<2.0a0 + - python_abi 3.11.* *_cp311 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + license: BSD-3-Clause + size: 119169 + timestamp: 1753312351735 +- conda: https://prefix.dev/robostack-staging/osx-arm64/ros-humble-action-msgs-1.2.1-np126py311h2a51a2c_13.conda + sha256: 0889e858d73619020bcba44cc1a870678dc20b8373b0c5818b6420d00555cf4c + md5: 56c700a20406c2574033a8ba625dce59 + depends: + - python + - ros-humble-builtin-interfaces + - ros-humble-ros-workspace + - ros-humble-rosidl-default-runtime + - ros-humble-unique-identifier-msgs + - ros2-distro-mutex 0.7.* humble_* + - libcxx >=18 + - __osx >=11.0 + - python_abi 3.11.* *_cp311 + - numpy >=1.26.4,<2.0a0 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + license: BSD-3-Clause + size: 107386 + timestamp: 1753311241104 +- conda: https://prefix.dev/robostack-staging/win-64/ros-humble-action-msgs-1.2.1-np126py311hd5de103_13.conda + sha256: 36cffeac2bbc42ed9112db3527242364273a4185bf5f74e66e32b5fe07d7a7ab + md5: 6544237642cdd6be6af4596c331a176a + depends: + - python + - ros-humble-builtin-interfaces + - ros-humble-ros-workspace + - ros-humble-rosidl-default-runtime + - ros-humble-unique-identifier-msgs + - ros2-distro-mutex 0.7.* humble_* + - vc >=14.3,<15 + - vc14_runtime >=14.44.35208 + - ucrt >=10.0.20348.0 + - vc >=14.3,<15 + - vc14_runtime >=14.44.35208 + - ucrt >=10.0.20348.0 + - python_abi 3.11.* *_cp311 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + - numpy >=1.26.4,<2.0a0 + license: BSD-3-Clause + size: 119164 + timestamp: 1753323718948 +- conda: https://prefix.dev/robostack-staging/linux-64/ros-humble-action-tutorials-cpp-0.20.5-np126py311hbc2a38a_13.conda + sha256: d08bfe6a18f46243b14cc05bda37b5529b4030ddf0e912498e44b5ffd75ffe7b + md5: 4cbc4c4e339a2dbf076e02ebb69d98a9 + depends: + - python + - ros-humble-action-tutorials-interfaces + - ros-humble-rclcpp + - ros-humble-rclcpp-action + - ros-humble-rclcpp-components + - ros-humble-ros-workspace + - ros2-distro-mutex 0.7.* humble_* + - __glibc >=2.17,<3.0.a0 + - libgcc >=13 + - libstdcxx >=13 + - libgcc >=13 + - numpy >=1.26.4,<2.0a0 + - python_abi 3.11.* *_cp311 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + license: BSD-3-Clause + size: 128306 + timestamp: 1753313534747 +- conda: https://prefix.dev/robostack-staging/linux-aarch64/ros-humble-action-tutorials-cpp-0.20.5-np126py311hbdd918e_13.conda + sha256: 236248a3f4a3f585883ba8197c5fde24f687e6ccd7913c629378edc0bb5c7fb4 + md5: 3300390174ecc75af54b94cb006a8a8c + depends: + - python + - ros-humble-action-tutorials-interfaces + - ros-humble-rclcpp + - ros-humble-rclcpp-action + - ros-humble-rclcpp-components + - ros-humble-ros-workspace + - ros2-distro-mutex 0.7.* humble_* + - libgcc >=13 + - libstdcxx >=13 + - libgcc >=13 + - numpy >=1.26.4,<2.0a0 + - python_abi 3.11.* *_cp311 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + license: BSD-3-Clause + size: 133804 + timestamp: 1753313714085 +- conda: https://prefix.dev/robostack-staging/osx-arm64/ros-humble-action-tutorials-cpp-0.20.5-np126py311h2a51a2c_13.conda + sha256: fa2b10d94b4d15158b672a43216ddfed7a9e88f513c84f89253b7fdba2f789de + md5: a5452deedaaad53f5fe61e137717dfa4 + depends: + - python + - ros-humble-action-tutorials-interfaces + - ros-humble-rclcpp + - ros-humble-rclcpp-action + - ros-humble-rclcpp-components + - ros-humble-ros-workspace + - ros2-distro-mutex 0.7.* humble_* + - libcxx >=18 + - __osx >=11.0 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + - numpy >=1.26.4,<2.0a0 + - python_abi 3.11.* *_cp311 + license: BSD-3-Clause + size: 105747 + timestamp: 1753313591016 +- conda: https://prefix.dev/robostack-staging/win-64/ros-humble-action-tutorials-cpp-0.20.5-np126py311hd5de103_13.conda + sha256: 731529518ae243620967b7910932c37f598a51893ee47e183f44abf287bfdc50 + md5: 819e96f18f7450099cf549f64acca083 + depends: + - python + - ros-humble-action-tutorials-interfaces + - ros-humble-rclcpp + - ros-humble-rclcpp-action + - ros-humble-rclcpp-components + - ros-humble-ros-workspace + - ros2-distro-mutex 0.7.* humble_* + - vc >=14.3,<15 + - vc14_runtime >=14.44.35208 + - ucrt >=10.0.20348.0 + - vc >=14.3,<15 + - vc14_runtime >=14.44.35208 + - ucrt >=10.0.20348.0 + - python_abi 3.11.* *_cp311 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + - numpy >=1.26.4,<2.0a0 + license: BSD-3-Clause + size: 103510 + timestamp: 1753333149028 +- conda: https://prefix.dev/robostack-staging/linux-64/ros-humble-action-tutorials-interfaces-0.20.5-np126py311hbc2a38a_13.conda + sha256: 5c8b6472cd37e5d50fa53b867178b4d850b0a97dbb846f5a0352c5b3bb3fcd21 + md5: aaa5971be5b21e6bd3da96ad8e3307c4 + depends: + - python + - ros-humble-action-msgs + - ros-humble-ros-workspace + - ros-humble-rosidl-default-runtime + - ros2-distro-mutex 0.7.* humble_* + - libstdcxx >=13 + - libgcc >=13 + - __glibc >=2.17,<3.0.a0 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + - numpy >=1.26.4,<2.0a0 + - python_abi 3.11.* *_cp311 + license: BSD-3-Clause + size: 127436 + timestamp: 1753312086794 +- conda: https://prefix.dev/robostack-staging/linux-aarch64/ros-humble-action-tutorials-interfaces-0.20.5-np126py311hbdd918e_13.conda + sha256: 301414d19798b05d66c87e3fc52b04245bde3219122f9443d2e03c56ecacb222 + md5: 5f5ceb6b74338f01d8e52ee39268444c + depends: + - python + - ros-humble-action-msgs + - ros-humble-ros-workspace + - ros-humble-rosidl-default-runtime + - ros2-distro-mutex 0.7.* humble_* + - libgcc >=13 + - libstdcxx >=13 + - libgcc >=13 + - python_abi 3.11.* *_cp311 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + - numpy >=1.26.4,<2.0a0 + license: BSD-3-Clause + size: 131048 + timestamp: 1753312528938 +- conda: https://prefix.dev/robostack-staging/osx-arm64/ros-humble-action-tutorials-interfaces-0.20.5-np126py311h2a51a2c_13.conda + sha256: 8a1c20b35f3fc5214134de53f89de6e9ee2372148d8dce94931c2054d1cbe83b + md5: 6e731c517a8634e2be956e387df1f715 + depends: + - python + - ros-humble-action-msgs + - ros-humble-ros-workspace + - ros-humble-rosidl-default-runtime + - ros2-distro-mutex 0.7.* humble_* + - libcxx >=18 + - __osx >=11.0 + - numpy >=1.26.4,<2.0a0 + - python_abi 3.11.* *_cp311 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + license: BSD-3-Clause + size: 116340 + timestamp: 1753311509142 +- conda: https://prefix.dev/robostack-staging/win-64/ros-humble-action-tutorials-interfaces-0.20.5-np126py311hd5de103_13.conda + sha256: 808cef0478d4bb466e05f5290c65116ba0e0dee2344f3ca5aab2527646219f39 + md5: 6f4b22a2cba7f3fb15706c798258da78 + depends: + - python + - ros-humble-action-msgs + - ros-humble-ros-workspace + - ros-humble-rosidl-default-runtime + - ros2-distro-mutex 0.7.* humble_* + - vc >=14.3,<15 + - vc14_runtime >=14.44.35208 + - ucrt >=10.0.20348.0 + - vc >=14.3,<15 + - vc14_runtime >=14.44.35208 + - ucrt >=10.0.20348.0 + - python_abi 3.11.* *_cp311 + - numpy >=1.26.4,<2.0a0 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + license: BSD-3-Clause + size: 128468 + timestamp: 1753325538649 +- conda: https://prefix.dev/robostack-staging/linux-64/ros-humble-action-tutorials-py-0.20.5-np126py311hbc2a38a_13.conda + sha256: da676a2ffde9812692bb6047e0fdbf1ce563b1428a6d28940e9b78cadc6c2b49 + md5: 8802e733cf0285dde782ab289165e54e + depends: + - python + - ros-humble-action-tutorials-interfaces + - ros-humble-rclpy + - ros-humble-ros-workspace + - ros2-distro-mutex 0.7.* humble_* + - libgcc >=13 + - __glibc >=2.17,<3.0.a0 + - libstdcxx >=13 + - libgcc >=13 + - python_abi 3.11.* *_cp311 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + - numpy >=1.26.4,<2.0a0 + license: BSD-3-Clause + size: 30614 + timestamp: 1753313189771 +- conda: https://prefix.dev/robostack-staging/linux-aarch64/ros-humble-action-tutorials-py-0.20.5-np126py311hbdd918e_13.conda + sha256: 772c6c208d9b5311847960a9e37885a62177f587c06cac8ecbcf79b55d017d13 + md5: 05b478648c1b9da23084a6ed8a38e58a + depends: + - python + - ros-humble-action-tutorials-interfaces + - ros-humble-rclpy + - ros-humble-ros-workspace + - ros2-distro-mutex 0.7.* humble_* + - libgcc >=13 + - libstdcxx >=13 + - libgcc >=13 + - numpy >=1.26.4,<2.0a0 + - python_abi 3.11.* *_cp311 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + license: BSD-3-Clause + size: 30426 + timestamp: 1753313425378 +- conda: https://prefix.dev/robostack-staging/osx-arm64/ros-humble-action-tutorials-py-0.20.5-np126py311h2a51a2c_13.conda + sha256: 5520d4e5f851807b81caf43241ef870b662a3fc7113a9beb22d5a863afa35a2f + md5: 7d06ba3361bdc0b8356da8ffd612ba55 + depends: + - python + - ros-humble-action-tutorials-interfaces + - ros-humble-rclpy + - ros-humble-ros-workspace + - ros2-distro-mutex 0.7.* humble_* + - libcxx >=18 + - __osx >=11.0 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + - numpy >=1.26.4,<2.0a0 + - python_abi 3.11.* *_cp311 + license: BSD-3-Clause + size: 30652 + timestamp: 1753313049305 +- conda: https://prefix.dev/robostack-staging/win-64/ros-humble-action-tutorials-py-0.20.5-np126py311hd5de103_13.conda + sha256: 072ffc1eb28cc57d219856a000c99b43dbc87691955e6d9563960cf0c04ecd2a + md5: c6a12aa6735072d69789f21f11a5fb20 + depends: + - python + - ros-humble-action-tutorials-interfaces + - ros-humble-rclpy + - ros-humble-ros-workspace + - ros2-distro-mutex 0.7.* humble_* + - vc >=14.3,<15 + - vc14_runtime >=14.44.35208 + - ucrt >=10.0.20348.0 + - vc >=14.3,<15 + - vc14_runtime >=14.44.35208 + - ucrt >=10.0.20348.0 + - numpy >=1.26.4,<2.0a0 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + - python_abi 3.11.* *_cp311 + license: BSD-3-Clause + size: 35979 + timestamp: 1753331344485 +- conda: https://prefix.dev/robostack-staging/linux-64/ros-humble-actionlib-msgs-4.9.0-np126py311hbc2a38a_13.conda + sha256: 63a8bde5803f51dc9d91641991279d9856781b7a2ba1aa65d6f5ea6926e51a70 + md5: 110964b66e354a413af027873d982542 + depends: + - python + - ros-humble-builtin-interfaces + - ros-humble-ros-workspace + - ros-humble-rosidl-default-runtime + - ros-humble-std-msgs + - ros2-distro-mutex 0.7.* humble_* + - libstdcxx >=13 + - libgcc >=13 + - __glibc >=2.17,<3.0.a0 + - numpy >=1.26.4,<2.0a0 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + - python_abi 3.11.* *_cp311 + license: BSD-3-Clause + size: 100405 + timestamp: 1753312130842 +- conda: https://prefix.dev/robostack-staging/linux-aarch64/ros-humble-actionlib-msgs-4.9.0-np126py311hbdd918e_13.conda + sha256: be694f8ca605968292563dd409a02cb7887b65eab87610cb7a175411f3108a71 + md5: 6ff1d7562ac00ae184b5ee11dc48b80a + depends: + - python + - ros-humble-builtin-interfaces + - ros-humble-ros-workspace + - ros-humble-rosidl-default-runtime + - ros-humble-std-msgs + - ros2-distro-mutex 0.7.* humble_* + - libgcc >=13 + - libstdcxx >=13 + - libgcc >=13 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + - numpy >=1.26.4,<2.0a0 + - python_abi 3.11.* *_cp311 + license: BSD-3-Clause + size: 104185 + timestamp: 1753312576698 +- conda: https://prefix.dev/robostack-staging/osx-arm64/ros-humble-actionlib-msgs-4.9.0-np126py311h2a51a2c_13.conda + sha256: c8f0035f57eaa4d7668faaa114351e11714f7a00af47eba9892912c403445b71 + md5: 5da87ce40bc703d7c5e86e79b77caf69 + depends: + - python + - ros-humble-builtin-interfaces + - ros-humble-ros-workspace + - ros-humble-rosidl-default-runtime + - ros-humble-std-msgs + - ros2-distro-mutex 0.7.* humble_* + - libcxx >=18 + - __osx >=11.0 + - numpy >=1.26.4,<2.0a0 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + - python_abi 3.11.* *_cp311 + license: BSD-3-Clause + size: 93317 + timestamp: 1753311503591 +- conda: https://prefix.dev/robostack-staging/win-64/ros-humble-actionlib-msgs-4.9.0-np126py311hd5de103_13.conda + sha256: b49c61ddf1da268ad3a5ba00a4d66d4ad0e1f457482721393aad02749383b8ec + md5: 9a91e7295d91d695686ea2776c8b6181 + depends: + - python + - ros-humble-builtin-interfaces + - ros-humble-ros-workspace + - ros-humble-rosidl-default-runtime + - ros-humble-std-msgs + - ros2-distro-mutex 0.7.* humble_* + - vc >=14.3,<15 + - vc14_runtime >=14.44.35208 + - ucrt >=10.0.20348.0 + - vc >=14.3,<15 + - vc14_runtime >=14.44.35208 + - ucrt >=10.0.20348.0 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + - numpy >=1.26.4,<2.0a0 + - python_abi 3.11.* *_cp311 + license: BSD-3-Clause + size: 105499 + timestamp: 1753325459132 +- conda: https://prefix.dev/robostack-staging/linux-64/ros-humble-ament-cmake-1.3.12-np126py311hbc2a38a_13.conda + sha256: 4d6e11bc6d3f105a41def2d370bdc3f83721a8242cda74015d8dfdd4b687adbc + md5: 1649629c82db4f2fba285a7d833bcffc + depends: + - python + - ros-humble-ament-cmake-core + - ros-humble-ament-cmake-export-definitions + - ros-humble-ament-cmake-export-dependencies + - ros-humble-ament-cmake-export-include-directories + - ros-humble-ament-cmake-export-interfaces + - ros-humble-ament-cmake-export-libraries + - ros-humble-ament-cmake-export-link-flags + - ros-humble-ament-cmake-export-targets + - ros-humble-ament-cmake-gen-version-h + - ros-humble-ament-cmake-libraries + - ros-humble-ament-cmake-python + - ros-humble-ament-cmake-target-dependencies + - ros-humble-ament-cmake-test + - ros-humble-ament-cmake-version + - ros-humble-ros-workspace + - ros2-distro-mutex 0.7.* humble_* + - cmake + - libgcc >=13 + - __glibc >=2.17,<3.0.a0 + - libstdcxx >=13 + - libgcc >=13 + - python_abi 3.11.* *_cp311 + - numpy >=1.26.4,<2.0a0 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + license: BSD-3-Clause + size: 23210 + timestamp: 1753308348582 +- conda: https://prefix.dev/robostack-staging/linux-aarch64/ros-humble-ament-cmake-1.3.12-np126py311hbdd918e_13.conda + sha256: bccfdca99004dd2adabdcb246c902bd75c07150146f74b88423020ac0b32e043 + md5: 5b99aa73edb51c25e7b28957be22d162 + depends: + - python + - ros-humble-ament-cmake-core + - ros-humble-ament-cmake-export-definitions + - ros-humble-ament-cmake-export-dependencies + - ros-humble-ament-cmake-export-include-directories + - ros-humble-ament-cmake-export-interfaces + - ros-humble-ament-cmake-export-libraries + - ros-humble-ament-cmake-export-link-flags + - ros-humble-ament-cmake-export-targets + - ros-humble-ament-cmake-gen-version-h + - ros-humble-ament-cmake-libraries + - ros-humble-ament-cmake-python + - ros-humble-ament-cmake-target-dependencies + - ros-humble-ament-cmake-test + - ros-humble-ament-cmake-version + - ros-humble-ros-workspace + - ros2-distro-mutex 0.7.* humble_* + - cmake + - libgcc >=13 + - libstdcxx >=13 + - libgcc >=13 + - python_abi 3.11.* *_cp311 + - numpy >=1.26.4,<2.0a0 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + license: BSD-3-Clause + size: 22995 + timestamp: 1753308456229 +- conda: https://prefix.dev/robostack-staging/osx-arm64/ros-humble-ament-cmake-1.3.12-np126py311h2a51a2c_13.conda + sha256: 4fd3da5acd60b8b803140786acac71b11734e7c68e498e81361da2c173c0da31 + md5: 8b53f88c38f35bef23cf2832f3d2c145 + depends: + - python + - ros-humble-ament-cmake-core + - ros-humble-ament-cmake-export-definitions + - ros-humble-ament-cmake-export-dependencies + - ros-humble-ament-cmake-export-include-directories + - ros-humble-ament-cmake-export-interfaces + - ros-humble-ament-cmake-export-libraries + - ros-humble-ament-cmake-export-link-flags + - ros-humble-ament-cmake-export-targets + - ros-humble-ament-cmake-gen-version-h + - ros-humble-ament-cmake-libraries + - ros-humble-ament-cmake-python + - ros-humble-ament-cmake-target-dependencies + - ros-humble-ament-cmake-test + - ros-humble-ament-cmake-version + - ros-humble-ros-workspace + - ros2-distro-mutex 0.7.* humble_* + - cmake + - __osx >=11.0 + - libcxx >=18 + - numpy >=1.26.4,<2.0a0 + - python_abi 3.11.* *_cp311 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + license: BSD-3-Clause + size: 23374 + timestamp: 1753308652441 +- conda: https://prefix.dev/robostack-staging/win-64/ros-humble-ament-cmake-1.3.12-np126py311hd5de103_13.conda + sha256: 199f7e125290e5580d54e4c65adf1e2cd9fe0b0e085e355597665f2254dd4de9 + md5: dd60cd540c7c5c193f70337335d2b1f7 + depends: + - python + - ros-humble-ament-cmake-core + - ros-humble-ament-cmake-export-definitions + - ros-humble-ament-cmake-export-dependencies + - ros-humble-ament-cmake-export-include-directories + - ros-humble-ament-cmake-export-interfaces + - ros-humble-ament-cmake-export-libraries + - ros-humble-ament-cmake-export-link-flags + - ros-humble-ament-cmake-export-targets + - ros-humble-ament-cmake-gen-version-h + - ros-humble-ament-cmake-libraries + - ros-humble-ament-cmake-python + - ros-humble-ament-cmake-target-dependencies + - ros-humble-ament-cmake-test + - ros-humble-ament-cmake-version + - ros-humble-ros-workspace + - ros2-distro-mutex 0.7.* humble_* + - cmake + - vc >=14.3,<15 + - vc14_runtime >=14.44.35208 + - ucrt >=10.0.20348.0 + - vc >=14.3,<15 + - vc14_runtime >=14.44.35208 + - ucrt >=10.0.20348.0 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + - numpy >=1.26.4,<2.0a0 + - python_abi 3.11.* *_cp311 + license: BSD-3-Clause + size: 19988 + timestamp: 1753311884817 +- conda: https://prefix.dev/robostack-staging/linux-64/ros-humble-ament-cmake-auto-1.3.12-np126py311hbc2a38a_13.conda + sha256: 1978c6f465ed8c7cfd4b9a9bc3b64b6b65ce9e3ddddbb878b600ccaee75be861 + md5: e6fde0f143d982614a1567e05da5e678 + depends: + - python + - ros-humble-ament-cmake + - ros-humble-ament-cmake-gmock + - ros-humble-ament-cmake-gtest + - ros-humble-ros-workspace + - ros2-distro-mutex 0.7.* humble_* + - libstdcxx >=13 + - libgcc >=13 + - __glibc >=2.17,<3.0.a0 + - numpy >=1.26.4,<2.0a0 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + - python_abi 3.11.* *_cp311 + license: BSD-3-Clause + size: 27109 + timestamp: 1753308429555 +- conda: https://prefix.dev/robostack-staging/linux-aarch64/ros-humble-ament-cmake-auto-1.3.12-np126py311hbdd918e_13.conda + sha256: 834edfc49b2ec34a6b2fa13502dff5ed5f5f2da84fb36f9321da110a2fe6080c + md5: ee6eed7b7474d0046d2e9208efc468d0 + depends: + - python + - ros-humble-ament-cmake + - ros-humble-ament-cmake-gmock + - ros-humble-ament-cmake-gtest + - ros-humble-ros-workspace + - ros2-distro-mutex 0.7.* humble_* + - libgcc >=13 + - libstdcxx >=13 + - libgcc >=13 + - numpy >=1.26.4,<2.0a0 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + - python_abi 3.11.* *_cp311 + license: BSD-3-Clause + size: 26897 + timestamp: 1753308547482 +- conda: https://prefix.dev/robostack-staging/osx-arm64/ros-humble-ament-cmake-auto-1.3.12-np126py311h2a51a2c_13.conda + sha256: 07225d8e5105400797e6143968c5b1e1f9139b77fe9f70f9b0a9c53586f67f88 + md5: b5cc1278f63d3550ed2e7901f0912824 + depends: + - python + - ros-humble-ament-cmake + - ros-humble-ament-cmake-gmock + - ros-humble-ament-cmake-gtest + - ros-humble-ros-workspace + - ros2-distro-mutex 0.7.* humble_* + - libcxx >=18 + - __osx >=11.0 + - numpy >=1.26.4,<2.0a0 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + - python_abi 3.11.* *_cp311 + license: BSD-3-Clause + size: 27200 + timestamp: 1753308832784 +- conda: https://prefix.dev/robostack-staging/win-64/ros-humble-ament-cmake-auto-1.3.12-np126py311hd5de103_13.conda + sha256: 538bb9556771cc5da1645d6ddf35cdc7b178a904671953f05c45977f7d5debae + md5: 3dcf1ed1805286fdaa1589e0aa61b586 + depends: + - python + - ros-humble-ament-cmake + - ros-humble-ament-cmake-gmock + - ros-humble-ament-cmake-gtest + - ros-humble-ros-workspace + - ros2-distro-mutex 0.7.* humble_* + - vc >=14.3,<15 + - vc14_runtime >=14.44.35208 + - ucrt >=10.0.20348.0 + - vc >=14.3,<15 + - vc14_runtime >=14.44.35208 + - ucrt >=10.0.20348.0 + - python_abi 3.11.* *_cp311 + - numpy >=1.26.4,<2.0a0 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + license: BSD-3-Clause + size: 23842 + timestamp: 1753312788917 +- conda: https://prefix.dev/robostack-staging/linux-64/ros-humble-ament-cmake-copyright-0.12.12-np126py311hbc2a38a_13.conda + sha256: d68dd586d2388be605090ac9f64e73e4f1d9a7f0a43fd7f5d6f7fff4f2358863 + md5: d8d8e3a0e90335d4f16942efd172a947 + depends: + - python + - ros-humble-ament-cmake-test + - ros-humble-ament-copyright + - ros-humble-ros-workspace + - ros2-distro-mutex 0.7.* humble_* + - libstdcxx >=13 + - libgcc >=13 + - __glibc >=2.17,<3.0.a0 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + - numpy >=1.26.4,<2.0a0 + - python_abi 3.11.* *_cp311 + license: BSD-3-Clause + size: 22534 + timestamp: 1753308885544 +- conda: https://prefix.dev/robostack-staging/linux-aarch64/ros-humble-ament-cmake-copyright-0.12.12-np126py311hbdd918e_13.conda + sha256: 4db429b67d524576446cc0629186b3a98352f2f20ffe7eb13439b038a4b99ec9 + md5: 42ad7868c35d91ede827f374fd08e91f + depends: + - python + - ros-humble-ament-cmake-test + - ros-humble-ament-copyright + - ros-humble-ros-workspace + - ros2-distro-mutex 0.7.* humble_* + - libstdcxx >=13 + - libgcc >=13 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + - numpy >=1.26.4,<2.0a0 + - python_abi 3.11.* *_cp311 + license: BSD-3-Clause + size: 22359 + timestamp: 1753308854816 +- conda: https://prefix.dev/robostack-staging/osx-arm64/ros-humble-ament-cmake-copyright-0.12.12-np126py311h2a51a2c_13.conda + sha256: 2e546467d8494b45d265eb0e90829c9d6282b36d9059a8f81e9a177bfcaa5d96 + md5: 66d00ca619989d6220b52e10295b62ef + depends: + - python + - ros-humble-ament-cmake-test + - ros-humble-ament-copyright + - ros-humble-ros-workspace + - ros2-distro-mutex 0.7.* humble_* + - libcxx >=18 + - __osx >=11.0 + - numpy >=1.26.4,<2.0a0 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + - python_abi 3.11.* *_cp311 + license: BSD-3-Clause + size: 22769 + timestamp: 1753309158659 +- conda: https://prefix.dev/robostack-staging/win-64/ros-humble-ament-cmake-copyright-0.12.12-np126py311hd5de103_13.conda + sha256: fb95e28e7fc9d2f77296b2573339569f70d1c21d320db1c252e7edb534f2c4f9 + md5: da155601f522b223396869b15e90bb62 + depends: + - python + - ros-humble-ament-cmake-test + - ros-humble-ament-copyright + - ros-humble-ros-workspace + - ros2-distro-mutex 0.7.* humble_* + - vc >=14.3,<15 + - vc14_runtime >=14.44.35208 + - ucrt >=10.0.20348.0 + - vc >=14.3,<15 + - vc14_runtime >=14.44.35208 + - ucrt >=10.0.20348.0 + - numpy >=1.26.4,<2.0a0 + - python_abi 3.11.* *_cp311 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + license: BSD-3-Clause + size: 19312 + timestamp: 1753313865976 +- conda: https://prefix.dev/robostack-staging/linux-64/ros-humble-ament-cmake-core-1.3.12-np126py311hbc2a38a_13.conda + sha256: fab93bf7eb9bc402772ccc6fdc2916da7ea230281bb89a358915beee71d8900d + md5: 5763c7ae02c1b0b502a4730545300ee5 + depends: + - catkin_pkg + - python + - ros-humble-ament-package + - ros2-distro-mutex 0.7.* humble_* + - cmake + - __glibc >=2.17,<3.0.a0 + - libstdcxx >=13 + - libgcc >=13 + - numpy >=1.26.4,<2.0a0 + - python_abi 3.11.* *_cp311 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + license: BSD-3-Clause + size: 44589 + timestamp: 1753307787788 +- conda: https://prefix.dev/robostack-staging/linux-aarch64/ros-humble-ament-cmake-core-1.3.12-np126py311hbdd918e_13.conda + sha256: a4ac4f0a0d9feb6fb52d3e04c93516dce42f970091cfbf6a31ddc05eba6f22e8 + md5: db4488b3571e3db69772aa37cc569eec + depends: + - catkin_pkg + - python + - ros-humble-ament-package + - ros2-distro-mutex 0.7.* humble_* + - cmake + - libstdcxx >=13 + - libgcc >=13 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + - numpy >=1.26.4,<2.0a0 + - python_abi 3.11.* *_cp311 + license: BSD-3-Clause + size: 44445 + timestamp: 1753307965911 +- conda: https://prefix.dev/robostack-staging/osx-arm64/ros-humble-ament-cmake-core-1.3.12-np126py311h2a51a2c_13.conda + sha256: 77e766efdd75303ca725f36652e5092a6f165e77c94fc28188d2c9562a4a2a8c + md5: 5bcf366df8252ea2690e1175fd1918fe + depends: + - catkin_pkg + - python + - ros-humble-ament-package + - ros2-distro-mutex 0.7.* humble_* + - cmake + - libcxx >=18 + - __osx >=11.0 + - numpy >=1.26.4,<2.0a0 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + - python_abi 3.11.* *_cp311 + license: BSD-3-Clause + size: 44794 + timestamp: 1753307871726 +- conda: https://prefix.dev/robostack-staging/win-64/ros-humble-ament-cmake-core-1.3.12-np126py311hd5de103_13.conda + sha256: 8d6d8e00f6d457db11ff48635dd72536862b39ced0026075acd75d61a946e89e + md5: 5e97d822162cb3ae2abf8f719c900e4f + depends: + - catkin_pkg + - python + - ros-humble-ament-package + - ros2-distro-mutex 0.7.* humble_* + - cmake + - vc >=14.3,<15 + - vc14_runtime >=14.44.35208 + - ucrt >=10.0.20348.0 + - vc >=14.3,<15 + - vc14_runtime >=14.44.35208 + - ucrt >=10.0.20348.0 + - numpy >=1.26.4,<2.0a0 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + - python_abi 3.11.* *_cp311 + license: BSD-3-Clause + size: 41073 + timestamp: 1753308029869 +- conda: https://prefix.dev/robostack-staging/linux-64/ros-humble-ament-cmake-cppcheck-0.12.12-np126py311hbc2a38a_13.conda + sha256: 13515513303f93c68458b5253105c56f53ec898243f52feca2c5fa5c27b605df + md5: 37ea326c5f383bfb082988663a0844c5 + depends: + - python + - ros-humble-ament-cmake-core + - ros-humble-ament-cmake-test + - ros-humble-ament-cppcheck + - ros-humble-ros-workspace + - ros2-distro-mutex 0.7.* humble_* + - libgcc >=13 + - __glibc >=2.17,<3.0.a0 + - libstdcxx >=13 + - libgcc >=13 + - python_abi 3.11.* *_cp311 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + - numpy >=1.26.4,<2.0a0 + license: BSD-3-Clause + size: 24143 + timestamp: 1753309012761 +- conda: https://prefix.dev/robostack-staging/linux-aarch64/ros-humble-ament-cmake-cppcheck-0.12.12-np126py311hbdd918e_13.conda + sha256: 0e3561c03003365ce212c8c208b30c561d57e924d5cf406d67921c23b9992101 + md5: 5ae1c8cca25057397faafa8d25b26cc4 + depends: + - python + - ros-humble-ament-cmake-core + - ros-humble-ament-cmake-test + - ros-humble-ament-cppcheck + - ros-humble-ros-workspace + - ros2-distro-mutex 0.7.* humble_* + - libstdcxx >=13 + - libgcc >=13 + - numpy >=1.26.4,<2.0a0 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + - python_abi 3.11.* *_cp311 + license: BSD-3-Clause + size: 23951 + timestamp: 1753309007010 +- conda: https://prefix.dev/robostack-staging/osx-arm64/ros-humble-ament-cmake-cppcheck-0.12.12-np126py311h2a51a2c_13.conda + sha256: 15fef5fb25572435157fed1a3a7913057fff06748175ded6d2513a9404edc0ee + md5: ccb15f8cd2e69360cf5b2d0cbf707769 + depends: + - python + - ros-humble-ament-cmake-core + - ros-humble-ament-cmake-test + - ros-humble-ament-cppcheck + - ros-humble-ros-workspace + - ros2-distro-mutex 0.7.* humble_* + - libcxx >=18 + - __osx >=11.0 + - python_abi 3.11.* *_cp311 + - numpy >=1.26.4,<2.0a0 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + license: BSD-3-Clause + size: 24417 + timestamp: 1753309321871 +- conda: https://prefix.dev/robostack-staging/win-64/ros-humble-ament-cmake-cppcheck-0.12.12-np126py311hd5de103_13.conda + sha256: 14762b5ef3a6f2e1c5957a36825ce1d1f1b3156ed90fa2cfee66991d8f2b83e3 + md5: 65fccc6622ff3094d5be0be8e3f572d5 + depends: + - python + - ros-humble-ament-cmake-core + - ros-humble-ament-cmake-test + - ros-humble-ament-cppcheck + - ros-humble-ros-workspace + - ros2-distro-mutex 0.7.* humble_* + - vc >=14.3,<15 + - vc14_runtime >=14.44.35208 + - ucrt >=10.0.20348.0 + - vc >=14.3,<15 + - vc14_runtime >=14.44.35208 + - ucrt >=10.0.20348.0 + - numpy >=1.26.4,<2.0a0 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + - python_abi 3.11.* *_cp311 + license: BSD-3-Clause + size: 21044 + timestamp: 1753315151488 +- conda: https://prefix.dev/robostack-staging/linux-64/ros-humble-ament-cmake-cpplint-0.12.12-np126py311hbc2a38a_13.conda + sha256: 095cd71e7c3036806cb290fd235874807ebe75f5dadbaa0a73ca39f8833dc55c + md5: 48506cf5c90f7289c7dd65366fd1b898 + depends: + - python + - ros-humble-ament-cmake-test + - ros-humble-ament-cpplint + - ros-humble-ros-workspace + - ros2-distro-mutex 0.7.* humble_* + - libgcc >=13 + - __glibc >=2.17,<3.0.a0 + - libstdcxx >=13 + - libgcc >=13 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + - python_abi 3.11.* *_cp311 + - numpy >=1.26.4,<2.0a0 + license: BSD-3-Clause + size: 23045 + timestamp: 1753309043382 +- conda: https://prefix.dev/robostack-staging/linux-aarch64/ros-humble-ament-cmake-cpplint-0.12.12-np126py311hbdd918e_13.conda + sha256: 6d5dcff5aeee66f203389fca7d44f4d27032894c0260887d7e9c9451de19516e + md5: 36043d068a6e7ab9d0a9e4bf62f70e52 + depends: + - python + - ros-humble-ament-cmake-test + - ros-humble-ament-cpplint + - ros-humble-ros-workspace + - ros2-distro-mutex 0.7.* humble_* + - libstdcxx >=13 + - libgcc >=13 + - python_abi 3.11.* *_cp311 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + - numpy >=1.26.4,<2.0a0 + license: BSD-3-Clause + size: 22847 + timestamp: 1753309038316 +- conda: https://prefix.dev/robostack-staging/osx-arm64/ros-humble-ament-cmake-cpplint-0.12.12-np126py311h2a51a2c_13.conda + sha256: 04681fd759796dc9bd740deb90a27d73ab62e1dfe1dc56a26abce32815ae7a57 + md5: cf8eea35aa17e239c7f63ae7107f96dc + depends: + - python + - ros-humble-ament-cmake-test + - ros-humble-ament-cpplint + - ros-humble-ros-workspace + - ros2-distro-mutex 0.7.* humble_* + - __osx >=11.0 + - libcxx >=18 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + - numpy >=1.26.4,<2.0a0 + - python_abi 3.11.* *_cp311 + license: BSD-3-Clause + size: 23237 + timestamp: 1753309354351 +- conda: https://prefix.dev/robostack-staging/win-64/ros-humble-ament-cmake-cpplint-0.12.12-np126py311hd5de103_13.conda + sha256: d7330bf92caf521f63bddcce49e72ec2a3fecd1f7d640e5157d7b9d4a63c9e35 + md5: f7aa555563c1c75f4e809684f0198eed + depends: + - python + - ros-humble-ament-cmake-test + - ros-humble-ament-cpplint + - ros-humble-ros-workspace + - ros2-distro-mutex 0.7.* humble_* + - vc >=14.3,<15 + - vc14_runtime >=14.44.35208 + - ucrt >=10.0.20348.0 + - vc >=14.3,<15 + - vc14_runtime >=14.44.35208 + - ucrt >=10.0.20348.0 + - python_abi 3.11.* *_cp311 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + - numpy >=1.26.4,<2.0a0 + license: BSD-3-Clause + size: 19766 + timestamp: 1753315094439 +- conda: https://prefix.dev/robostack-staging/linux-64/ros-humble-ament-cmake-export-definitions-1.3.12-np126py311hbc2a38a_13.conda + sha256: c4c0cbc9db98cf3291c7f5ae023b8b4c43c0efb46e8a45397e72d7d358d9b79e + md5: ee0436ad07f83655ff1881ca16919301 + depends: + - python + - ros-humble-ament-cmake-core + - ros-humble-ros-workspace + - ros2-distro-mutex 0.7.* humble_* + - libstdcxx >=13 + - libgcc >=13 + - __glibc >=2.17,<3.0.a0 + - libgcc >=13 + - numpy >=1.26.4,<2.0a0 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + - python_abi 3.11.* *_cp311 + license: BSD-3-Clause + size: 21897 + timestamp: 1753307891039 +- conda: https://prefix.dev/robostack-staging/linux-aarch64/ros-humble-ament-cmake-export-definitions-1.3.12-np126py311hbdd918e_13.conda + sha256: 495ce5bed198696a29db6094042b1e419cc8375f7e0fe07c04c836ac92e28303 + md5: 09ec598201dd9efe9facf232c41ee462 + depends: + - python + - ros-humble-ament-cmake-core + - ros-humble-ros-workspace + - ros2-distro-mutex 0.7.* humble_* + - libgcc >=13 + - libstdcxx >=13 + - libgcc >=13 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + - numpy >=1.26.4,<2.0a0 + - python_abi 3.11.* *_cp311 + license: BSD-3-Clause + size: 21741 + timestamp: 1753308071258 +- conda: https://prefix.dev/robostack-staging/osx-arm64/ros-humble-ament-cmake-export-definitions-1.3.12-np126py311h2a51a2c_13.conda + sha256: dd4198a80ac4c20085ed398c6d25acdfb98e5ee89fbc99e2124660bc5ae55807 + md5: 6e43908c64af81707040aa51b3544d94 + depends: + - python + - ros-humble-ament-cmake-core + - ros-humble-ros-workspace + - ros2-distro-mutex 0.7.* humble_* + - __osx >=11.0 + - libcxx >=18 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + - python_abi 3.11.* *_cp311 + - numpy >=1.26.4,<2.0a0 + license: BSD-3-Clause + size: 22166 + timestamp: 1753308035981 +- conda: https://prefix.dev/robostack-staging/win-64/ros-humble-ament-cmake-export-definitions-1.3.12-np126py311hd5de103_13.conda + sha256: ba43badfc6e44bee0744d520a95eda6caa57ad8176adbead6a53841b6307d902 + md5: dbb3c7cd17a6f83773ad4b4104420ad9 + depends: + - python + - ros-humble-ament-cmake-core + - ros-humble-ros-workspace + - ros2-distro-mutex 0.7.* humble_* + - vc >=14.3,<15 + - vc14_runtime >=14.44.35208 + - ucrt >=10.0.20348.0 + - vc >=14.3,<15 + - vc14_runtime >=14.44.35208 + - ucrt >=10.0.20348.0 + - python_abi 3.11.* *_cp311 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + - numpy >=1.26.4,<2.0a0 + license: BSD-3-Clause + size: 18721 + timestamp: 1753308727006 +- conda: https://prefix.dev/robostack-staging/linux-64/ros-humble-ament-cmake-export-dependencies-1.3.12-np126py311hbc2a38a_13.conda + sha256: cdf6b73df8b9557f8321c1158849d76f4656bbd262a282d737142423a308ac07 + md5: 7641228e57cc9a4f1c644da0764ba413 + depends: + - python + - ros-humble-ament-cmake-core + - ros-humble-ament-cmake-libraries + - ros-humble-ros-workspace + - ros2-distro-mutex 0.7.* humble_* + - __glibc >=2.17,<3.0.a0 + - libstdcxx >=13 + - libgcc >=13 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + - python_abi 3.11.* *_cp311 + - numpy >=1.26.4,<2.0a0 + license: BSD-3-Clause + size: 23070 + timestamp: 1753307988740 +- conda: https://prefix.dev/robostack-staging/linux-aarch64/ros-humble-ament-cmake-export-dependencies-1.3.12-np126py311hbdd918e_13.conda + sha256: 89a915d502aff0c5d1e81ecdb983bd811bcdca4cc3aae7418bc30624ebef8801 + md5: 2e5d68f277aec93115719dc4812d610d + depends: + - python + - ros-humble-ament-cmake-core + - ros-humble-ament-cmake-libraries + - ros-humble-ros-workspace + - ros2-distro-mutex 0.7.* humble_* + - libstdcxx >=13 + - libgcc >=13 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + - python_abi 3.11.* *_cp311 + - numpy >=1.26.4,<2.0a0 + license: BSD-3-Clause + size: 22896 + timestamp: 1753308131118 +- conda: https://prefix.dev/robostack-staging/osx-arm64/ros-humble-ament-cmake-export-dependencies-1.3.12-np126py311h2a51a2c_13.conda + sha256: fdaa2f6ca73038736d0b5a41973dee842cefcef6f714606e1cec582a04b005b2 + md5: 28c64040d14174873306b8d61350442d + depends: + - python + - ros-humble-ament-cmake-core + - ros-humble-ament-cmake-libraries + - ros-humble-ros-workspace + - ros2-distro-mutex 0.7.* humble_* + - libcxx >=18 + - __osx >=11.0 + - python_abi 3.11.* *_cp311 + - numpy >=1.26.4,<2.0a0 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + license: BSD-3-Clause + size: 23356 + timestamp: 1753308205764 +- conda: https://prefix.dev/robostack-staging/win-64/ros-humble-ament-cmake-export-dependencies-1.3.12-np126py311hd5de103_13.conda + sha256: 68d9b4d2273df0f290afca16970ee578faca1de631181f8ea0ed23ed2dc5320b + md5: d7b89b404f686c1cc06c37c1933f9ec1 + depends: + - python + - ros-humble-ament-cmake-core + - ros-humble-ament-cmake-libraries + - ros-humble-ros-workspace + - ros2-distro-mutex 0.7.* humble_* + - vc >=14.3,<15 + - vc14_runtime >=14.44.35208 + - ucrt >=10.0.20348.0 + - vc >=14.3,<15 + - vc14_runtime >=14.44.35208 + - ucrt >=10.0.20348.0 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + - numpy >=1.26.4,<2.0a0 + - python_abi 3.11.* *_cp311 + license: BSD-3-Clause + size: 19938 + timestamp: 1753309426878 +- conda: https://prefix.dev/robostack-staging/linux-64/ros-humble-ament-cmake-export-include-directories-1.3.12-np126py311hbc2a38a_13.conda + sha256: 872e8271e93d52edd325c8252b1980e5f0963cb885466473904e1a89d94e1bd1 + md5: 7ddd803dc20784605034c2bafe6c3c44 + depends: + - python + - ros-humble-ament-cmake-core + - ros-humble-ros-workspace + - ros2-distro-mutex 0.7.* humble_* + - libgcc >=13 + - __glibc >=2.17,<3.0.a0 + - libstdcxx >=13 + - libgcc >=13 + - python_abi 3.11.* *_cp311 + - numpy >=1.26.4,<2.0a0 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + license: BSD-3-Clause + size: 22301 + timestamp: 1753307886996 +- conda: https://prefix.dev/robostack-staging/linux-aarch64/ros-humble-ament-cmake-export-include-directories-1.3.12-np126py311hbdd918e_13.conda + sha256: b2d0d91ad126e654486e62ce73079aacf55dfbc70c2176e157b0411f4bc9b1f5 + md5: 23b124251b4d80384c7ca556c9b3c9a3 + depends: + - python + - ros-humble-ament-cmake-core + - ros-humble-ros-workspace + - ros2-distro-mutex 0.7.* humble_* + - libstdcxx >=13 + - libgcc >=13 + - python_abi 3.11.* *_cp311 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + - numpy >=1.26.4,<2.0a0 + license: BSD-3-Clause + size: 22159 + timestamp: 1753308066612 +- conda: https://prefix.dev/robostack-staging/osx-arm64/ros-humble-ament-cmake-export-include-directories-1.3.12-np126py311h2a51a2c_13.conda + sha256: 0ce61517a4b68e41abce271785db7d23e3a80cfda2c441d501820b7e2ea2527c + md5: aac6ff3077feeef672500fca4ef8975a + depends: + - python + - ros-humble-ament-cmake-core + - ros-humble-ros-workspace + - ros2-distro-mutex 0.7.* humble_* + - libcxx >=18 + - __osx >=11.0 + - python_abi 3.11.* *_cp311 + - numpy >=1.26.4,<2.0a0 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + license: BSD-3-Clause + size: 22610 + timestamp: 1753308027659 +- conda: https://prefix.dev/robostack-staging/win-64/ros-humble-ament-cmake-export-include-directories-1.3.12-np126py311hd5de103_13.conda + sha256: 02ae68371d6028522229445bd21ddf1005ff2f4deb4e161c40ce0942aea58bc6 + md5: c1f27de4924b6469ef3b26ba6633970c + depends: + - python + - ros-humble-ament-cmake-core + - ros-humble-ros-workspace + - ros2-distro-mutex 0.7.* humble_* + - vc >=14.3,<15 + - vc14_runtime >=14.44.35208 + - ucrt >=10.0.20348.0 + - vc >=14.3,<15 + - vc14_runtime >=14.44.35208 + - ucrt >=10.0.20348.0 + - numpy >=1.26.4,<2.0a0 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + - python_abi 3.11.* *_cp311 + license: BSD-3-Clause + size: 19107 + timestamp: 1753308694089 +- conda: https://prefix.dev/robostack-staging/linux-64/ros-humble-ament-cmake-export-interfaces-1.3.12-np126py311hbc2a38a_13.conda + sha256: 6f73c54c521cb37f79bae5932228de0a50f836cb964181a2416c4217350980c6 + md5: 3e9677129b305246fac3015457c0a055 + depends: + - python + - ros-humble-ament-cmake-core + - ros-humble-ament-cmake-export-libraries + - ros-humble-ros-workspace + - ros2-distro-mutex 0.7.* humble_* + - __glibc >=2.17,<3.0.a0 + - libgcc >=13 + - libstdcxx >=13 + - libgcc >=13 + - python_abi 3.11.* *_cp311 + - numpy >=1.26.4,<2.0a0 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + license: BSD-3-Clause + size: 22516 + timestamp: 1753308023722 +- conda: https://prefix.dev/robostack-staging/linux-aarch64/ros-humble-ament-cmake-export-interfaces-1.3.12-np126py311hbdd918e_13.conda + sha256: d1e31bb36f2051f75d315b7691fd7d3a46f0bd10784c7a7a9836b38f092816f9 + md5: eeeedf1396d3d228c2c1aee4d6881292 + depends: + - python + - ros-humble-ament-cmake-core + - ros-humble-ament-cmake-export-libraries + - ros-humble-ros-workspace + - ros2-distro-mutex 0.7.* humble_* + - libgcc >=13 + - libstdcxx >=13 + - libgcc >=13 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + - numpy >=1.26.4,<2.0a0 + - python_abi 3.11.* *_cp311 + license: BSD-3-Clause + size: 22374 + timestamp: 1753308163997 +- conda: https://prefix.dev/robostack-staging/osx-arm64/ros-humble-ament-cmake-export-interfaces-1.3.12-np126py311h2a51a2c_13.conda + sha256: f4742772737ba430db54bb5febb9a1b6e2c29a5e5d0dfa0fd7217c34e86ac72b + md5: 6a29ee631df16b590088aee67f28aa91 + depends: + - python + - ros-humble-ament-cmake-core + - ros-humble-ament-cmake-export-libraries + - ros-humble-ros-workspace + - ros2-distro-mutex 0.7.* humble_* + - libcxx >=18 + - __osx >=11.0 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + - numpy >=1.26.4,<2.0a0 + - python_abi 3.11.* *_cp311 + license: BSD-3-Clause + size: 22800 + timestamp: 1753308244667 +- conda: https://prefix.dev/robostack-staging/win-64/ros-humble-ament-cmake-export-interfaces-1.3.12-np126py311hd5de103_13.conda + sha256: 30cd102b353337c2d79bd9757edeec2900c77a396f2c89d5b5305beb773ef688 + md5: 9fc8e557525825eb327390b4d239d110 + depends: + - python + - ros-humble-ament-cmake-core + - ros-humble-ament-cmake-export-libraries + - ros-humble-ros-workspace + - ros2-distro-mutex 0.7.* humble_* + - vc >=14.3,<15 + - vc14_runtime >=14.44.35208 + - ucrt >=10.0.20348.0 + - vc >=14.3,<15 + - vc14_runtime >=14.44.35208 + - ucrt >=10.0.20348.0 + - numpy >=1.26.4,<2.0a0 + - python_abi 3.11.* *_cp311 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + license: BSD-3-Clause + size: 19298 + timestamp: 1753309384173 +- conda: https://prefix.dev/robostack-staging/linux-64/ros-humble-ament-cmake-export-libraries-1.3.12-np126py311hbc2a38a_13.conda + sha256: 280c44edd7673c1181cc1b0c233cef721629235e79f1f015b6a6deb28597fd99 + md5: 7ff1c47e0fde601fb4c4fb1aa967a24e + depends: + - python + - ros-humble-ament-cmake-core + - ros-humble-ros-workspace + - ros2-distro-mutex 0.7.* humble_* + - libgcc >=13 + - __glibc >=2.17,<3.0.a0 + - libstdcxx >=13 + - libgcc >=13 + - numpy >=1.26.4,<2.0a0 + - python_abi 3.11.* *_cp311 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + license: BSD-3-Clause + size: 23872 + timestamp: 1753307865993 +- conda: https://prefix.dev/robostack-staging/linux-aarch64/ros-humble-ament-cmake-export-libraries-1.3.12-np126py311hbdd918e_13.conda + sha256: dff642f1af40f94a91b61718983e8e253fcaae0201f34f1ea3635f587d1bce7e + md5: 433b1b125798e6103a16c222d75d658b + depends: + - python + - ros-humble-ament-cmake-core + - ros-humble-ros-workspace + - ros2-distro-mutex 0.7.* humble_* + - libstdcxx >=13 + - libgcc >=13 + - python_abi 3.11.* *_cp311 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + - numpy >=1.26.4,<2.0a0 + license: BSD-3-Clause + size: 23704 + timestamp: 1753308041137 +- conda: https://prefix.dev/robostack-staging/osx-arm64/ros-humble-ament-cmake-export-libraries-1.3.12-np126py311h2a51a2c_13.conda + sha256: 2d360731b01a2b58b2bae858fb39bc15578b807924d5f089a6d8fac209e43c3a + md5: 1a06570ee8756c0eccc5b9639f8e7367 + depends: + - python + - ros-humble-ament-cmake-core + - ros-humble-ros-workspace + - ros2-distro-mutex 0.7.* humble_* + - libcxx >=18 + - __osx >=11.0 + - python_abi 3.11.* *_cp311 + - numpy >=1.26.4,<2.0a0 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + license: BSD-3-Clause + size: 24137 + timestamp: 1753307981303 +- conda: https://prefix.dev/robostack-staging/win-64/ros-humble-ament-cmake-export-libraries-1.3.12-np126py311hd5de103_13.conda + sha256: 01ba01d5cf31c521d3b7c93b82ebfe434f12958082133a90bb4e83a44182e593 + md5: 5d2b3a4c6d7ebb67e80b965f0d483c2d + depends: + - python + - ros-humble-ament-cmake-core + - ros-humble-ros-workspace + - ros2-distro-mutex 0.7.* humble_* + - vc >=14.3,<15 + - vc14_runtime >=14.44.35208 + - ucrt >=10.0.20348.0 + - vc >=14.3,<15 + - vc14_runtime >=14.44.35208 + - ucrt >=10.0.20348.0 + - numpy >=1.26.4,<2.0a0 + - python_abi 3.11.* *_cp311 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + license: BSD-3-Clause + size: 20646 + timestamp: 1753308567083 +- conda: https://prefix.dev/robostack-staging/linux-64/ros-humble-ament-cmake-export-link-flags-1.3.12-np126py311hbc2a38a_13.conda + sha256: 250192f9b573ff677874f9bf446e60ca70ca323701059a4af9e0f0cc57c0e872 + md5: bbc7a0d2df5d9fd76f5f96bf8dab3b68 + depends: + - python + - ros-humble-ament-cmake-core + - ros-humble-ros-workspace + - ros2-distro-mutex 0.7.* humble_* + - __glibc >=2.17,<3.0.a0 + - libgcc >=13 + - libstdcxx >=13 + - libgcc >=13 + - numpy >=1.26.4,<2.0a0 + - python_abi 3.11.* *_cp311 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + license: BSD-3-Clause + size: 21848 + timestamp: 1753307882942 +- conda: https://prefix.dev/robostack-staging/linux-aarch64/ros-humble-ament-cmake-export-link-flags-1.3.12-np126py311hbdd918e_13.conda + sha256: 5a54e37d07fd0fcdae7f9e44ddeefbfb30dfe26261d72d28d911f8d24ac24085 + md5: 7df6f8181444e7373dbc66d875d3e1cd + depends: + - python + - ros-humble-ament-cmake-core + - ros-humble-ros-workspace + - ros2-distro-mutex 0.7.* humble_* + - libstdcxx >=13 + - libgcc >=13 + - python_abi 3.11.* *_cp311 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + - numpy >=1.26.4,<2.0a0 + license: BSD-3-Clause + size: 21719 + timestamp: 1753308061549 +- conda: https://prefix.dev/robostack-staging/osx-arm64/ros-humble-ament-cmake-export-link-flags-1.3.12-np126py311h2a51a2c_13.conda + sha256: 30eab5cfae91579dc2ff20b5a9f3181a61426eb865c63e396da95e5c5f36177c + md5: 247935bce1c2932d85d3f22d5fcda9c4 + depends: + - python + - ros-humble-ament-cmake-core + - ros-humble-ros-workspace + - ros2-distro-mutex 0.7.* humble_* + - __osx >=11.0 + - libcxx >=18 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + - numpy >=1.26.4,<2.0a0 + - python_abi 3.11.* *_cp311 + license: BSD-3-Clause + size: 22126 + timestamp: 1753308018424 +- conda: https://prefix.dev/robostack-staging/win-64/ros-humble-ament-cmake-export-link-flags-1.3.12-np126py311hd5de103_13.conda + sha256: a0cd258a87606899e2bfc70e8f1dc22e748f9f66675209063b2de50588469693 + md5: 71d263803353d893c3c1b9c1bd09c653 + depends: + - python + - ros-humble-ament-cmake-core + - ros-humble-ros-workspace + - ros2-distro-mutex 0.7.* humble_* + - vc >=14.3,<15 + - vc14_runtime >=14.44.35208 + - ucrt >=10.0.20348.0 + - vc >=14.3,<15 + - vc14_runtime >=14.44.35208 + - ucrt >=10.0.20348.0 + - python_abi 3.11.* *_cp311 + - numpy >=1.26.4,<2.0a0 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + license: BSD-3-Clause + size: 18620 + timestamp: 1753308655671 +- conda: https://prefix.dev/robostack-staging/linux-64/ros-humble-ament-cmake-export-targets-1.3.12-np126py311hbc2a38a_13.conda + sha256: 1f8e400eae1476d1a655b83ecbc7358bf1e34d3da8bdf8ebc9abf4dbd9069d99 + md5: 5faa8002bb3d3fed9c99778864f4b9f2 + depends: + - python + - ros-humble-ament-cmake-core + - ros-humble-ament-cmake-export-libraries + - ros-humble-ros-workspace + - ros2-distro-mutex 0.7.* humble_* + - libstdcxx >=13 + - libgcc >=13 + - __glibc >=2.17,<3.0.a0 + - numpy >=1.26.4,<2.0a0 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + - python_abi 3.11.* *_cp311 + license: BSD-3-Clause + size: 22647 + timestamp: 1753308019007 +- conda: https://prefix.dev/robostack-staging/linux-aarch64/ros-humble-ament-cmake-export-targets-1.3.12-np126py311hbdd918e_13.conda + sha256: 9b9778d4e4eb8628ceadbf771cfac3f71e9a4d13cda181c63e9052dd3173833b + md5: a3f008693a1cdcaea6c02552f27cb8fc + depends: + - python + - ros-humble-ament-cmake-core + - ros-humble-ament-cmake-export-libraries + - ros-humble-ros-workspace + - ros2-distro-mutex 0.7.* humble_* + - libgcc >=13 + - libstdcxx >=13 + - libgcc >=13 + - numpy >=1.26.4,<2.0a0 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + - python_abi 3.11.* *_cp311 + license: BSD-3-Clause + size: 22469 + timestamp: 1753308160266 +- conda: https://prefix.dev/robostack-staging/osx-arm64/ros-humble-ament-cmake-export-targets-1.3.12-np126py311h2a51a2c_13.conda + sha256: ea4dc958f9c8ea2dc884ad7cf921081a71af74141a21c5218844208ed44e5073 + md5: fde004a87952115b936f9859c3dd5573 + depends: + - python + - ros-humble-ament-cmake-core + - ros-humble-ament-cmake-export-libraries + - ros-humble-ros-workspace + - ros2-distro-mutex 0.7.* humble_* + - libcxx >=18 + - __osx >=11.0 + - numpy >=1.26.4,<2.0a0 + - python_abi 3.11.* *_cp311 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + license: BSD-3-Clause + size: 22944 + timestamp: 1753308239314 +- conda: https://prefix.dev/robostack-staging/win-64/ros-humble-ament-cmake-export-targets-1.3.12-np126py311hd5de103_13.conda + sha256: 60712bd70edb94ce69348c4a1bbdb116af4350d7d340df21af78665961153cfd + md5: 3b165d8869d6a40c60ec71c859afad23 + depends: + - python + - ros-humble-ament-cmake-core + - ros-humble-ament-cmake-export-libraries + - ros-humble-ros-workspace + - ros2-distro-mutex 0.7.* humble_* + - vc >=14.3,<15 + - vc14_runtime >=14.44.35208 + - ucrt >=10.0.20348.0 + - vc >=14.3,<15 + - vc14_runtime >=14.44.35208 + - ucrt >=10.0.20348.0 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + - numpy >=1.26.4,<2.0a0 + - python_abi 3.11.* *_cp311 + license: BSD-3-Clause + size: 19428 + timestamp: 1753309340088 +- conda: https://prefix.dev/robostack-staging/linux-64/ros-humble-ament-cmake-flake8-0.12.12-np126py311hbc2a38a_13.conda + sha256: aaac0fdca8e6e2a9bcd79ed4bb59b571066a7ee62e6e930ca9fefd78e6e300b1 + md5: b4b7c2efe169d1e422676f4e6094cf96 + depends: + - python + - ros-humble-ament-cmake-test + - ros-humble-ament-flake8 + - ros-humble-ros-workspace + - ros2-distro-mutex 0.7.* humble_* + - __glibc >=2.17,<3.0.a0 + - libstdcxx >=13 + - libgcc >=13 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + - numpy >=1.26.4,<2.0a0 + - python_abi 3.11.* *_cp311 + license: BSD-3-Clause + size: 23215 + timestamp: 1753309039075 +- conda: https://prefix.dev/robostack-staging/linux-aarch64/ros-humble-ament-cmake-flake8-0.12.12-np126py311hbdd918e_13.conda + sha256: 21202eddb9d318ef994c7f152593c59c6923fe12cd116aff2b8250599d9cb241 + md5: 6fd1147825e5dce5bd9c399f8d78d51e + depends: + - python + - ros-humble-ament-cmake-test + - ros-humble-ament-flake8 + - ros-humble-ros-workspace + - ros2-distro-mutex 0.7.* humble_* + - libstdcxx >=13 + - libgcc >=13 + - python_abi 3.11.* *_cp311 + - numpy >=1.26.4,<2.0a0 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + license: BSD-3-Clause + size: 23072 + timestamp: 1753309034194 +- conda: https://prefix.dev/robostack-staging/osx-arm64/ros-humble-ament-cmake-flake8-0.12.12-np126py311h2a51a2c_13.conda + sha256: db73637ca4a28ae5c4c15888baf724d02bd2de7918101b0b1ea7e7bedebdc8c2 + md5: d4c54e4809ac424ac66d149b18be5090 + depends: + - python + - ros-humble-ament-cmake-test + - ros-humble-ament-flake8 + - ros-humble-ros-workspace + - ros2-distro-mutex 0.7.* humble_* + - libcxx >=18 + - __osx >=11.0 + - numpy >=1.26.4,<2.0a0 + - python_abi 3.11.* *_cp311 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + license: BSD-3-Clause + size: 23513 + timestamp: 1753309348409 +- conda: https://prefix.dev/robostack-staging/win-64/ros-humble-ament-cmake-flake8-0.12.12-np126py311hd5de103_13.conda + sha256: 6dce2289ecba7bd39d9df3cacc03c7acb2d6c40882131daecc188477fcff8374 + md5: c126e1cc38e4a379c6b4e256fdf95594 + depends: + - python + - ros-humble-ament-cmake-test + - ros-humble-ament-flake8 + - ros-humble-ros-workspace + - ros2-distro-mutex 0.7.* humble_* + - vc >=14.3,<15 + - vc14_runtime >=14.44.35208 + - ucrt >=10.0.20348.0 + - vc >=14.3,<15 + - vc14_runtime >=14.44.35208 + - ucrt >=10.0.20348.0 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + - numpy >=1.26.4,<2.0a0 + - python_abi 3.11.* *_cp311 + license: BSD-3-Clause + size: 20047 + timestamp: 1753315028359 +- conda: https://prefix.dev/robostack-staging/linux-64/ros-humble-ament-cmake-gen-version-h-1.3.12-np126py311hbc2a38a_13.conda + sha256: cfc258e03014b069cf64ca46e7a782654fa1a7293530df38fd17d008c96164be + md5: b40fb9ad16e8730abe431cd12cdbb75f + depends: + - python + - ros-humble-ament-cmake-core + - ros-humble-ros-workspace + - ros2-distro-mutex 0.7.* humble_* + - libstdcxx >=13 + - libgcc >=13 + - __glibc >=2.17,<3.0.a0 + - python_abi 3.11.* *_cp311 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + - numpy >=1.26.4,<2.0a0 + license: BSD-3-Clause + size: 24622 + timestamp: 1753308231944 +- conda: https://prefix.dev/robostack-staging/linux-aarch64/ros-humble-ament-cmake-gen-version-h-1.3.12-np126py311hbdd918e_13.conda + sha256: 8a1c82cddbbbf15647d6b1120fcd77c84020572fae177c406bf8a91d8ca55329 + md5: 9d4e61e74158bdcb5e96a58e070ca70e + depends: + - python + - ros-humble-ament-cmake-core + - ros-humble-ros-workspace + - ros2-distro-mutex 0.7.* humble_* + - libstdcxx >=13 + - libgcc >=13 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + - python_abi 3.11.* *_cp311 + - numpy >=1.26.4,<2.0a0 + license: BSD-3-Clause + size: 24447 + timestamp: 1753308354651 +- conda: https://prefix.dev/robostack-staging/osx-arm64/ros-humble-ament-cmake-gen-version-h-1.3.12-np126py311h2a51a2c_13.conda + sha256: 9e337d677d113ef70151fc50c84d95a0cbd346cef9808201fb0df3099150ccba + md5: 9282fe3b5ad644a164b0a522c98d95cd + depends: + - python + - ros-humble-ament-cmake-core + - ros-humble-ros-workspace + - ros2-distro-mutex 0.7.* humble_* + - libcxx >=18 + - __osx >=11.0 + - python_abi 3.11.* *_cp311 + - numpy >=1.26.4,<2.0a0 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + license: BSD-3-Clause + size: 24905 + timestamp: 1753308544972 +- conda: https://prefix.dev/robostack-staging/win-64/ros-humble-ament-cmake-gen-version-h-1.3.12-np126py311hd5de103_13.conda + sha256: b1a40ab847d751f38c444a9df0f7e380038dbe42982c686019d753cc442b906f + md5: 288d2758185d096704dfd75f6166fe9c + depends: + - python + - ros-humble-ament-cmake-core + - ros-humble-ros-workspace + - ros2-distro-mutex 0.7.* humble_* + - vc >=14.3,<15 + - vc14_runtime >=14.44.35208 + - ucrt >=10.0.20348.0 + - vc >=14.3,<15 + - vc14_runtime >=14.44.35208 + - ucrt >=10.0.20348.0 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + - numpy >=1.26.4,<2.0a0 + - python_abi 3.11.* *_cp311 + license: BSD-3-Clause + size: 21453 + timestamp: 1753310674710 +- conda: https://prefix.dev/robostack-staging/linux-64/ros-humble-ament-cmake-gmock-1.3.12-np126py311hbc2a38a_13.conda + sha256: 42ae5a29073840fd4ecb48c0f8f1c8cfbb702c4fa17197ab669f2cf973de0d38 + md5: 66ced229ef0fe5050d74a6f96b1a27a8 + depends: + - gmock + - python + - ros-humble-ament-cmake-gtest + - ros-humble-ament-cmake-test + - ros-humble-gmock-vendor + - ros-humble-ros-workspace + - ros2-distro-mutex 0.7.* humble_* + - libgcc >=13 + - libstdcxx >=13 + - libgcc >=13 + - __glibc >=2.17,<3.0.a0 + - python_abi 3.11.* *_cp311 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + - numpy >=1.26.4,<2.0a0 + license: BSD-3-Clause + size: 24278 + timestamp: 1753308239287 +- conda: https://prefix.dev/robostack-staging/linux-aarch64/ros-humble-ament-cmake-gmock-1.3.12-np126py311hbdd918e_13.conda + sha256: b42557194c510fbc39a9967572adeb4250bff7eea4e6f8864020a7aa0d7df872 + md5: 94941e0cd973a884d51581035b0c2111 + depends: + - gmock + - python + - ros-humble-ament-cmake-gtest + - ros-humble-ament-cmake-test + - ros-humble-gmock-vendor + - ros-humble-ros-workspace + - ros2-distro-mutex 0.7.* humble_* + - libgcc >=13 + - libstdcxx >=13 + - libgcc >=13 + - python_abi 3.11.* *_cp311 + - numpy >=1.26.4,<2.0a0 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + license: BSD-3-Clause + size: 24070 + timestamp: 1753308362876 +- conda: https://prefix.dev/robostack-staging/osx-arm64/ros-humble-ament-cmake-gmock-1.3.12-np126py311h2a51a2c_13.conda + sha256: cfd4743b79f722a47aa22154fb864e2c327427eff8e5a95bb87fc3a6f4268661 + md5: cd7e2860928731b48477db9189815c1c + depends: + - gmock + - python + - ros-humble-ament-cmake-gtest + - ros-humble-ament-cmake-test + - ros-humble-gmock-vendor + - ros-humble-ros-workspace + - ros2-distro-mutex 0.7.* humble_* + - __osx >=11.0 + - libcxx >=18 + - numpy >=1.26.4,<2.0a0 + - python_abi 3.11.* *_cp311 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + license: BSD-3-Clause + size: 24485 + timestamp: 1753308555800 +- conda: https://prefix.dev/robostack-staging/win-64/ros-humble-ament-cmake-gmock-1.3.12-np126py311hd5de103_13.conda + sha256: b018dc3aa2aecb1010dabf972097efeb8a2ece61ef1272ce167415c6622535cb + md5: f8f66e3a546d0bab3327e2431bd68e31 + depends: + - gmock + - python + - ros-humble-ament-cmake-gtest + - ros-humble-ament-cmake-test + - ros-humble-gmock-vendor + - ros-humble-ros-workspace + - ros2-distro-mutex 0.7.* humble_* + - vc >=14.3,<15 + - vc14_runtime >=14.44.35208 + - ucrt >=10.0.20348.0 + - vc >=14.3,<15 + - vc14_runtime >=14.44.35208 + - ucrt >=10.0.20348.0 + - numpy >=1.26.4,<2.0a0 + - python_abi 3.11.* *_cp311 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + license: BSD-3-Clause + size: 20986 + timestamp: 1753310787227 +- conda: https://prefix.dev/robostack-staging/linux-64/ros-humble-ament-cmake-gtest-1.3.12-np126py311hbc2a38a_13.conda + sha256: f6f1601109636593090677e4494e9d0accb61283c211790418db5b734675846c + md5: 11ee70956b0348b50f570945c80b1b03 + depends: + - gtest + - python + - ros-humble-ament-cmake-test + - ros-humble-gtest-vendor + - ros-humble-ros-workspace + - ros2-distro-mutex 0.7.* humble_* + - libgcc >=13 + - libstdcxx >=13 + - libgcc >=13 + - __glibc >=2.17,<3.0.a0 + - gtest >=1.17.0,<1.17.1.0a0 + - python_abi 3.11.* *_cp311 + - numpy >=1.26.4,<2.0a0 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + license: BSD-3-Clause + size: 24463 + timestamp: 1753308117873 +- conda: https://prefix.dev/robostack-staging/linux-aarch64/ros-humble-ament-cmake-gtest-1.3.12-np126py311hbdd918e_13.conda + sha256: ddc66064fdbf38f75067d5f764ae96d37ee7ed532cb1c308d58426f2207a3213 + md5: c83cff8957336de829a0c4d1b0af10a1 + depends: + - gtest + - python + - ros-humble-ament-cmake-test + - ros-humble-gtest-vendor + - ros-humble-ros-workspace + - ros2-distro-mutex 0.7.* humble_* + - libstdcxx >=13 + - libgcc >=13 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + - python_abi 3.11.* *_cp311 + - gtest >=1.17.0,<1.17.1.0a0 + - numpy >=1.26.4,<2.0a0 + license: BSD-3-Clause + size: 24289 + timestamp: 1753308247128 +- conda: https://prefix.dev/robostack-staging/osx-arm64/ros-humble-ament-cmake-gtest-1.3.12-np126py311h2a51a2c_13.conda + sha256: 8414f028348d1793af8d245e21b654aaa08036f4bea195a490ecbd82c12c5e73 + md5: 060def4787ccb0c86030f1f650cfda6d + depends: + - gtest + - python + - ros-humble-ament-cmake-test + - ros-humble-gtest-vendor + - ros-humble-ros-workspace + - ros2-distro-mutex 0.7.* humble_* + - __osx >=11.0 + - libcxx >=18 + - gtest >=1.17.0,<1.17.1.0a0 + - python_abi 3.11.* *_cp311 + - numpy >=1.26.4,<2.0a0 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + license: BSD-3-Clause + size: 24744 + timestamp: 1753308382582 +- conda: https://prefix.dev/robostack-staging/win-64/ros-humble-ament-cmake-gtest-1.3.12-np126py311hd5de103_13.conda + sha256: d8e7408f3627348ec03d8e2fd6da4ce574d0312d0cac9babab7873e756f8cc3d + md5: 894f45a461ef772274ca24bda9009824 + depends: + - gtest + - python + - ros-humble-ament-cmake-test + - ros-humble-gtest-vendor + - ros-humble-ros-workspace + - ros2-distro-mutex 0.7.* humble_* + - vc >=14.3,<15 + - vc14_runtime >=14.44.35208 + - ucrt >=10.0.20348.0 + - vc >=14.3,<15 + - vc14_runtime >=14.44.35208 + - ucrt >=10.0.20348.0 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + - gtest >=1.17.0,<1.17.1.0a0 + - numpy >=1.26.4,<2.0a0 + - python_abi 3.11.* *_cp311 + license: BSD-3-Clause + size: 21204 + timestamp: 1753309928588 +- conda: https://prefix.dev/robostack-staging/linux-64/ros-humble-ament-cmake-include-directories-1.3.12-np126py311hbc2a38a_13.conda + sha256: d8877e617988bdc248b5651330eaa8775d43fd71d4492edc5cebe9e31ef71826 + md5: 8ca2d3e9898dbefbaf66da268901f42d + depends: + - python + - ros-humble-ament-cmake-core + - ros-humble-ros-workspace + - ros2-distro-mutex 0.7.* humble_* + - libstdcxx >=13 + - libgcc >=13 + - __glibc >=2.17,<3.0.a0 + - numpy >=1.26.4,<2.0a0 + - python_abi 3.11.* *_cp311 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + license: BSD-3-Clause + size: 21763 + timestamp: 1753307894188 +- conda: https://prefix.dev/robostack-staging/linux-aarch64/ros-humble-ament-cmake-include-directories-1.3.12-np126py311hbdd918e_13.conda + sha256: b218a2407b36d17482a5917de62bb7ba82d34dd01cf496b5c76cd3f89055800a + md5: 83b37591d7fcb90a3624a821055ecc87 + depends: + - python + - ros-humble-ament-cmake-core + - ros-humble-ros-workspace + - ros2-distro-mutex 0.7.* humble_* + - libgcc >=13 + - libstdcxx >=13 + - libgcc >=13 + - python_abi 3.11.* *_cp311 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + - numpy >=1.26.4,<2.0a0 + license: BSD-3-Clause + size: 21635 + timestamp: 1753308073850 +- conda: https://prefix.dev/robostack-staging/osx-arm64/ros-humble-ament-cmake-include-directories-1.3.12-np126py311h2a51a2c_13.conda + sha256: 62163e5c0190590eca621309123623103f96fd9c79a03261c66acf3cd3a2649a + md5: d5d0201256507f6af9e37de564335ff6 + depends: + - python + - ros-humble-ament-cmake-core + - ros-humble-ros-workspace + - ros2-distro-mutex 0.7.* humble_* + - __osx >=11.0 + - libcxx >=18 + - python_abi 3.11.* *_cp311 + - numpy >=1.26.4,<2.0a0 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + license: BSD-3-Clause + size: 22037 + timestamp: 1753308003837 +- conda: https://prefix.dev/robostack-staging/win-64/ros-humble-ament-cmake-include-directories-1.3.12-np126py311hd5de103_13.conda + sha256: 3b7faea541c543b5bbec07a662980286cb2c76b5e5b2889866104f6f9ed366cf + md5: 6cf19b3f74c08a3376debeee30af2d28 + depends: + - python + - ros-humble-ament-cmake-core + - ros-humble-ros-workspace + - ros2-distro-mutex 0.7.* humble_* + - vc >=14.3,<15 + - vc14_runtime >=14.44.35208 + - ucrt >=10.0.20348.0 + - vc >=14.3,<15 + - vc14_runtime >=14.44.35208 + - ucrt >=10.0.20348.0 + - python_abi 3.11.* *_cp311 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + - numpy >=1.26.4,<2.0a0 + license: BSD-3-Clause + size: 18605 + timestamp: 1753308519660 +- conda: https://prefix.dev/robostack-staging/linux-64/ros-humble-ament-cmake-libraries-1.3.12-np126py311hbc2a38a_13.conda + sha256: a92be34c0f93024848764df1083bf5dcadd4a6cabe13ad89f8b2d53ddd86cb9f + md5: b25c310d10af0f1dc778c294284233d2 + depends: + - python + - ros-humble-ament-cmake-core + - ros-humble-ros-workspace + - ros2-distro-mutex 0.7.* humble_* + - libgcc >=13 + - __glibc >=2.17,<3.0.a0 + - libstdcxx >=13 + - libgcc >=13 + - numpy >=1.26.4,<2.0a0 + - python_abi 3.11.* *_cp311 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + license: BSD-3-Clause + size: 21471 + timestamp: 1753307890281 +- conda: https://prefix.dev/robostack-staging/linux-aarch64/ros-humble-ament-cmake-libraries-1.3.12-np126py311hbdd918e_13.conda + sha256: 535f72fc50b8a923ae3d212fc4d6c6ff3440b5ff2bd40d2b9a2a6b52e3b8a722 + md5: 9844c880ab861d164528dc551db4771e + depends: + - python + - ros-humble-ament-cmake-core + - ros-humble-ros-workspace + - ros2-distro-mutex 0.7.* humble_* + - libgcc >=13 + - libstdcxx >=13 + - libgcc >=13 + - python_abi 3.11.* *_cp311 + - numpy >=1.26.4,<2.0a0 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + license: BSD-3-Clause + size: 21321 + timestamp: 1753308070125 +- conda: https://prefix.dev/robostack-staging/osx-arm64/ros-humble-ament-cmake-libraries-1.3.12-np126py311h2a51a2c_13.conda + sha256: 5d520debcb590c84f7b53385748899ee474d2de8fb3c713b1d826a732ebad5b8 + md5: cc5bc033e3b933f1554171a8df86441e + depends: + - python + - ros-humble-ament-cmake-core + - ros-humble-ros-workspace + - ros2-distro-mutex 0.7.* humble_* + - libcxx >=18 + - __osx >=11.0 + - numpy >=1.26.4,<2.0a0 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + - python_abi 3.11.* *_cp311 + license: BSD-3-Clause + size: 21745 + timestamp: 1753307994047 +- conda: https://prefix.dev/robostack-staging/win-64/ros-humble-ament-cmake-libraries-1.3.12-np126py311hd5de103_13.conda + sha256: 98e4c8123a8170fbdacb8b3c2df441e31b4d1f37cc515bfcd2ab3587c6f186a7 + md5: 1678ec1553b9139d4f755930656221fe + depends: + - python + - ros-humble-ament-cmake-core + - ros-humble-ros-workspace + - ros2-distro-mutex 0.7.* humble_* + - vc >=14.3,<15 + - vc14_runtime >=14.44.35208 + - ucrt >=10.0.20348.0 + - vc >=14.3,<15 + - vc14_runtime >=14.44.35208 + - ucrt >=10.0.20348.0 + - numpy >=1.26.4,<2.0a0 + - python_abi 3.11.* *_cp311 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + license: BSD-3-Clause + size: 18214 + timestamp: 1753308478455 +- conda: https://prefix.dev/robostack-staging/linux-64/ros-humble-ament-cmake-lint-cmake-0.12.12-np126py311hbc2a38a_13.conda + sha256: 842a80bfe7451c58b980136ec3f8aa956b837e7696fd316e0316ac0854f6b8df + md5: dd052601aecb9de76141579308dbe71f + depends: + - python + - ros-humble-ament-cmake-test + - ros-humble-ament-lint-cmake + - ros-humble-ros-workspace + - ros2-distro-mutex 0.7.* humble_* + - libstdcxx >=13 + - libgcc >=13 + - __glibc >=2.17,<3.0.a0 + - libgcc >=13 + - numpy >=1.26.4,<2.0a0 + - python_abi 3.11.* *_cp311 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + license: BSD-3-Clause + size: 22206 + timestamp: 1753308410225 +- conda: https://prefix.dev/robostack-staging/linux-aarch64/ros-humble-ament-cmake-lint-cmake-0.12.12-np126py311hbdd918e_13.conda + sha256: c7e8f99d05ceee9feea8236a4ef2a1e484f019bb0b3f377ac2292771e5a5e013 + md5: 0a0c7de10abad635eabf17df4d4819e7 + depends: + - python + - ros-humble-ament-cmake-test + - ros-humble-ament-lint-cmake + - ros-humble-ros-workspace + - ros2-distro-mutex 0.7.* humble_* + - libstdcxx >=13 + - libgcc >=13 + - python_abi 3.11.* *_cp311 + - numpy >=1.26.4,<2.0a0 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + license: BSD-3-Clause + size: 22050 + timestamp: 1753308529942 +- conda: https://prefix.dev/robostack-staging/osx-arm64/ros-humble-ament-cmake-lint-cmake-0.12.12-np126py311h2a51a2c_13.conda + sha256: 1f74ca8e2d593c8bfb6eccefddcf7f72fea7a2ba1324055c62fc241818f5126f + md5: f18558de9dad1ea4a8e2ace85becb8af + depends: + - python + - ros-humble-ament-cmake-test + - ros-humble-ament-lint-cmake + - ros-humble-ros-workspace + - ros2-distro-mutex 0.7.* humble_* + - libcxx >=18 + - __osx >=11.0 + - numpy >=1.26.4,<2.0a0 + - python_abi 3.11.* *_cp311 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + license: BSD-3-Clause + size: 22471 + timestamp: 1753308848876 +- conda: https://prefix.dev/robostack-staging/win-64/ros-humble-ament-cmake-lint-cmake-0.12.12-np126py311hd5de103_13.conda + sha256: f4a472618d357558b905f5779fb4d3130a3a42adcf5db03d7cbe49930ed84b81 + md5: 26a81736dbe7552fcc4e5bc66711efcf + depends: + - python + - ros-humble-ament-cmake-test + - ros-humble-ament-lint-cmake + - ros-humble-ros-workspace + - ros2-distro-mutex 0.7.* humble_* + - vc >=14.3,<15 + - vc14_runtime >=14.44.35208 + - ucrt >=10.0.20348.0 + - vc >=14.3,<15 + - vc14_runtime >=14.44.35208 + - ucrt >=10.0.20348.0 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + - python_abi 3.11.* *_cp311 + - numpy >=1.26.4,<2.0a0 + license: BSD-3-Clause + size: 18956 + timestamp: 1753312682696 +- conda: https://prefix.dev/robostack-staging/linux-64/ros-humble-ament-cmake-pep257-0.12.12-np126py311hbc2a38a_13.conda + sha256: 65f00cd135754dda67ae2d61d45a416f10e6d2ee7265ce88a987e74616c5764a + md5: 1b6b7d2626a947fa731687d2e394a5d9 + depends: + - python + - ros-humble-ament-cmake-test + - ros-humble-ament-pep257 + - ros-humble-ros-workspace + - ros2-distro-mutex 0.7.* humble_* + - libstdcxx >=13 + - libgcc >=13 + - __glibc >=2.17,<3.0.a0 + - libgcc >=13 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + - numpy >=1.26.4,<2.0a0 + - python_abi 3.11.* *_cp311 + license: BSD-3-Clause + size: 22958 + timestamp: 1753309034571 +- conda: https://prefix.dev/robostack-staging/linux-aarch64/ros-humble-ament-cmake-pep257-0.12.12-np126py311hbdd918e_13.conda + sha256: 02b251a7ff1b284494ef1a10e9d9d57fafd71ca9cbc85fd501f3a56a1bef9494 + md5: 812cd00adcdfab086f3f4521b0bc2a43 + depends: + - python + - ros-humble-ament-cmake-test + - ros-humble-ament-pep257 + - ros-humble-ros-workspace + - ros2-distro-mutex 0.7.* humble_* + - libstdcxx >=13 + - libgcc >=13 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + - numpy >=1.26.4,<2.0a0 + - python_abi 3.11.* *_cp311 + license: BSD-3-Clause + size: 22823 + timestamp: 1753309030083 +- conda: https://prefix.dev/robostack-staging/osx-arm64/ros-humble-ament-cmake-pep257-0.12.12-np126py311h2a51a2c_13.conda + sha256: 4ca51981e9e90aabbb91ca213d98faf6900969b3fe42594a57ce5552ce91e15c + md5: 52f007d40095f8a8f016f2ba55296bfd + depends: + - python + - ros-humble-ament-cmake-test + - ros-humble-ament-pep257 + - ros-humble-ros-workspace + - ros2-distro-mutex 0.7.* humble_* + - __osx >=11.0 + - libcxx >=18 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + - python_abi 3.11.* *_cp311 + - numpy >=1.26.4,<2.0a0 + license: BSD-3-Clause + size: 23218 + timestamp: 1753309342810 +- conda: https://prefix.dev/robostack-staging/win-64/ros-humble-ament-cmake-pep257-0.12.12-np126py311hd5de103_13.conda + sha256: 9fef772f08314e426b8f227ec47d3e8317712b0acb72736278c48ec4e64125e8 + md5: 53c59c33cd67312fe8e9334555c18b0d + depends: + - python + - ros-humble-ament-cmake-test + - ros-humble-ament-pep257 + - ros-humble-ros-workspace + - ros2-distro-mutex 0.7.* humble_* + - vc >=14.3,<15 + - vc14_runtime >=14.44.35208 + - ucrt >=10.0.20348.0 + - vc >=14.3,<15 + - vc14_runtime >=14.44.35208 + - ucrt >=10.0.20348.0 + - python_abi 3.11.* *_cp311 + - numpy >=1.26.4,<2.0a0 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + license: BSD-3-Clause + size: 19702 + timestamp: 1753314968588 +- conda: https://prefix.dev/robostack-staging/linux-64/ros-humble-ament-cmake-pytest-1.3.12-np126py311hbc2a38a_13.conda + sha256: 1fa1429a4c42aeb0fef694e92b607bf4cf78ad03f112277226b971991ebfa0b9 + md5: 876e0a9d3af99e4ae0e579263bdc8e30 + depends: + - pytest + - python + - ros-humble-ament-cmake-core + - ros-humble-ament-cmake-test + - ros-humble-ros-workspace + - ros2-distro-mutex 0.7.* humble_* + - __glibc >=2.17,<3.0.a0 + - libstdcxx >=13 + - libgcc >=13 + - numpy >=1.26.4,<2.0a0 + - python_abi 3.11.* *_cp311 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + license: BSD-3-Clause + size: 24765 + timestamp: 1753308133244 +- conda: https://prefix.dev/robostack-staging/linux-aarch64/ros-humble-ament-cmake-pytest-1.3.12-np126py311hbdd918e_13.conda + sha256: 02e49d808a3177578f667e26c8bc8c3e0586ec851a9da188e1a5c9d94eb12107 + md5: 1a96abde9a297690f3ef173440e22894 + depends: + - pytest + - python + - ros-humble-ament-cmake-core + - ros-humble-ament-cmake-test + - ros-humble-ros-workspace + - ros2-distro-mutex 0.7.* humble_* + - libgcc >=13 + - libstdcxx >=13 + - libgcc >=13 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + - python_abi 3.11.* *_cp311 + - numpy >=1.26.4,<2.0a0 + license: BSD-3-Clause + size: 24642 + timestamp: 1753308261896 +- conda: https://prefix.dev/robostack-staging/osx-arm64/ros-humble-ament-cmake-pytest-1.3.12-np126py311h2a51a2c_13.conda + sha256: 3d091b83f69481c05bb28563170fc090bbdde6adf2f2475ca2f131f61b9ef07d + md5: 12895a75851aa581c98066678b19093c + depends: + - pytest + - python + - ros-humble-ament-cmake-core + - ros-humble-ament-cmake-test + - ros-humble-ros-workspace + - ros2-distro-mutex 0.7.* humble_* + - __osx >=11.0 + - libcxx >=18 + - python_abi 3.11.* *_cp311 + - numpy >=1.26.4,<2.0a0 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + license: BSD-3-Clause + size: 24975 + timestamp: 1753308403553 +- conda: https://prefix.dev/robostack-staging/win-64/ros-humble-ament-cmake-pytest-1.3.12-np126py311hd5de103_13.conda + sha256: dfc7f70eec93d8067a54e30fd821ca68328a5bf5b3e9688de3e38e78472edcc8 + md5: 11629758eb914b64087e2d3b99650026 + depends: + - pytest + - python + - ros-humble-ament-cmake-core + - ros-humble-ament-cmake-test + - ros-humble-ros-workspace + - ros2-distro-mutex 0.7.* humble_* + - vc >=14.3,<15 + - vc14_runtime >=14.44.35208 + - ucrt >=10.0.20348.0 + - vc >=14.3,<15 + - vc14_runtime >=14.44.35208 + - ucrt >=10.0.20348.0 + - python_abi 3.11.* *_cp311 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + - numpy >=1.26.4,<2.0a0 + license: BSD-3-Clause + size: 21519 + timestamp: 1753310059601 +- conda: https://prefix.dev/robostack-staging/linux-64/ros-humble-ament-cmake-python-1.3.12-np126py311hbc2a38a_13.conda + sha256: 3a16f43ef92450cb56611045f5f61a89f9fc4fdfd4b80eef5ee996d85275a7f6 + md5: 32b08b7d13b1dc3d9a0f879267a7b1dd + depends: + - python + - ros-humble-ament-cmake-core + - ros-humble-ros-workspace + - ros2-distro-mutex 0.7.* humble_* + - libstdcxx >=13 + - libgcc >=13 + - __glibc >=2.17,<3.0.a0 + - python_abi 3.11.* *_cp311 + - numpy >=1.26.4,<2.0a0 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + license: BSD-3-Clause + size: 24071 + timestamp: 1753307879122 +- conda: https://prefix.dev/robostack-staging/linux-aarch64/ros-humble-ament-cmake-python-1.3.12-np126py311hbdd918e_13.conda + sha256: e8500c2cffe14433c885561ca39b50d00c351b3457e9cbd2a23b1df3daffc45f + md5: dfc07166e7c72587db34c89d5e4cdf20 + depends: + - python + - ros-humble-ament-cmake-core + - ros-humble-ros-workspace + - ros2-distro-mutex 0.7.* humble_* + - libgcc >=13 + - libstdcxx >=13 + - libgcc >=13 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + - numpy >=1.26.4,<2.0a0 + - python_abi 3.11.* *_cp311 + license: BSD-3-Clause + size: 23939 + timestamp: 1753308059170 +- conda: https://prefix.dev/robostack-staging/osx-arm64/ros-humble-ament-cmake-python-1.3.12-np126py311h2a51a2c_13.conda + sha256: cfefedea7f76f8262a60b61505d3858b4ea988b3ac3650ab04fea4dd1c22f5af + md5: ee7e775d5283d5dc05612de4d4a5fcae + depends: + - python + - ros-humble-ament-cmake-core + - ros-humble-ros-workspace + - ros2-distro-mutex 0.7.* humble_* + - libcxx >=18 + - __osx >=11.0 + - numpy >=1.26.4,<2.0a0 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + - python_abi 3.11.* *_cp311 + license: BSD-3-Clause + size: 24349 + timestamp: 1753307975915 +- conda: https://prefix.dev/robostack-staging/win-64/ros-humble-ament-cmake-python-1.3.12-np126py311hd5de103_13.conda + sha256: f2f214e84c12a848b4a1a37d536c1eae7d39fd4715876cd484cd3a4f6b03e3e6 + md5: f2ab7d030f41f1ec6a898ddac1a60bb8 + depends: + - python + - ros-humble-ament-cmake-core + - ros-humble-ros-workspace + - ros2-distro-mutex 0.7.* humble_* + - vc >=14.3,<15 + - vc14_runtime >=14.44.35208 + - ucrt >=10.0.20348.0 + - vc >=14.3,<15 + - vc14_runtime >=14.44.35208 + - ucrt >=10.0.20348.0 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + - python_abi 3.11.* *_cp311 + - numpy >=1.26.4,<2.0a0 + license: BSD-3-Clause + size: 20891 + timestamp: 1753308386191 +- conda: https://prefix.dev/robostack-staging/linux-64/ros-humble-ament-cmake-ros-0.10.0-np126py311hbc2a38a_13.conda + sha256: fcdfb6c6574de1ea672548fcd65ddba07a59f958577786700c9d9fe0c40f8bbd + md5: 0b4106f6cc55892a8f22e67718fbbfee + depends: + - python + - ros-humble-ament-cmake + - ros-humble-ament-cmake-gmock + - ros-humble-ament-cmake-gtest + - ros-humble-ament-cmake-pytest + - ros-humble-domain-coordinator + - ros-humble-ros-workspace + - ros2-distro-mutex 0.7.* humble_* + - __glibc >=2.17,<3.0.a0 + - libgcc >=13 + - libstdcxx >=13 + - libgcc >=13 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + - numpy >=1.26.4,<2.0a0 + - python_abi 3.11.* *_cp311 + license: BSD-3-Clause + size: 30720 + timestamp: 1753309547004 +- conda: https://prefix.dev/robostack-staging/linux-aarch64/ros-humble-ament-cmake-ros-0.10.0-np126py311hbdd918e_13.conda + sha256: 08746b2c7749a020b9d4d804359b923a7763492a9f05712bfc67f9effe489454 + md5: 4cee143f4272155f8078cee800b8f66f + depends: + - python + - ros-humble-ament-cmake + - ros-humble-ament-cmake-gmock + - ros-humble-ament-cmake-gtest + - ros-humble-ament-cmake-pytest + - ros-humble-domain-coordinator + - ros-humble-ros-workspace + - ros2-distro-mutex 0.7.* humble_* + - libstdcxx >=13 + - libgcc >=13 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + - numpy >=1.26.4,<2.0a0 + - python_abi 3.11.* *_cp311 + license: BSD-3-Clause + size: 30556 + timestamp: 1753309424594 +- conda: https://prefix.dev/robostack-staging/osx-arm64/ros-humble-ament-cmake-ros-0.10.0-np126py311h2a51a2c_13.conda + sha256: 25cc29853a4fbf65495a53eabf7b6dad09150441d5bd79f41a67f58f436e4a44 + md5: 696a7940d1ff70149279aa108cf05895 + depends: + - python + - ros-humble-ament-cmake + - ros-humble-ament-cmake-gmock + - ros-humble-ament-cmake-gtest + - ros-humble-ament-cmake-pytest + - ros-humble-domain-coordinator + - ros-humble-ros-workspace + - ros2-distro-mutex 0.7.* humble_* + - libcxx >=18 + - __osx >=11.0 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + - python_abi 3.11.* *_cp311 + - numpy >=1.26.4,<2.0a0 + license: BSD-3-Clause + size: 30864 + timestamp: 1753310206767 +- conda: https://prefix.dev/robostack-staging/win-64/ros-humble-ament-cmake-ros-0.10.0-np126py311hd5de103_13.conda + sha256: ceebda7322d57a9e073878fbfcd10ee393b7a2e635af755588cf2532b1704e68 + md5: 972022aa3c51ec45a85e946b3b3c9438 + depends: + - python + - ros-humble-ament-cmake + - ros-humble-ament-cmake-gmock + - ros-humble-ament-cmake-gtest + - ros-humble-ament-cmake-pytest + - ros-humble-domain-coordinator + - ros-humble-ros-workspace + - ros2-distro-mutex 0.7.* humble_* + - vc >=14.3,<15 + - vc14_runtime >=14.44.35208 + - ucrt >=10.0.20348.0 + - vc >=14.3,<15 + - vc14_runtime >=14.44.35208 + - ucrt >=10.0.20348.0 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + - python_abi 3.11.* *_cp311 + - numpy >=1.26.4,<2.0a0 + license: BSD-3-Clause + size: 27380 + timestamp: 1753317648004 +- conda: https://prefix.dev/robostack-staging/linux-64/ros-humble-ament-cmake-target-dependencies-1.3.12-np126py311hbc2a38a_13.conda + sha256: 7b6165840464f4c9f4c8c39a7e7b45539064df8ac93741bf2b9bb238c98a2965 + md5: 5acf2594bde44ef6415d5dd531e076f0 + depends: + - python + - ros-humble-ament-cmake-core + - ros-humble-ament-cmake-include-directories + - ros-humble-ament-cmake-libraries + - ros-humble-ros-workspace + - ros2-distro-mutex 0.7.* humble_* + - __glibc >=2.17,<3.0.a0 + - libgcc >=13 + - libstdcxx >=13 + - libgcc >=13 + - numpy >=1.26.4,<2.0a0 + - python_abi 3.11.* *_cp311 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + license: BSD-3-Clause + size: 23489 + timestamp: 1753308014306 +- conda: https://prefix.dev/robostack-staging/linux-aarch64/ros-humble-ament-cmake-target-dependencies-1.3.12-np126py311hbdd918e_13.conda + sha256: 1738ef7a350a9c51172c06a0145fc98afba8336c7e9ebe0f832fd9fccfdc8a2b + md5: ab5ed13a1d1fce3d16c83512be7d59f7 + depends: + - python + - ros-humble-ament-cmake-core + - ros-humble-ament-cmake-include-directories + - ros-humble-ament-cmake-libraries + - ros-humble-ros-workspace + - ros2-distro-mutex 0.7.* humble_* + - libgcc >=13 + - libstdcxx >=13 + - libgcc >=13 + - numpy >=1.26.4,<2.0a0 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + - python_abi 3.11.* *_cp311 + license: BSD-3-Clause + size: 23343 + timestamp: 1753308156485 +- conda: https://prefix.dev/robostack-staging/osx-arm64/ros-humble-ament-cmake-target-dependencies-1.3.12-np126py311h2a51a2c_13.conda + sha256: 89d18f6c2447f3412ffe55defbee107e24201cd9682ff53557fb0c88a62b5aec + md5: 38198d759d4a72bb5342c73c8f16986a + depends: + - python + - ros-humble-ament-cmake-core + - ros-humble-ament-cmake-include-directories + - ros-humble-ament-cmake-libraries + - ros-humble-ros-workspace + - ros2-distro-mutex 0.7.* humble_* + - libcxx >=18 + - __osx >=11.0 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + - numpy >=1.26.4,<2.0a0 + - python_abi 3.11.* *_cp311 + license: BSD-3-Clause + size: 23730 + timestamp: 1753308233894 +- conda: https://prefix.dev/robostack-staging/win-64/ros-humble-ament-cmake-target-dependencies-1.3.12-np126py311hd5de103_13.conda + sha256: 08b3e7974491a3cb232e20fc159179ab0fd4a3492e47cdf427a5b855e15ed265 + md5: c1912a88fb3db58edfa6e5f234151712 + depends: + - python + - ros-humble-ament-cmake-core + - ros-humble-ament-cmake-include-directories + - ros-humble-ament-cmake-libraries + - ros-humble-ros-workspace + - ros2-distro-mutex 0.7.* humble_* + - vc >=14.3,<15 + - vc14_runtime >=14.44.35208 + - ucrt >=10.0.20348.0 + - vc >=14.3,<15 + - vc14_runtime >=14.44.35208 + - ucrt >=10.0.20348.0 + - numpy >=1.26.4,<2.0a0 + - python_abi 3.11.* *_cp311 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + license: BSD-3-Clause + size: 20300 + timestamp: 1753309296042 +- conda: https://prefix.dev/robostack-staging/linux-64/ros-humble-ament-cmake-test-1.3.12-np126py311hbc2a38a_13.conda + sha256: 516da16d732c14ea6d2d3d21a0c56293add4aeeb25fc847dadaf87e02286f73f + md5: e7359c304fc5e96ab631d74d199c78d1 + depends: + - python + - ros-humble-ament-cmake-core + - ros-humble-ros-workspace + - ros2-distro-mutex 0.7.* humble_* + - __glibc >=2.17,<3.0.a0 + - libstdcxx >=13 + - libgcc >=13 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + - numpy >=1.26.4,<2.0a0 + - python_abi 3.11.* *_cp311 + license: BSD-3-Clause + size: 36052 + timestamp: 1753308004911 +- conda: https://prefix.dev/robostack-staging/linux-aarch64/ros-humble-ament-cmake-test-1.3.12-np126py311hbdd918e_13.conda + sha256: 52d9130db3b491d77ca7c8a961420d2c72ef9e595ed409fcc32331e0a33e6905 + md5: 537841be3ce2e19d858fa7cd1b1fb5d8 + depends: + - python + - ros-humble-ament-cmake-core + - ros-humble-ros-workspace + - ros2-distro-mutex 0.7.* humble_* + - libstdcxx >=13 + - libgcc >=13 + - numpy >=1.26.4,<2.0a0 + - python_abi 3.11.* *_cp311 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + license: BSD-3-Clause + size: 35915 + timestamp: 1753308149903 +- conda: https://prefix.dev/robostack-staging/osx-arm64/ros-humble-ament-cmake-test-1.3.12-np126py311h2a51a2c_13.conda + sha256: 90d007071357211ebd790c9331313ee5e506f96c12a5fcb75f49a0410db889d5 + md5: b28acde249ba1eaf4fe41ca8f630bded + depends: + - python + - ros-humble-ament-cmake-core + - ros-humble-ros-workspace + - ros2-distro-mutex 0.7.* humble_* + - __osx >=11.0 + - libcxx >=18 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + - python_abi 3.11.* *_cp311 + - numpy >=1.26.4,<2.0a0 + license: BSD-3-Clause + size: 36340 + timestamp: 1753308223645 +- conda: https://prefix.dev/robostack-staging/win-64/ros-humble-ament-cmake-test-1.3.12-np126py311hd5de103_13.conda + sha256: da3dfa9234ab2791369e6a5c68d69c561c9724acdfa9c0c60725844b983bbabc + md5: cffaf502b573b1ee3b4737c134b6cdd5 + depends: + - python + - ros-humble-ament-cmake-core + - ros-humble-ros-workspace + - ros2-distro-mutex 0.7.* humble_* + - vc >=14.3,<15 + - vc14_runtime >=14.44.35208 + - ucrt >=10.0.20348.0 + - vc >=14.3,<15 + - vc14_runtime >=14.44.35208 + - ucrt >=10.0.20348.0 + - numpy >=1.26.4,<2.0a0 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + - python_abi 3.11.* *_cp311 + license: BSD-3-Clause + size: 32907 + timestamp: 1753309221361 +- conda: https://prefix.dev/robostack-staging/linux-64/ros-humble-ament-cmake-uncrustify-0.12.12-np126py311hbc2a38a_13.conda + sha256: 50e3b9d18807870bf9fd2bad251b50790b2d1f4e2c355dd0d146a45e9621c5a4 + md5: 7d649017e6ba4f84137a761ec01c5e9f + depends: + - python + - ros-humble-ament-cmake-test + - ros-humble-ament-uncrustify + - ros-humble-ros-workspace + - ros2-distro-mutex 0.7.* humble_* + - libgcc >=13 + - __glibc >=2.17,<3.0.a0 + - libstdcxx >=13 + - libgcc >=13 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + - numpy >=1.26.4,<2.0a0 + - python_abi 3.11.* *_cp311 + license: BSD-3-Clause + size: 23286 + timestamp: 1753309029772 +- conda: https://prefix.dev/robostack-staging/linux-aarch64/ros-humble-ament-cmake-uncrustify-0.12.12-np126py311hbdd918e_13.conda + sha256: f9d984b58dbe62439ed2871ab495b324aa23c7d39b0c1e02df55f88661c0966f + md5: 36668ddc30c3935744bed32dec2bb119 + depends: + - python + - ros-humble-ament-cmake-test + - ros-humble-ament-uncrustify + - ros-humble-ros-workspace + - ros2-distro-mutex 0.7.* humble_* + - libgcc >=13 + - libstdcxx >=13 + - libgcc >=13 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + - python_abi 3.11.* *_cp311 + - numpy >=1.26.4,<2.0a0 + license: BSD-3-Clause + size: 23189 + timestamp: 1753309025649 +- conda: https://prefix.dev/robostack-staging/osx-arm64/ros-humble-ament-cmake-uncrustify-0.12.12-np126py311h2a51a2c_13.conda + sha256: 6119bd530fd52b2cc119398ae4739da4ced4b311b2d9281c9afcd7fd2ea6c847 + md5: 75a5b5f512919ca7f6454267114751f3 + depends: + - python + - ros-humble-ament-cmake-test + - ros-humble-ament-uncrustify + - ros-humble-ros-workspace + - ros2-distro-mutex 0.7.* humble_* + - __osx >=11.0 + - libcxx >=18 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + - python_abi 3.11.* *_cp311 + - numpy >=1.26.4,<2.0a0 + license: BSD-3-Clause + size: 23543 + timestamp: 1753309336201 +- conda: https://prefix.dev/robostack-staging/win-64/ros-humble-ament-cmake-uncrustify-0.12.12-np126py311hd5de103_13.conda + sha256: dad078af7905f5ab365cbb0bceb694d0705d68a31b96768870a2318d957102d0 + md5: 42b577f3f5ed88cd5cb7689273fc49ab + depends: + - python + - ros-humble-ament-cmake-test + - ros-humble-ament-uncrustify + - ros-humble-ros-workspace + - ros2-distro-mutex 0.7.* humble_* + - vc >=14.3,<15 + - vc14_runtime >=14.44.35208 + - ucrt >=10.0.20348.0 + - vc >=14.3,<15 + - vc14_runtime >=14.44.35208 + - ucrt >=10.0.20348.0 + - python_abi 3.11.* *_cp311 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + - numpy >=1.26.4,<2.0a0 + license: BSD-3-Clause + size: 20103 + timestamp: 1753314901194 +- conda: https://prefix.dev/robostack-staging/linux-64/ros-humble-ament-cmake-version-1.3.12-np126py311hbc2a38a_13.conda + sha256: c5cd05ecb129b27b78c6c30763f1523f1a040490409ac9a679f039552ef78148 + md5: f3e5e3e3bbb2eda878b025ece3636988 + depends: + - python + - ros-humble-ament-cmake-core + - ros-humble-ros-workspace + - ros2-distro-mutex 0.7.* humble_* + - __glibc >=2.17,<3.0.a0 + - libgcc >=13 + - libstdcxx >=13 + - libgcc >=13 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + - numpy >=1.26.4,<2.0a0 + - python_abi 3.11.* *_cp311 + license: BSD-3-Clause + size: 21637 + timestamp: 1753307878758 +- conda: https://prefix.dev/robostack-staging/linux-aarch64/ros-humble-ament-cmake-version-1.3.12-np126py311hbdd918e_13.conda + sha256: 8189fd9ba75e6b5f6070b5a32383f00471adc95c74f69388c9062b5a0bc646b2 + md5: 9d3aa6b4f1c42699217d2bdd804ef16a + depends: + - python + - ros-humble-ament-cmake-core + - ros-humble-ros-workspace + - ros2-distro-mutex 0.7.* humble_* + - libstdcxx >=13 + - libgcc >=13 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + - numpy >=1.26.4,<2.0a0 + - python_abi 3.11.* *_cp311 + license: BSD-3-Clause + size: 21491 + timestamp: 1753308055987 +- conda: https://prefix.dev/robostack-staging/osx-arm64/ros-humble-ament-cmake-version-1.3.12-np126py311h2a51a2c_13.conda + sha256: 00a11735f07cc56142d37db1f9efbccba7072dd3ad4c9b63338eb5f21bc78e5f + md5: f2c358911853092638904798790844c2 + depends: + - python + - ros-humble-ament-cmake-core + - ros-humble-ros-workspace + - ros2-distro-mutex 0.7.* humble_* + - libcxx >=18 + - __osx >=11.0 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + - numpy >=1.26.4,<2.0a0 + - python_abi 3.11.* *_cp311 + license: BSD-3-Clause + size: 21910 + timestamp: 1753308006733 +- conda: https://prefix.dev/robostack-staging/win-64/ros-humble-ament-cmake-version-1.3.12-np126py311hd5de103_13.conda + sha256: ab2fab22225d82d6c39f905c1ebc1632e5010e9835e7b25ecdc3cc9dfbc474ee + md5: 2f28c0751b928671fbbdaafc0f72b33c + depends: + - python + - ros-humble-ament-cmake-core + - ros-humble-ros-workspace + - ros2-distro-mutex 0.7.* humble_* + - vc >=14.3,<15 + - vc14_runtime >=14.44.35208 + - ucrt >=10.0.20348.0 + - vc >=14.3,<15 + - vc14_runtime >=14.44.35208 + - ucrt >=10.0.20348.0 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + - python_abi 3.11.* *_cp311 + - numpy >=1.26.4,<2.0a0 + license: BSD-3-Clause + size: 18484 + timestamp: 1753308612176 +- conda: https://prefix.dev/robostack-staging/linux-64/ros-humble-ament-cmake-xmllint-0.12.12-np126py311hbc2a38a_13.conda + sha256: 9b0bc40ecc1cdc52ef0acd0d2e4423ac178a6b56d83f6d715f5e982da423bc81 + md5: 718774de355f006e99f62ec26db0880b + depends: + - python + - ros-humble-ament-cmake-test + - ros-humble-ament-xmllint + - ros-humble-ros-workspace + - ros2-distro-mutex 0.7.* humble_* + - libgcc >=13 + - __glibc >=2.17,<3.0.a0 + - libstdcxx >=13 + - libgcc >=13 + - python_abi 3.11.* *_cp311 + - numpy >=1.26.4,<2.0a0 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + license: BSD-3-Clause + size: 22878 + timestamp: 1753309015698 +- conda: https://prefix.dev/robostack-staging/linux-aarch64/ros-humble-ament-cmake-xmllint-0.12.12-np126py311hbdd918e_13.conda + sha256: 6bab53662b623f8ce57d3eaf7e9267e3cf9aea7e29302bf3cda8dc0a7e54c8fb + md5: 70a0ea490c8c1523078d92703cbd3536 + depends: + - python + - ros-humble-ament-cmake-test + - ros-humble-ament-xmllint + - ros-humble-ros-workspace + - ros2-distro-mutex 0.7.* humble_* + - libstdcxx >=13 + - libgcc >=13 + - python_abi 3.11.* *_cp311 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + - numpy >=1.26.4,<2.0a0 + license: BSD-3-Clause + size: 22796 + timestamp: 1753309008079 +- conda: https://prefix.dev/robostack-staging/osx-arm64/ros-humble-ament-cmake-xmllint-0.12.12-np126py311h2a51a2c_13.conda + sha256: 59fdb0674619ab8b82b727f5e74824e015d213a44d34508ec05b14d7f45c617c + md5: b1b5dcfeca1091646f49ab2e05b6c6d6 + depends: + - python + - ros-humble-ament-cmake-test + - ros-humble-ament-xmllint + - ros-humble-ros-workspace + - ros2-distro-mutex 0.7.* humble_* + - __osx >=11.0 + - libcxx >=18 + - python_abi 3.11.* *_cp311 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + - numpy >=1.26.4,<2.0a0 + license: BSD-3-Clause + size: 23023 + timestamp: 1753309320039 +- conda: https://prefix.dev/robostack-staging/win-64/ros-humble-ament-cmake-xmllint-0.12.12-np126py311hd5de103_13.conda + sha256: 285756eb01be53bbc82659f3f055cbfaec9f148154f86c1d92acc0043b5cd727 + md5: e1d2813919cf7ed48c2a60588d87980b + depends: + - python + - ros-humble-ament-cmake-test + - ros-humble-ament-xmllint + - ros-humble-ros-workspace + - ros2-distro-mutex 0.7.* humble_* + - vc >=14.3,<15 + - vc14_runtime >=14.44.35208 + - ucrt >=10.0.20348.0 + - vc >=14.3,<15 + - vc14_runtime >=14.44.35208 + - ucrt >=10.0.20348.0 + - numpy >=1.26.4,<2.0a0 + - python_abi 3.11.* *_cp311 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + license: BSD-3-Clause + size: 19430 + timestamp: 1753314773735 +- conda: https://prefix.dev/robostack-staging/linux-64/ros-humble-ament-copyright-0.12.12-np126py311hbc2a38a_13.conda + sha256: 8660cb93aeeec8b41ec0825b01ae4af289b737da6d1534f2b914ebddac1616ac + md5: 4bb2fec24921c4e1e5293f3b1db75e92 + depends: + - importlib-metadata + - python + - ros-humble-ament-lint + - ros-humble-ros-workspace + - ros2-distro-mutex 0.7.* humble_* + - __glibc >=2.17,<3.0.a0 + - libstdcxx >=13 + - libgcc >=13 + - python_abi 3.11.* *_cp311 + - numpy >=1.26.4,<2.0a0 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + license: BSD-3-Clause + size: 65193 + timestamp: 1753308218556 +- conda: https://prefix.dev/robostack-staging/linux-aarch64/ros-humble-ament-copyright-0.12.12-np126py311hbdd918e_13.conda + sha256: 6122120e73758306502e98846ce5d83e53bd07dee695e860621ed24743be6bda + md5: 6d05979bbf306811505c7256b471e821 + depends: + - importlib-metadata + - python + - ros-humble-ament-lint + - ros-humble-ros-workspace + - ros2-distro-mutex 0.7.* humble_* + - libgcc >=13 + - libstdcxx >=13 + - libgcc >=13 + - numpy >=1.26.4,<2.0a0 + - python_abi 3.11.* *_cp311 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + license: BSD-3-Clause + size: 65049 + timestamp: 1753308338779 +- conda: https://prefix.dev/robostack-staging/osx-arm64/ros-humble-ament-copyright-0.12.12-np126py311h2a51a2c_13.conda + sha256: 39ee68ec66ccc65bd073a3f7a031f086167d63c13c077e7f1252fd4e2606bc9b + md5: 0e702b46968d6fb429dee7ca473f0fda + depends: + - importlib-metadata + - python + - ros-humble-ament-lint + - ros-humble-ros-workspace + - ros2-distro-mutex 0.7.* humble_* + - libcxx >=18 + - __osx >=11.0 + - python_abi 3.11.* *_cp311 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + - numpy >=1.26.4,<2.0a0 + license: BSD-3-Clause + size: 65288 + timestamp: 1753308527617 +- conda: https://prefix.dev/robostack-staging/win-64/ros-humble-ament-copyright-0.12.12-np126py311hd5de103_13.conda + sha256: a7381d1a77cba10fd6bdc93a258e8f3873397eb2f2f70cd29f8437fd9f455e60 + md5: 385f8592aff3635768b3326c23264f86 + depends: + - importlib-metadata + - python + - ros-humble-ament-lint + - ros-humble-ros-workspace + - ros2-distro-mutex 0.7.* humble_* + - vc >=14.3,<15 + - vc14_runtime >=14.44.35208 + - ucrt >=10.0.20348.0 + - vc >=14.3,<15 + - vc14_runtime >=14.44.35208 + - ucrt >=10.0.20348.0 + - python_abi 3.11.* *_cp311 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + - numpy >=1.26.4,<2.0a0 + license: BSD-3-Clause + size: 69168 + timestamp: 1753310561474 +- conda: https://prefix.dev/robostack-staging/linux-64/ros-humble-ament-cppcheck-0.12.12-np126py311hbc2a38a_13.conda + sha256: 219112314ad3f7c1cb0ba11bba769b1a517314140a8c0e379c7a3cf61f5f28ca + md5: 4efe0716db93359ef3107c0841499767 + depends: + - cppcheck + - python + - ros-humble-ros-workspace + - ros2-distro-mutex 0.7.* humble_* + - libgcc >=13 + - __glibc >=2.17,<3.0.a0 + - libstdcxx >=13 + - libgcc >=13 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + - numpy >=1.26.4,<2.0a0 + - python_abi 3.11.* *_cp311 + license: BSD-3-Clause + size: 27488 + timestamp: 1753307878162 +- conda: https://prefix.dev/robostack-staging/linux-aarch64/ros-humble-ament-cppcheck-0.12.12-np126py311hbdd918e_13.conda + sha256: 86413886580f23686e2d7eeb30a56b4660d94d1850a87bba4bcd0275dd6f7278 + md5: a130ef1dc5086ad8e0c41f55abeab586 + depends: + - cppcheck + - python + - ros-humble-ros-workspace + - ros2-distro-mutex 0.7.* humble_* + - libstdcxx >=13 + - libgcc >=13 + - python_abi 3.11.* *_cp311 + - numpy >=1.26.4,<2.0a0 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + license: BSD-3-Clause + size: 27360 + timestamp: 1753308054852 +- conda: https://prefix.dev/robostack-staging/osx-arm64/ros-humble-ament-cppcheck-0.12.12-np126py311h2a51a2c_13.conda + sha256: eba58f7196c8a0e8b39fd898200bd0d71d8b95ba65862b2689667d3849e48dae + md5: 77c45be05027f4a29bae90779320e6bc + depends: + - cppcheck + - python + - ros-humble-ros-workspace + - ros2-distro-mutex 0.7.* humble_* + - __osx >=11.0 + - libcxx >=18 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + - python_abi 3.11.* *_cp311 + - numpy >=1.26.4,<2.0a0 + license: BSD-3-Clause + size: 27596 + timestamp: 1753307958388 +- conda: https://prefix.dev/robostack-staging/win-64/ros-humble-ament-cppcheck-0.12.12-np126py311hd5de103_13.conda + sha256: eadb0f47e0c07cc361f095886d76125dd50a4a9b56e4aded58a7319bdfc1ed84 + md5: c25a54a2646ed6068c66a3ee25992d16 + depends: + - cppcheck + - python + - ros-humble-ros-workspace + - ros2-distro-mutex 0.7.* humble_* + - vc >=14.3,<15 + - vc14_runtime >=14.44.35208 + - ucrt >=10.0.20348.0 + - vc >=14.3,<15 + - vc14_runtime >=14.44.35208 + - ucrt >=10.0.20348.0 + - python_abi 3.11.* *_cp311 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + - numpy >=1.26.4,<2.0a0 + license: BSD-3-Clause + size: 32424 + timestamp: 1753308315044 +- conda: https://prefix.dev/robostack-staging/linux-64/ros-humble-ament-cpplint-0.12.12-np126py311hbc2a38a_13.conda + sha256: 5eb5059f0950749179ad4e622569986a8d54128a0f951cbf3cb8f13433dbf67c + md5: 11dfc18a89ee221f1a848f5c9acf3bb7 + depends: + - python + - ros-humble-ros-workspace + - ros2-distro-mutex 0.7.* humble_* + - __glibc >=2.17,<3.0.a0 + - libstdcxx >=13 + - libgcc >=13 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + - numpy >=1.26.4,<2.0a0 + - python_abi 3.11.* *_cp311 + license: BSD-3-Clause + size: 175320 + timestamp: 1753308362286 +- conda: https://prefix.dev/robostack-staging/linux-aarch64/ros-humble-ament-cpplint-0.12.12-np126py311hbdd918e_13.conda + sha256: 294b6b1e71b32565a18751b9888cc2c7517ecf5951c81485ed2f61d1b76d263f + md5: 8b1f8363dff52d8d0ca9ff6e92be8972 + depends: + - python + - ros-humble-ros-workspace + - ros2-distro-mutex 0.7.* humble_* + - libstdcxx >=13 + - libgcc >=13 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + - python_abi 3.11.* *_cp311 + - numpy >=1.26.4,<2.0a0 + license: BSD-3-Clause + size: 175165 + timestamp: 1753308468740 +- conda: https://prefix.dev/robostack-staging/osx-arm64/ros-humble-ament-cpplint-0.12.12-np126py311h2a51a2c_13.conda + sha256: 89fec94b64db5d625228dded252190e1a86af600e5ccfa526905a682e4d98e99 + md5: c781323ff8bbb651a14a242aa0f0bbb0 + depends: + - python + - ros-humble-ros-workspace + - ros2-distro-mutex 0.7.* humble_* + - libcxx >=18 + - __osx >=11.0 + - python_abi 3.11.* *_cp311 + - numpy >=1.26.4,<2.0a0 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + license: BSD-3-Clause + size: 175427 + timestamp: 1753308668956 +- conda: https://prefix.dev/robostack-staging/win-64/ros-humble-ament-cpplint-0.12.12-np126py311hd5de103_13.conda + sha256: 1acdab7e1b1a147fe8db38027d11804b76cd2609c62d179aa973f8ad8f1cfb12 + md5: 2ed8481949dba4534f1cc6f5213d72af + depends: + - python + - ros-humble-ros-workspace + - ros2-distro-mutex 0.7.* humble_* + - vc >=14.3,<15 + - vc14_runtime >=14.44.35208 + - ucrt >=10.0.20348.0 + - vc >=14.3,<15 + - vc14_runtime >=14.44.35208 + - ucrt >=10.0.20348.0 + - numpy >=1.26.4,<2.0a0 + - python_abi 3.11.* *_cp311 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + license: BSD-3-Clause + size: 184416 + timestamp: 1753312011901 +- conda: https://prefix.dev/robostack-staging/linux-64/ros-humble-ament-flake8-0.12.12-np126py311hbc2a38a_13.conda + sha256: 78666c187911321ea005b0bb0a004f6effd2805ee7fa0eb3e1e8c3b15e1f6ec7 + md5: b0f960cdf8dec45a0498ed706de9f179 + depends: + - flake8 + - python + - ros-humble-ament-lint + - ros-humble-ros-workspace + - ros2-distro-mutex 0.7.* humble_* + - libstdcxx >=13 + - libgcc >=13 + - __glibc >=2.17,<3.0.a0 + - numpy >=1.26.4,<2.0a0 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + - python_abi 3.11.* *_cp311 + license: BSD-3-Clause + size: 28634 + timestamp: 1753307990655 +- conda: https://prefix.dev/robostack-staging/linux-aarch64/ros-humble-ament-flake8-0.12.12-np126py311hbdd918e_13.conda + sha256: 489b31a9cfba073c0c13fc87a167453fc813db20d33e1cc7e731728eba79ecf0 + md5: f1d67ff2642e0521e2cda619927aa7ca + depends: + - flake8 + - python + - ros-humble-ament-lint + - ros-humble-ros-workspace + - ros2-distro-mutex 0.7.* humble_* + - libgcc >=13 + - libstdcxx >=13 + - libgcc >=13 + - numpy >=1.26.4,<2.0a0 + - python_abi 3.11.* *_cp311 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + license: BSD-3-Clause + size: 28498 + timestamp: 1753308132714 +- conda: https://prefix.dev/robostack-staging/osx-arm64/ros-humble-ament-flake8-0.12.12-np126py311h2a51a2c_13.conda + sha256: 737b6355611a175587e67b479db77c6d850e2a9f0590864e4dc459823e8f142b + md5: 817cc0888e8c7b9202b665b1c828bac0 + depends: + - flake8 + - python + - ros-humble-ament-lint + - ros-humble-ros-workspace + - ros2-distro-mutex 0.7.* humble_* + - libcxx >=18 + - __osx >=11.0 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + - numpy >=1.26.4,<2.0a0 + - python_abi 3.11.* *_cp311 + license: BSD-3-Clause + size: 28747 + timestamp: 1753308207600 +- conda: https://prefix.dev/robostack-staging/win-64/ros-humble-ament-flake8-0.12.12-np126py311hd5de103_13.conda + sha256: 05711ff124e0ed4ec9c5b6283d321be832169b5e3246ee5c3ae5443c4080dddc + md5: 5d04db211089476bb38d81f92cb5c0df + depends: + - flake8 + - python + - ros-humble-ament-lint + - ros-humble-ros-workspace + - ros2-distro-mutex 0.7.* humble_* + - vc >=14.3,<15 + - vc14_runtime >=14.44.35208 + - ucrt >=10.0.20348.0 + - vc >=14.3,<15 + - vc14_runtime >=14.44.35208 + - ucrt >=10.0.20348.0 + - numpy >=1.26.4,<2.0a0 + - python_abi 3.11.* *_cp311 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + license: BSD-3-Clause + size: 33521 + timestamp: 1753309143958 +- conda: https://prefix.dev/robostack-staging/linux-64/ros-humble-ament-index-cpp-1.4.0-np126py311hbc2a38a_13.conda + sha256: c0a5374508d1dc56228f22051f3865144bf08aaddd3d13835c0168e25cfd8df6 + md5: b36a77e2162d025a1ab5e3ba9ae66845 + depends: + - python + - ros-humble-ros-workspace + - ros2-distro-mutex 0.7.* humble_* + - libstdcxx >=13 + - libgcc >=13 + - __glibc >=2.17,<3.0.a0 + - libgcc >=13 + - numpy >=1.26.4,<2.0a0 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + - python_abi 3.11.* *_cp311 + license: BSD-3-Clause + size: 45335 + timestamp: 1753309795989 +- conda: https://prefix.dev/robostack-staging/linux-aarch64/ros-humble-ament-index-cpp-1.4.0-np126py311hbdd918e_13.conda + sha256: 0fd8a3107b13f85df8aab01e7a4f3a00a49c8cda1f72a6e9a6f29c6b3040a6d9 + md5: 16da241942ee781f4425f41bd0fe0c85 + depends: + - python + - ros-humble-ros-workspace + - ros2-distro-mutex 0.7.* humble_* + - libgcc >=13 + - libstdcxx >=13 + - libgcc >=13 + - numpy >=1.26.4,<2.0a0 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + - python_abi 3.11.* *_cp311 + license: BSD-3-Clause + size: 45033 + timestamp: 1753309579694 +- conda: https://prefix.dev/robostack-staging/osx-arm64/ros-humble-ament-index-cpp-1.4.0-np126py311h2a51a2c_13.conda + sha256: 005adf55307cc8be825ace7a76d252393ad3399d5e7c009a23d3cc6928819e26 + md5: bac00a03565f93cf4b831d15a019767b + depends: + - python + - ros-humble-ros-workspace + - ros2-distro-mutex 0.7.* humble_* + - libcxx >=18 + - __osx >=11.0 + - python_abi 3.11.* *_cp311 + - numpy >=1.26.4,<2.0a0 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + license: BSD-3-Clause + size: 46051 + timestamp: 1753310268755 +- conda: https://prefix.dev/robostack-staging/win-64/ros-humble-ament-index-cpp-1.4.0-np126py311hd5de103_13.conda + sha256: 804012704f13c2ddd922f21def8215cd5f9880b4c277fdbeddf24ee387b0d869 + md5: 2dcb2bafe9826789b1fc99c17e0b06ba + depends: + - python + - ros-humble-ros-workspace + - ros2-distro-mutex 0.7.* humble_* + - vc >=14.3,<15 + - vc14_runtime >=14.44.35208 + - ucrt >=10.0.20348.0 + - vc >=14.3,<15 + - vc14_runtime >=14.44.35208 + - ucrt >=10.0.20348.0 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + - python_abi 3.11.* *_cp311 + - numpy >=1.26.4,<2.0a0 + license: BSD-3-Clause + size: 49423 + timestamp: 1753318509344 +- conda: https://prefix.dev/robostack-staging/linux-64/ros-humble-ament-index-python-1.4.0-np126py311hbc2a38a_13.conda + sha256: 7da6e6f9b1760ac32ef1cda1be24bbe5bd5d8612c9e65bd928c9041b8eba7b7c + md5: 16f29046f8e8bf37b93a61141270ee81 + depends: + - python + - ros-humble-ros-workspace + - ros2-distro-mutex 0.7.* humble_* + - __glibc >=2.17,<3.0.a0 + - libstdcxx >=13 + - libgcc >=13 + - python_abi 3.11.* *_cp311 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + - numpy >=1.26.4,<2.0a0 + license: BSD-3-Clause + size: 28584 + timestamp: 1753308368527 +- conda: https://prefix.dev/robostack-staging/linux-aarch64/ros-humble-ament-index-python-1.4.0-np126py311hbdd918e_13.conda + sha256: 50199c2bd094d22ddda3f88e8d647a37d58658e262179ee3eb30772c9d69dfc9 + md5: 5d18b824d5d2bdfc3334aef385f84623 + depends: + - python + - ros-humble-ros-workspace + - ros2-distro-mutex 0.7.* humble_* + - libgcc >=13 + - libstdcxx >=13 + - libgcc >=13 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + - numpy >=1.26.4,<2.0a0 + - python_abi 3.11.* *_cp311 + license: BSD-3-Clause + size: 28414 + timestamp: 1753308473822 +- conda: https://prefix.dev/robostack-staging/osx-arm64/ros-humble-ament-index-python-1.4.0-np126py311h2a51a2c_13.conda + sha256: ff37c9cfb87f16661d66328e5eca73571e3d00ba7a1c04e1a31b5cb68565534b + md5: 6d65858035e7bd4ee2ccd9d224d6b4e5 + depends: + - python + - ros-humble-ros-workspace + - ros2-distro-mutex 0.7.* humble_* + - __osx >=11.0 + - libcxx >=18 + - python_abi 3.11.* *_cp311 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + - numpy >=1.26.4,<2.0a0 + license: BSD-3-Clause + size: 28637 + timestamp: 1753308675116 +- conda: https://prefix.dev/robostack-staging/win-64/ros-humble-ament-index-python-1.4.0-np126py311hd5de103_13.conda + sha256: f7cea2e7a7c6a06ad5b3bf9fefd169491536543a22a1de1319633255ff7f8140 + md5: 854584aab7814f7fd0747a8f0ffd84ec + depends: + - python + - ros-humble-ros-workspace + - ros2-distro-mutex 0.7.* humble_* + - vc >=14.3,<15 + - vc14_runtime >=14.44.35208 + - ucrt >=10.0.20348.0 + - vc >=14.3,<15 + - vc14_runtime >=14.44.35208 + - ucrt >=10.0.20348.0 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + - python_abi 3.11.* *_cp311 + - numpy >=1.26.4,<2.0a0 + license: BSD-3-Clause + size: 33261 + timestamp: 1753312076219 +- conda: https://prefix.dev/robostack-staging/linux-64/ros-humble-ament-lint-0.12.12-np126py311hbc2a38a_13.conda + sha256: 02b7b6ab9b46ce9a80b7d880fcc2ea027a7742fea29cb09de4d3c2a28cbc6e60 + md5: 339a6b5fcf391d523538bb4fe8e42bb8 + depends: + - python + - ros-humble-ros-workspace + - ros2-distro-mutex 0.7.* humble_* + - libstdcxx >=13 + - libgcc >=13 + - __glibc >=2.17,<3.0.a0 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + - python_abi 3.11.* *_cp311 + - numpy >=1.26.4,<2.0a0 + license: BSD-3-Clause + size: 16646 + timestamp: 1753307865248 +- conda: https://prefix.dev/robostack-staging/linux-aarch64/ros-humble-ament-lint-0.12.12-np126py311hbdd918e_13.conda + sha256: 4f54199d7ab279560ae4c3b4f0a28196ea8851628d977d9aedfce19ae3a22a56 + md5: c79ea6916bad1be9bc0a96c6fe5fa1e2 + depends: + - python + - ros-humble-ros-workspace + - ros2-distro-mutex 0.7.* humble_* + - libgcc >=13 + - libstdcxx >=13 + - libgcc >=13 + - python_abi 3.11.* *_cp311 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + - numpy >=1.26.4,<2.0a0 + license: BSD-3-Clause + size: 16523 + timestamp: 1753308040280 +- conda: https://prefix.dev/robostack-staging/osx-arm64/ros-humble-ament-lint-0.12.12-np126py311h2a51a2c_13.conda + sha256: a83a9c5124341f1e9a21e34722b41ea4b048a8843765817b1e935493f6f53150 + md5: 7c27c2aab039ea9c2728bcd3bf7c1381 + depends: + - python + - ros-humble-ros-workspace + - ros2-distro-mutex 0.7.* humble_* + - __osx >=11.0 + - libcxx >=18 + - numpy >=1.26.4,<2.0a0 + - python_abi 3.11.* *_cp311 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + license: BSD-3-Clause + size: 16781 + timestamp: 1753307951799 +- conda: https://prefix.dev/robostack-staging/win-64/ros-humble-ament-lint-0.12.12-np126py311hd5de103_13.conda + sha256: c221ec435bf59ff269e7bc5255f72abc6ffe6ba80165ccd466261764e3c0d366 + md5: e9603ab23cddbdef24ec20534faca674 + depends: + - python + - ros-humble-ros-workspace + - ros2-distro-mutex 0.7.* humble_* + - vc >=14.3,<15 + - vc14_runtime >=14.44.35208 + - ucrt >=10.0.20348.0 + - vc >=14.3,<15 + - vc14_runtime >=14.44.35208 + - ucrt >=10.0.20348.0 + - python_abi 3.11.* *_cp311 + - numpy >=1.26.4,<2.0a0 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + license: BSD-3-Clause + size: 13517 + timestamp: 1753308314751 +- conda: https://prefix.dev/robostack-staging/linux-64/ros-humble-ament-lint-auto-0.12.12-np126py311hbc2a38a_13.conda + sha256: 19304dfcfddb0689a86f20b94ca2bc46b87b646ae905690c6f183b9cd3ea63ee + md5: fb1ef7651124bd25da960cb1d105e565 + depends: + - python + - ros-humble-ament-cmake-core + - ros-humble-ament-cmake-test + - ros-humble-ros-workspace + - ros2-distro-mutex 0.7.* humble_* + - __glibc >=2.17,<3.0.a0 + - libstdcxx >=13 + - libgcc >=13 + - numpy >=1.26.4,<2.0a0 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + - python_abi 3.11.* *_cp311 + license: BSD-3-Clause + size: 21846 + timestamp: 1753308124741 +- conda: https://prefix.dev/robostack-staging/linux-aarch64/ros-humble-ament-lint-auto-0.12.12-np126py311hbdd918e_13.conda + sha256: 9a41d9e854414312350b18bc513534ab99ec432cd712aa6feacae6d6abcbf183 + md5: c542cf46320bf6be7cad2d0c0b5b86bd + depends: + - python + - ros-humble-ament-cmake-core + - ros-humble-ament-cmake-test + - ros-humble-ros-workspace + - ros2-distro-mutex 0.7.* humble_* + - libstdcxx >=13 + - libgcc >=13 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + - python_abi 3.11.* *_cp311 + - numpy >=1.26.4,<2.0a0 + license: BSD-3-Clause + size: 21687 + timestamp: 1753308253788 +- conda: https://prefix.dev/robostack-staging/osx-arm64/ros-humble-ament-lint-auto-0.12.12-np126py311h2a51a2c_13.conda + sha256: e3d7cb7cdd3012be2c4408fe0bb3e4ed3a2d06a5ab651fcdc9d6b5945133be6d + md5: f627742c08482c8026340eeb9e457422 + depends: + - python + - ros-humble-ament-cmake-core + - ros-humble-ament-cmake-test + - ros-humble-ros-workspace + - ros2-distro-mutex 0.7.* humble_* + - __osx >=11.0 + - libcxx >=18 + - python_abi 3.11.* *_cp311 + - numpy >=1.26.4,<2.0a0 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + license: BSD-3-Clause + size: 22134 + timestamp: 1753308392079 +- conda: https://prefix.dev/robostack-staging/win-64/ros-humble-ament-lint-auto-0.12.12-np126py311hd5de103_13.conda + sha256: a26d57551ae04feeefabfd9fa3cfe841b7cf205ce21d49e1812297e0f6c4af9a + md5: 10f66c325998e8a98e98e1f0aaf79bfd + depends: + - python + - ros-humble-ament-cmake-core + - ros-humble-ament-cmake-test + - ros-humble-ros-workspace + - ros2-distro-mutex 0.7.* humble_* + - vc >=14.3,<15 + - vc14_runtime >=14.44.35208 + - ucrt >=10.0.20348.0 + - vc >=14.3,<15 + - vc14_runtime >=14.44.35208 + - ucrt >=10.0.20348.0 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + - python_abi 3.11.* *_cp311 + - numpy >=1.26.4,<2.0a0 + license: BSD-3-Clause + size: 18609 + timestamp: 1753309977038 +- conda: https://prefix.dev/robostack-staging/linux-64/ros-humble-ament-lint-cmake-0.12.12-np126py311hbc2a38a_13.conda + sha256: 106b9922ae8cc515a86098a43d0925fed4c10232d6026724aeed411b23dcd644 + md5: 7267445818583b0dc5274c3ad2cdfebe + depends: + - python + - ros-humble-ros-workspace + - ros2-distro-mutex 0.7.* humble_* + - libstdcxx >=13 + - libgcc >=13 + - __glibc >=2.17,<3.0.a0 + - libgcc >=13 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + - python_abi 3.11.* *_cp311 + - numpy >=1.26.4,<2.0a0 + license: BSD-3-Clause + size: 40111 + timestamp: 1753308333368 +- conda: https://prefix.dev/robostack-staging/linux-aarch64/ros-humble-ament-lint-cmake-0.12.12-np126py311hbdd918e_13.conda + sha256: 9c4173a74ad517bb930276b4d5bf43b6cf6f7357cc2ac08465e35df6877d2d82 + md5: df143d2fcf4d06d2e0472fb6912703a1 + depends: + - python + - ros-humble-ros-workspace + - ros2-distro-mutex 0.7.* humble_* + - libstdcxx >=13 + - libgcc >=13 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + - numpy >=1.26.4,<2.0a0 + - python_abi 3.11.* *_cp311 + license: BSD-3-Clause + size: 39982 + timestamp: 1753308437836 +- conda: https://prefix.dev/robostack-staging/osx-arm64/ros-humble-ament-lint-cmake-0.12.12-np126py311h2a51a2c_13.conda + sha256: 9036b29b39f51df6b468aa6b7cf1b70d9e8eec19b0309073fa9c2d60516cde7c + md5: e98a1c90303dace0b70e00773a3a732f + depends: + - python + - ros-humble-ros-workspace + - ros2-distro-mutex 0.7.* humble_* + - __osx >=11.0 + - libcxx >=18 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + - numpy >=1.26.4,<2.0a0 + - python_abi 3.11.* *_cp311 + license: BSD-3-Clause + size: 40172 + timestamp: 1753308638031 +- conda: https://prefix.dev/robostack-staging/win-64/ros-humble-ament-lint-cmake-0.12.12-np126py311hd5de103_13.conda + sha256: 50be8ff4a05fe6aedb494c4f5adf5926294740bc665fd4a1a21987f563ada50e + md5: 024e0f1fe2c300a4949ab56d29ce0bd7 + depends: + - python + - ros-humble-ros-workspace + - ros2-distro-mutex 0.7.* humble_* + - vc >=14.3,<15 + - vc14_runtime >=14.44.35208 + - ucrt >=10.0.20348.0 + - vc >=14.3,<15 + - vc14_runtime >=14.44.35208 + - ucrt >=10.0.20348.0 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + - python_abi 3.11.* *_cp311 + - numpy >=1.26.4,<2.0a0 + license: BSD-3-Clause + size: 45189 + timestamp: 1753311779184 +- conda: https://prefix.dev/robostack-staging/linux-64/ros-humble-ament-lint-common-0.12.12-np126py311hbc2a38a_13.conda + sha256: 6854cd1742c54c2776d04ab351df692a10c18f3a7dbd3d2aaa0c3f820818c418 + md5: 726fd272a72a9c2d707d546f4b3f051f + depends: + - python + - ros-humble-ament-cmake-copyright + - ros-humble-ament-cmake-core + - ros-humble-ament-cmake-cppcheck + - ros-humble-ament-cmake-cpplint + - ros-humble-ament-cmake-flake8 + - ros-humble-ament-cmake-lint-cmake + - ros-humble-ament-cmake-pep257 + - ros-humble-ament-cmake-uncrustify + - ros-humble-ament-cmake-xmllint + - ros-humble-ros-workspace + - ros2-distro-mutex 0.7.* humble_* + - libgcc >=13 + - libstdcxx >=13 + - libgcc >=13 + - __glibc >=2.17,<3.0.a0 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + - python_abi 3.11.* *_cp311 + - numpy >=1.26.4,<2.0a0 + license: BSD-3-Clause + size: 22148 + timestamp: 1753309087780 +- conda: https://prefix.dev/robostack-staging/linux-aarch64/ros-humble-ament-lint-common-0.12.12-np126py311hbdd918e_13.conda + sha256: 9d84d1ea3a9453cd59af5207ad50cd7e43bf07b0a430533bee94d4c89e858e83 + md5: 867d2014049e2c9efb933c64314f0c13 + depends: + - python + - ros-humble-ament-cmake-copyright + - ros-humble-ament-cmake-core + - ros-humble-ament-cmake-cppcheck + - ros-humble-ament-cmake-cpplint + - ros-humble-ament-cmake-flake8 + - ros-humble-ament-cmake-lint-cmake + - ros-humble-ament-cmake-pep257 + - ros-humble-ament-cmake-uncrustify + - ros-humble-ament-cmake-xmllint + - ros-humble-ros-workspace + - ros2-distro-mutex 0.7.* humble_* + - libgcc >=13 + - libstdcxx >=13 + - libgcc >=13 + - python_abi 3.11.* *_cp311 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + - numpy >=1.26.4,<2.0a0 + license: BSD-3-Clause + size: 22006 + timestamp: 1753309066970 +- conda: https://prefix.dev/robostack-staging/osx-arm64/ros-humble-ament-lint-common-0.12.12-np126py311h2a51a2c_13.conda + sha256: fe5675fc43f106bc7590fb4cf5f000a471ed4dd00c70735417d4ebafea2b777f + md5: b75c43255ad4220cb05278a25bbf0071 + depends: + - python + - ros-humble-ament-cmake-copyright + - ros-humble-ament-cmake-core + - ros-humble-ament-cmake-cppcheck + - ros-humble-ament-cmake-cpplint + - ros-humble-ament-cmake-flake8 + - ros-humble-ament-cmake-lint-cmake + - ros-humble-ament-cmake-pep257 + - ros-humble-ament-cmake-uncrustify + - ros-humble-ament-cmake-xmllint + - ros-humble-ros-workspace + - ros2-distro-mutex 0.7.* humble_* + - __osx >=11.0 + - libcxx >=18 + - numpy >=1.26.4,<2.0a0 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + - python_abi 3.11.* *_cp311 + license: BSD-3-Clause + size: 22432 + timestamp: 1753309689921 +- conda: https://prefix.dev/robostack-staging/win-64/ros-humble-ament-lint-common-0.12.12-np126py311hd5de103_13.conda + sha256: 4353b410dc55292d800b0c08e6c3325e5c4e2f328374bcbd93d4e338d731e702 + md5: 95729a84d99f1093e9b4eae3fa645087 + depends: + - python + - ros-humble-ament-cmake-copyright + - ros-humble-ament-cmake-core + - ros-humble-ament-cmake-cppcheck + - ros-humble-ament-cmake-cpplint + - ros-humble-ament-cmake-flake8 + - ros-humble-ament-cmake-lint-cmake + - ros-humble-ament-cmake-pep257 + - ros-humble-ament-cmake-uncrustify + - ros-humble-ament-cmake-xmllint + - ros-humble-ros-workspace + - ros2-distro-mutex 0.7.* humble_* + - vc >=14.3,<15 + - vc14_runtime >=14.44.35208 + - ucrt >=10.0.20348.0 + - vc >=14.3,<15 + - vc14_runtime >=14.44.35208 + - ucrt >=10.0.20348.0 + - numpy >=1.26.4,<2.0a0 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + - python_abi 3.11.* *_cp311 + license: BSD-3-Clause + size: 18950 + timestamp: 1753315588230 +- conda: https://prefix.dev/robostack-staging/linux-64/ros-humble-ament-package-0.14.1-np126py311hbc2a38a_13.conda + sha256: e1c9e124e5a82fbf65d88855f8d1f15c9d0de480863d61a67bcb0b442dc2ad66 + md5: bd4682d4a375f354d691d65e79cb2995 + depends: + - importlib-metadata + - importlib_resources + - python + - ros2-distro-mutex 0.7.* humble_* + - setuptools + - libgcc >=13 + - __glibc >=2.17,<3.0.a0 + - libstdcxx >=13 + - libgcc >=13 + - numpy >=1.26.4,<2.0a0 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + - python_abi 3.11.* *_cp311 + license: BSD-3-Clause + size: 47535 + timestamp: 1753307768122 +- conda: https://prefix.dev/robostack-staging/linux-aarch64/ros-humble-ament-package-0.14.1-np126py311hbdd918e_13.conda + sha256: f7d3699db7a0b8c11031cdf410b1ed1e8e1860ee3f1a8c832438a4a0d9479bca + md5: 41de3f96a3620038b7f923e59d048a68 + depends: + - importlib-metadata + - importlib_resources + - python + - ros2-distro-mutex 0.7.* humble_* + - setuptools + - libstdcxx >=13 + - libgcc >=13 + - python_abi 3.11.* *_cp311 + - numpy >=1.26.4,<2.0a0 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + license: BSD-3-Clause + size: 47373 + timestamp: 1753307949222 +- conda: https://prefix.dev/robostack-staging/osx-arm64/ros-humble-ament-package-0.14.1-np126py311h2a51a2c_13.conda + sha256: f9851a6757e3fdb6ea7b39215e3d4b73b9083b3077a00610f80086e1e22dc0e5 + md5: dac6839fa31f81d042e74bd038a64ecc + depends: + - importlib-metadata + - importlib_resources + - python + - ros2-distro-mutex 0.7.* humble_* + - setuptools + - libcxx >=18 + - __osx >=11.0 + - numpy >=1.26.4,<2.0a0 + - python_abi 3.11.* *_cp311 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + license: BSD-3-Clause + size: 47709 + timestamp: 1753307859094 +- conda: https://prefix.dev/robostack-staging/win-64/ros-humble-ament-package-0.14.1-np126py311hd5de103_13.conda + sha256: 460329eaff66a308a34834591ce276291f9c13ab33bfb992fb06080bfee2f0bf + md5: f809718cbc0f2420465609c12317257e + depends: + - importlib-metadata + - importlib_resources + - python + - ros2-distro-mutex 0.7.* humble_* + - setuptools + - vc >=14.3,<15 + - vc14_runtime >=14.44.35208 + - ucrt >=10.0.20348.0 + - vc >=14.3,<15 + - vc14_runtime >=14.44.35208 + - ucrt >=10.0.20348.0 + - python_abi 3.11.* *_cp311 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + - numpy >=1.26.4,<2.0a0 + license: BSD-3-Clause + size: 39545 + timestamp: 1753307972060 +- conda: https://prefix.dev/robostack-staging/linux-64/ros-humble-ament-pep257-0.12.12-np126py311hbc2a38a_13.conda + sha256: b59ebd2425a6024d49cea5c96b1d4e83fefd76fb78eb33d719b2b0cde84d0154 + md5: 84e2ffe2633d0191584108db4ba59570 + depends: + - pydocstyle + - python + - ros-humble-ament-lint + - ros-humble-ros-workspace + - ros2-distro-mutex 0.7.* humble_* + - libstdcxx >=13 + - libgcc >=13 + - __glibc >=2.17,<3.0.a0 + - libgcc >=13 + - numpy >=1.26.4,<2.0a0 + - python_abi 3.11.* *_cp311 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + license: BSD-3-Clause + size: 26520 + timestamp: 1753308104395 +- conda: https://prefix.dev/robostack-staging/linux-aarch64/ros-humble-ament-pep257-0.12.12-np126py311hbdd918e_13.conda + sha256: 1ab9901bde1de663fbd6ae2c57b5b0b71b899083cd29ea36771e7c64b60404e0 + md5: 44b02544cb3a6a88909541cee6868a18 + depends: + - pydocstyle + - python + - ros-humble-ament-lint + - ros-humble-ros-workspace + - ros2-distro-mutex 0.7.* humble_* + - libstdcxx >=13 + - libgcc >=13 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + - python_abi 3.11.* *_cp311 + - numpy >=1.26.4,<2.0a0 + license: BSD-3-Clause + size: 26376 + timestamp: 1753308229299 +- conda: https://prefix.dev/robostack-staging/osx-arm64/ros-humble-ament-pep257-0.12.12-np126py311h2a51a2c_13.conda + sha256: ed6beab5060ab897bf688c5f3ae32c8a5d62f6a55a96b23bc9711a6e4d9cf8d7 + md5: a1f398dfc84438a6c389d2aad61abc4c + depends: + - pydocstyle + - python + - ros-humble-ament-lint + - ros-humble-ros-workspace + - ros2-distro-mutex 0.7.* humble_* + - __osx >=11.0 + - libcxx >=18 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + - python_abi 3.11.* *_cp311 + - numpy >=1.26.4,<2.0a0 + license: BSD-3-Clause + size: 26595 + timestamp: 1753308363452 +- conda: https://prefix.dev/robostack-staging/win-64/ros-humble-ament-pep257-0.12.12-np126py311hd5de103_13.conda + sha256: a9a54e4922b8ed092d286507387c728d2111b836ae09765eda11f9f64cb6f9e4 + md5: 7d2cc216618c11decf4ef0f6ee4be6a3 + depends: + - pydocstyle + - python + - ros-humble-ament-lint + - ros-humble-ros-workspace + - ros2-distro-mutex 0.7.* humble_* + - vc >=14.3,<15 + - vc14_runtime >=14.44.35208 + - ucrt >=10.0.20348.0 + - vc >=14.3,<15 + - vc14_runtime >=14.44.35208 + - ucrt >=10.0.20348.0 + - numpy >=1.26.4,<2.0a0 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + - python_abi 3.11.* *_cp311 + license: BSD-3-Clause + size: 31435 + timestamp: 1753309864575 +- conda: https://prefix.dev/robostack-staging/linux-64/ros-humble-ament-uncrustify-0.12.12-np126py311hbc2a38a_13.conda + sha256: 9f66239d3712d56cb7d00dfd31fbfd0d06e078ef6e92cc91b9f2f420f39b8fe2 + md5: 2b230e255ebec20d27e408ba42e39098 + depends: + - python + - ros-humble-ros-workspace + - ros-humble-uncrustify-vendor + - ros2-distro-mutex 0.7.* humble_* + - libgcc >=13 + - __glibc >=2.17,<3.0.a0 + - libstdcxx >=13 + - libgcc >=13 + - numpy >=1.26.4,<2.0a0 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + - python_abi 3.11.* *_cp311 + license: BSD-3-Clause + size: 49448 + timestamp: 1753308898131 +- conda: https://prefix.dev/robostack-staging/linux-aarch64/ros-humble-ament-uncrustify-0.12.12-np126py311hbdd918e_13.conda + sha256: fa395ccafd77d2cc13ea8539239368d3e81df2c1680239023160f670b3301480 + md5: 081901b348fcd6e0b247a3ab61fbd1dc + depends: + - python + - ros-humble-ros-workspace + - ros-humble-uncrustify-vendor + - ros2-distro-mutex 0.7.* humble_* + - libgcc >=13 + - libstdcxx >=13 + - libgcc >=13 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + - numpy >=1.26.4,<2.0a0 + - python_abi 3.11.* *_cp311 + license: BSD-3-Clause + size: 49299 + timestamp: 1753308879519 +- conda: https://prefix.dev/robostack-staging/osx-arm64/ros-humble-ament-uncrustify-0.12.12-np126py311h2a51a2c_13.conda + sha256: cb13769a912792f367d2e77aafc9eba4bda8aa175526688a7500e2cf81432c16 + md5: 38aaa6affb8ce616ffcb3830d81780c4 + depends: + - python + - ros-humble-ros-workspace + - ros-humble-uncrustify-vendor + - ros2-distro-mutex 0.7.* humble_* + - __osx >=11.0 + - libcxx >=18 + - python_abi 3.11.* *_cp311 + - numpy >=1.26.4,<2.0a0 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + license: BSD-3-Clause + size: 49541 + timestamp: 1753309183349 +- conda: https://prefix.dev/robostack-staging/win-64/ros-humble-ament-uncrustify-0.12.12-np126py311hd5de103_13.conda + sha256: 0e32cb6235d0ccf766765324bc8979d8fe92662f007a9ba2ab00d5352c6b1efc + md5: 981fca20e38c1002a2a0181a3d9bb8a8 + depends: + - python + - ros-humble-ros-workspace + - ros-humble-uncrustify-vendor + - ros2-distro-mutex 0.7.* humble_* + - vc >=14.3,<15 + - vc14_runtime >=14.44.35208 + - ucrt >=10.0.20348.0 + - vc >=14.3,<15 + - vc14_runtime >=14.44.35208 + - ucrt >=10.0.20348.0 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + - numpy >=1.26.4,<2.0a0 + - python_abi 3.11.* *_cp311 + license: BSD-3-Clause + size: 54597 + timestamp: 1753313980127 +- conda: https://prefix.dev/robostack-staging/linux-64/ros-humble-ament-xmllint-0.12.12-np126py311hbc2a38a_13.conda + sha256: c89105c530bc0ecda3f2905d7d90f23153ffa864222e2b991901c71bb6ca6bd8 + md5: ebdb5eb97579c277203dcb101e4e2616 + depends: + - libxml2 + - python + - ros-humble-ament-lint + - ros-humble-ros-workspace + - ros2-distro-mutex 0.7.* humble_* + - libstdcxx >=13 + - libgcc >=13 + - __glibc >=2.17,<3.0.a0 + - libgcc >=13 + - numpy >=1.26.4,<2.0a0 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + - python_abi 3.11.* *_cp311 + license: BSD-3-Clause + size: 27827 + timestamp: 1753308356209 +- conda: https://prefix.dev/robostack-staging/linux-aarch64/ros-humble-ament-xmllint-0.12.12-np126py311hbdd918e_13.conda + sha256: 8ce5710e55f714262f4d66f522f7a8c1449640816a9c43059f566017a0200e70 + md5: f7c95c0605e4ffe333646d3b49cd5750 + depends: + - libxml2 + - python + - ros-humble-ament-lint + - ros-humble-ros-workspace + - ros2-distro-mutex 0.7.* humble_* + - libgcc >=13 + - libstdcxx >=13 + - libgcc >=13 + - python_abi 3.11.* *_cp311 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + - numpy >=1.26.4,<2.0a0 + license: BSD-3-Clause + size: 27692 + timestamp: 1753308463210 +- conda: https://prefix.dev/robostack-staging/osx-arm64/ros-humble-ament-xmllint-0.12.12-np126py311h2a51a2c_13.conda + sha256: 649b8e67fed16321b08a4f7408944dee7e75b10b7d65fdbbaca66bde485fdead + md5: 1a99495767d63033516ef861c5f4604c + depends: + - libxml2 + - python + - ros-humble-ament-lint + - ros-humble-ros-workspace + - ros2-distro-mutex 0.7.* humble_* + - libcxx >=18 + - __osx >=11.0 + - python_abi 3.11.* *_cp311 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + - numpy >=1.26.4,<2.0a0 + license: BSD-3-Clause + size: 27902 + timestamp: 1753308662211 +- conda: https://prefix.dev/robostack-staging/win-64/ros-humble-ament-xmllint-0.12.12-np126py311hd5de103_13.conda + sha256: 4670fa4189d10e41144f0701f662c7e0dd770dd43619b31c1a56868286801de5 + md5: 1503dc790255dad9949d7858c8eefd8d + depends: + - libxml2 + - python + - ros-humble-ament-lint + - ros-humble-ros-workspace + - ros2-distro-mutex 0.7.* humble_* + - vc >=14.3,<15 + - vc14_runtime >=14.44.35208 + - ucrt >=10.0.20348.0 + - vc >=14.3,<15 + - vc14_runtime >=14.44.35208 + - ucrt >=10.0.20348.0 + - numpy >=1.26.4,<2.0a0 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + - python_abi 3.11.* *_cp311 + license: BSD-3-Clause + size: 32753 + timestamp: 1753311959201 +- conda: https://prefix.dev/robostack-staging/linux-64/ros-humble-angles-1.15.0-np126py311hbc2a38a_13.conda + sha256: fa0a16116645cba83107d6d6cfeb51d090f2cc9fe22f8af6580b40763055e3c9 + md5: 98f8955a45cc96839d5ebe61cc6f3d6e + depends: + - python + - ros-humble-ament-cmake + - ros-humble-ros-workspace + - ros2-distro-mutex 0.7.* humble_* + - libgcc >=13 + - libstdcxx >=13 + - libgcc >=13 + - __glibc >=2.17,<3.0.a0 + - numpy >=1.26.4,<2.0a0 + - python_abi 3.11.* *_cp311 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + license: BSD-3-Clause + size: 32616 + timestamp: 1753308433001 +- conda: https://prefix.dev/robostack-staging/linux-aarch64/ros-humble-angles-1.15.0-np126py311hbdd918e_13.conda + sha256: 0dac2a1546c69234b6dd7f57ec0d188e60635c20735f8d857c930920c15461bd + md5: ebe98292fbd35a7b79bf7c17a04c39d8 + depends: + - python + - ros-humble-ament-cmake + - ros-humble-ros-workspace + - ros2-distro-mutex 0.7.* humble_* + - libstdcxx >=13 + - libgcc >=13 + - numpy >=1.26.4,<2.0a0 + - python_abi 3.11.* *_cp311 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + license: BSD-3-Clause + size: 32370 + timestamp: 1753308560061 +- conda: https://prefix.dev/robostack-staging/osx-arm64/ros-humble-angles-1.15.0-np126py311h2a51a2c_13.conda + sha256: 7e9ca0abe8d9cd75443b7247ac6b44b4757436f08efb15097933331de9aa4d9e + md5: 217f74eae4c98fda74a1f53d65fe7e8d + depends: + - python + - ros-humble-ament-cmake + - ros-humble-ros-workspace + - ros2-distro-mutex 0.7.* humble_* + - libcxx >=18 + - __osx >=11.0 + - numpy >=1.26.4,<2.0a0 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + - python_abi 3.11.* *_cp311 + license: BSD-3-Clause + size: 32809 + timestamp: 1753308754926 +- conda: https://prefix.dev/robostack-staging/win-64/ros-humble-angles-1.15.0-np126py311hd5de103_13.conda + sha256: 1d4bbb2a37401e6c7a059d3df4dfda834d18df41975049295eec3d83aaf29f97 + md5: 63dde0062f95ead2770f3ecbaa8bab2f + depends: + - python + - ros-humble-ament-cmake + - ros-humble-ros-workspace + - ros2-distro-mutex 0.7.* humble_* + - vc >=14.3,<15 + - vc14_runtime >=14.44.35208 + - ucrt >=10.0.20348.0 + - vc >=14.3,<15 + - vc14_runtime >=14.44.35208 + - ucrt >=10.0.20348.0 + - numpy >=1.26.4,<2.0a0 + - python_abi 3.11.* *_cp311 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + license: BSD-3-Clause + size: 29622 + timestamp: 1753313136491 +- conda: https://prefix.dev/robostack-staging/linux-64/ros-humble-builtin-interfaces-1.2.1-np126py311hbc2a38a_13.conda + sha256: f5ebc8075baaa6bf5e03425026d34d1b1be3d44a0731401bd51afa639ca66740 + md5: de5e2635e51811b0665d011c976ea7a2 + depends: + - python + - ros-humble-ros-workspace + - ros-humble-rosidl-default-runtime + - ros2-distro-mutex 0.7.* humble_* + - __glibc >=2.17,<3.0.a0 + - libgcc >=13 + - libstdcxx >=13 + - libgcc >=13 + - numpy >=1.26.4,<2.0a0 + - python_abi 3.11.* *_cp311 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + license: BSD-3-Clause + size: 74224 + timestamp: 1753310575729 +- conda: https://prefix.dev/robostack-staging/linux-aarch64/ros-humble-builtin-interfaces-1.2.1-np126py311hbdd918e_13.conda + sha256: fa86376439fa69569d9eb77836eae05166885776f42cebcf2ce3cf541a5e185e + md5: 451019409c495cfe10b2236e1897a0f4 + depends: + - python + - ros-humble-ros-workspace + - ros-humble-rosidl-default-runtime + - ros2-distro-mutex 0.7.* humble_* + - libstdcxx >=13 + - libgcc >=13 + - python_abi 3.11.* *_cp311 + - numpy >=1.26.4,<2.0a0 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + license: BSD-3-Clause + size: 77949 + timestamp: 1753312285608 +- conda: https://prefix.dev/robostack-staging/osx-arm64/ros-humble-builtin-interfaces-1.2.1-np126py311h2a51a2c_13.conda + sha256: 4dfffd1a8cfaeaf9ca47cf64670119f5e6edf01b41ed57b7cd50b31e218e12f3 + md5: ca1ae998a6656b24c5635b3007c864df + depends: + - python + - ros-humble-ros-workspace + - ros-humble-rosidl-default-runtime + - ros2-distro-mutex 0.7.* humble_* + - __osx >=11.0 + - libcxx >=18 + - python_abi 3.11.* *_cp311 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + - numpy >=1.26.4,<2.0a0 + license: BSD-3-Clause + size: 70197 + timestamp: 1753311158592 +- conda: https://prefix.dev/robostack-staging/win-64/ros-humble-builtin-interfaces-1.2.1-np126py311hd5de103_13.conda + sha256: 31e37c5add1fb81bde4ab1103dd6d59c217b9180429d21805022b452ae641a9a + md5: 82528b0ddefce8a2cbe6b85027d910d1 + depends: + - python + - ros-humble-ros-workspace + - ros-humble-rosidl-default-runtime + - ros2-distro-mutex 0.7.* humble_* + - vc >=14.3,<15 + - vc14_runtime >=14.44.35208 + - ucrt >=10.0.20348.0 + - vc >=14.3,<15 + - vc14_runtime >=14.44.35208 + - ucrt >=10.0.20348.0 + - python_abi 3.11.* *_cp311 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + - numpy >=1.26.4,<2.0a0 + license: BSD-3-Clause + size: 80157 + timestamp: 1753323072448 +- conda: https://prefix.dev/robostack-staging/linux-64/ros-humble-class-loader-2.2.0-np126py311hbc2a38a_13.conda + sha256: 681dd456a487610aedf0c9d09cbb909aabcd95de67fe776df5c201234646cb47 + md5: acc14ffcacb6034011f1dab226c6f954 + depends: + - console_bridge + - python + - ros-humble-console-bridge-vendor + - ros-humble-rcpputils + - ros-humble-ros-workspace + - ros2-distro-mutex 0.7.* humble_* + - __glibc >=2.17,<3.0.a0 + - libstdcxx >=13 + - libgcc >=13 + - console_bridge >=1.0.2,<1.1.0a0 + - python_abi 3.11.* *_cp311 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + - numpy >=1.26.4,<2.0a0 + license: BSD-3-Clause + size: 72079 + timestamp: 1753310093256 +- conda: https://prefix.dev/robostack-staging/linux-aarch64/ros-humble-class-loader-2.2.0-np126py311hbdd918e_13.conda + sha256: c90b794f3d9f6c0c8eb3d9e3963b451a390c51c4c15e003f7269deb34d793fc9 + md5: c2026bc5a127633b84ce481e71ae9011 + depends: + - console_bridge + - python + - ros-humble-console-bridge-vendor + - ros-humble-rcpputils + - ros-humble-ros-workspace + - ros2-distro-mutex 0.7.* humble_* + - libstdcxx >=13 + - libgcc >=13 + - python_abi 3.11.* *_cp311 + - console_bridge >=1.0.2,<1.1.0a0 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + - numpy >=1.26.4,<2.0a0 + license: BSD-3-Clause + size: 77765 + timestamp: 1753309880421 +- conda: https://prefix.dev/robostack-staging/osx-arm64/ros-humble-class-loader-2.2.0-np126py311h2a51a2c_13.conda + sha256: 22782a6ba3e3b4550aa89cabe9814f1ceb7ccc117122afee47c98867536be2e7 + md5: 267fe87cc44b6ef4ae6c54c897807269 + depends: + - console_bridge + - python + - ros-humble-console-bridge-vendor + - ros-humble-rcpputils + - ros-humble-ros-workspace + - ros2-distro-mutex 0.7.* humble_* + - libcxx >=18 + - __osx >=11.0 + - python_abi 3.11.* *_cp311 + - numpy >=1.26.4,<2.0a0 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + - console_bridge >=1.0.2,<1.1.0a0 + license: BSD-3-Clause + size: 65434 + timestamp: 1753310645457 +- conda: https://prefix.dev/robostack-staging/win-64/ros-humble-class-loader-2.2.0-np126py311hd5de103_13.conda + sha256: 422bb1daf58180f4ee08f2977e62e0a8587280b5ef4748d2845972d1b8b1d8d8 + md5: 7db94f191aeb212f25dff59c2c28fddd + depends: + - console_bridge + - python + - ros-humble-console-bridge-vendor + - ros-humble-rcpputils + - ros-humble-ros-workspace + - ros2-distro-mutex 0.7.* humble_* + - vc >=14.3,<15 + - vc14_runtime >=14.44.35208 + - ucrt >=10.0.20348.0 + - vc >=14.3,<15 + - vc14_runtime >=14.44.35208 + - ucrt >=10.0.20348.0 + - console_bridge >=1.0.2,<1.1.0a0 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + - python_abi 3.11.* *_cp311 + - numpy >=1.26.4,<2.0a0 + license: BSD-3-Clause + size: 69086 + timestamp: 1753320986389 +- conda: https://prefix.dev/robostack-staging/linux-64/ros-humble-common-interfaces-4.9.0-np126py311hbc2a38a_13.conda + sha256: c8b15d4276c0c5e084e0863e823f389594f998c597616256efa15678253c5a07 + md5: 48786bac5a545b0c071918ce9a414e78 + depends: + - python + - ros-humble-actionlib-msgs + - ros-humble-builtin-interfaces + - ros-humble-diagnostic-msgs + - ros-humble-geometry-msgs + - ros-humble-nav-msgs + - ros-humble-ros-workspace + - ros-humble-sensor-msgs + - ros-humble-shape-msgs + - ros-humble-std-msgs + - ros-humble-std-srvs + - ros-humble-stereo-msgs + - ros-humble-trajectory-msgs + - ros-humble-visualization-msgs + - ros2-distro-mutex 0.7.* humble_* + - libgcc >=13 + - __glibc >=2.17,<3.0.a0 + - libstdcxx >=13 + - libgcc >=13 + - python_abi 3.11.* *_cp311 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + - numpy >=1.26.4,<2.0a0 + license: BSD-3-Clause + size: 25940 + timestamp: 1753312744005 +- conda: https://prefix.dev/robostack-staging/linux-aarch64/ros-humble-common-interfaces-4.9.0-np126py311hbdd918e_13.conda + sha256: 46d793271b1c0c0670e2ef520e456379f3aed1cb991a0e1f5d82d47959cf2e53 + md5: e69abc50bfdad0587d60a09091ab05d0 + depends: + - python + - ros-humble-actionlib-msgs + - ros-humble-builtin-interfaces + - ros-humble-diagnostic-msgs + - ros-humble-geometry-msgs + - ros-humble-nav-msgs + - ros-humble-ros-workspace + - ros-humble-sensor-msgs + - ros-humble-shape-msgs + - ros-humble-std-msgs + - ros-humble-std-srvs + - ros-humble-stereo-msgs + - ros-humble-trajectory-msgs + - ros-humble-visualization-msgs + - ros2-distro-mutex 0.7.* humble_* + - libgcc >=13 + - libstdcxx >=13 + - libgcc >=13 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + - python_abi 3.11.* *_cp311 + - numpy >=1.26.4,<2.0a0 + license: BSD-3-Clause + size: 25797 + timestamp: 1753313056009 +- conda: https://prefix.dev/robostack-staging/osx-arm64/ros-humble-common-interfaces-4.9.0-np126py311h2a51a2c_13.conda + sha256: 1bf6d80808fab4d49d12c1995263e19a99b3b39c0bb62baca16ef77711ab18ec + md5: b43fe72205e85f39c1fc43bd88adafd5 + depends: + - python + - ros-humble-actionlib-msgs + - ros-humble-builtin-interfaces + - ros-humble-diagnostic-msgs + - ros-humble-geometry-msgs + - ros-humble-nav-msgs + - ros-humble-ros-workspace + - ros-humble-sensor-msgs + - ros-humble-shape-msgs + - ros-humble-std-msgs + - ros-humble-std-srvs + - ros-humble-stereo-msgs + - ros-humble-trajectory-msgs + - ros-humble-visualization-msgs + - ros2-distro-mutex 0.7.* humble_* + - __osx >=11.0 + - libcxx >=18 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + - python_abi 3.11.* *_cp311 + - numpy >=1.26.4,<2.0a0 + license: BSD-3-Clause + size: 25990 + timestamp: 1753312560200 +- conda: https://prefix.dev/robostack-staging/win-64/ros-humble-common-interfaces-4.9.0-np126py311hd5de103_13.conda + sha256: 4ce6917e9f62a8c05ca352492c3599964605423545f81db592f2d689819f10de + md5: 046a2638a4bb0358e8ba17e29b37fe2f + depends: + - python + - ros-humble-actionlib-msgs + - ros-humble-builtin-interfaces + - ros-humble-diagnostic-msgs + - ros-humble-geometry-msgs + - ros-humble-nav-msgs + - ros-humble-ros-workspace + - ros-humble-sensor-msgs + - ros-humble-shape-msgs + - ros-humble-std-msgs + - ros-humble-std-srvs + - ros-humble-stereo-msgs + - ros-humble-trajectory-msgs + - ros-humble-visualization-msgs + - ros2-distro-mutex 0.7.* humble_* + - vc >=14.3,<15 + - vc14_runtime >=14.44.35208 + - ucrt >=10.0.20348.0 + - vc >=14.3,<15 + - vc14_runtime >=14.44.35208 + - ucrt >=10.0.20348.0 + - numpy >=1.26.4,<2.0a0 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + - python_abi 3.11.* *_cp311 + license: BSD-3-Clause + size: 22526 + timestamp: 1753329356216 +- conda: https://prefix.dev/robostack-staging/linux-64/ros-humble-composition-0.20.5-np126py311hbc2a38a_13.conda + sha256: be3e55ce4612ef698ed1f6683a8ec0f8b67decc203147f35e60e4288e95728cf + md5: 9261950c683af2ef6c7848ee452845ba + depends: + - python + - ros-humble-example-interfaces + - ros-humble-launch-ros + - ros-humble-rclcpp + - ros-humble-rclcpp-components + - ros-humble-rcutils + - ros-humble-ros-workspace + - ros-humble-std-msgs + - ros2-distro-mutex 0.7.* humble_* + - libstdcxx >=13 + - libgcc >=13 + - __glibc >=2.17,<3.0.a0 + - numpy >=1.26.4,<2.0a0 + - python_abi 3.11.* *_cp311 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + license: BSD-3-Clause + size: 314150 + timestamp: 1753313973219 +- conda: https://prefix.dev/robostack-staging/linux-aarch64/ros-humble-composition-0.20.5-np126py311hbdd918e_13.conda + sha256: d3a883a2b08f3e42f5b86ffce98d5148975be60a48c6ad00e8c726574065443c + md5: 60a73e2fbc9b63ce6b5f128dabde91f4 + depends: + - python + - ros-humble-example-interfaces + - ros-humble-launch-ros + - ros-humble-rclcpp + - ros-humble-rclcpp-components + - ros-humble-rcutils + - ros-humble-ros-workspace + - ros-humble-std-msgs + - ros2-distro-mutex 0.7.* humble_* + - libstdcxx >=13 + - libgcc >=13 + - python_abi 3.11.* *_cp311 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + - numpy >=1.26.4,<2.0a0 + license: BSD-3-Clause + size: 318639 + timestamp: 1753314072894 +- conda: https://prefix.dev/robostack-staging/osx-arm64/ros-humble-composition-0.20.5-np126py311h2a51a2c_13.conda + sha256: a95da73461201c1083f09dde7d2cdc3e783b6bfb066be46c0690a7f391d05751 + md5: eea942ec0364d9d63242f28b6c336216 + depends: + - python + - ros-humble-example-interfaces + - ros-humble-launch-ros + - ros-humble-rclcpp + - ros-humble-rclcpp-components + - ros-humble-rcutils + - ros-humble-ros-workspace + - ros-humble-std-msgs + - ros2-distro-mutex 0.7.* humble_* + - libcxx >=18 + - __osx >=11.0 + - numpy >=1.26.4,<2.0a0 + - python_abi 3.11.* *_cp311 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + license: BSD-3-Clause + size: 233766 + timestamp: 1753313911492 +- conda: https://prefix.dev/robostack-staging/win-64/ros-humble-composition-0.20.5-np126py311hd5de103_13.conda + sha256: 9e7d02a015da52eb29aa36441605cd11a106f767409212f261c4695cc8d77739 + md5: 2ad474b8885548c419853d41f91e033e + depends: + - python + - ros-humble-example-interfaces + - ros-humble-launch-ros + - ros-humble-rclcpp + - ros-humble-rclcpp-components + - ros-humble-rcutils + - ros-humble-ros-workspace + - ros-humble-std-msgs + - ros2-distro-mutex 0.7.* humble_* + - vc >=14.3,<15 + - vc14_runtime >=14.44.35208 + - ucrt >=10.0.20348.0 + - vc >=14.3,<15 + - vc14_runtime >=14.44.35208 + - ucrt >=10.0.20348.0 + - numpy >=1.26.4,<2.0a0 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + - python_abi 3.11.* *_cp311 + license: BSD-3-Clause + size: 204743 + timestamp: 1753334994390 +- conda: https://prefix.dev/robostack-staging/linux-64/ros-humble-composition-interfaces-1.2.1-np126py311hbc2a38a_13.conda + sha256: edd77eab554250252babebaad3952e58611eb201c985b2370f32153b6d7cbde3 + md5: 8be6c523d5eb83da7139fea8c3467425 + depends: + - python + - ros-humble-rcl-interfaces + - ros-humble-ros-workspace + - ros-humble-rosidl-default-runtime + - ros2-distro-mutex 0.7.* humble_* + - libgcc >=13 + - __glibc >=2.17,<3.0.a0 + - libstdcxx >=13 + - libgcc >=13 + - python_abi 3.11.* *_cp311 + - numpy >=1.26.4,<2.0a0 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + license: BSD-3-Clause + size: 146412 + timestamp: 1753312079739 +- conda: https://prefix.dev/robostack-staging/linux-aarch64/ros-humble-composition-interfaces-1.2.1-np126py311hbdd918e_13.conda + sha256: 400416817cf06e9452a8371613a58247105530607b99a77f670d261a5720e206 + md5: db58690a1cacd13345d5c26e01e087a7 + depends: + - python + - ros-humble-rcl-interfaces + - ros-humble-ros-workspace + - ros-humble-rosidl-default-runtime + - ros2-distro-mutex 0.7.* humble_* + - libgcc >=13 + - libstdcxx >=13 + - libgcc >=13 + - numpy >=1.26.4,<2.0a0 + - python_abi 3.11.* *_cp311 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + license: BSD-3-Clause + size: 150474 + timestamp: 1753312531419 +- conda: https://prefix.dev/robostack-staging/osx-arm64/ros-humble-composition-interfaces-1.2.1-np126py311h2a51a2c_13.conda + sha256: 60c99fa6e7e315e4133ec6c8f9f6d052e2b9120d427a07ee241af690531a5105 + md5: 2aedbf4ea6cd48f142cbca2d1eeea514 + depends: + - python + - ros-humble-rcl-interfaces + - ros-humble-ros-workspace + - ros-humble-rosidl-default-runtime + - ros2-distro-mutex 0.7.* humble_* + - libcxx >=18 + - __osx >=11.0 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + - numpy >=1.26.4,<2.0a0 + - python_abi 3.11.* *_cp311 + license: BSD-3-Clause + size: 128657 + timestamp: 1753311450412 +- conda: https://prefix.dev/robostack-staging/win-64/ros-humble-composition-interfaces-1.2.1-np126py311hd5de103_13.conda + sha256: 344b6b7a172888d12069bbcf497e1d3833781e89a563cd3b1d1b8cde0fd79174 + md5: f52706faeaa726256c30eff101ac10ee + depends: + - python + - ros-humble-rcl-interfaces + - ros-humble-ros-workspace + - ros-humble-rosidl-default-runtime + - ros2-distro-mutex 0.7.* humble_* + - vc >=14.3,<15 + - vc14_runtime >=14.44.35208 + - ucrt >=10.0.20348.0 + - vc >=14.3,<15 + - vc14_runtime >=14.44.35208 + - ucrt >=10.0.20348.0 + - python_abi 3.11.* *_cp311 + - numpy >=1.26.4,<2.0a0 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + license: BSD-3-Clause + size: 138907 + timestamp: 1753325189144 +- conda: https://prefix.dev/robostack-staging/linux-64/ros-humble-console-bridge-vendor-1.4.1-np126py311hbc2a38a_13.conda + sha256: 40bf862f848244507bad7909c58953a42a1bddb98df0508db8383a4b716ec4c4 + md5: 4f5ce50be785c1f43cc6a3a5516ea11a + depends: + - console_bridge + - python + - ros-humble-ros-workspace + - ros2-distro-mutex 0.7.* humble_* + - libstdcxx >=13 + - libgcc >=13 + - __glibc >=2.17,<3.0.a0 + - libgcc >=13 + - console_bridge >=1.0.2,<1.1.0a0 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + - numpy >=1.26.4,<2.0a0 + - python_abi 3.11.* *_cp311 + license: BSD-3-Clause + size: 26427 + timestamp: 1753309862381 +- conda: https://prefix.dev/robostack-staging/linux-aarch64/ros-humble-console-bridge-vendor-1.4.1-np126py311hbdd918e_13.conda + sha256: e82b22e35e1148c8cf3f369a6d2731743897332760c96b928abb968496e558da + md5: 19ee90ae0f81494bb4e4e85fa17ea84e + depends: + - console_bridge + - python + - ros-humble-ros-workspace + - ros2-distro-mutex 0.7.* humble_* + - libstdcxx >=13 + - libgcc >=13 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + - python_abi 3.11.* *_cp311 + - console_bridge >=1.0.2,<1.1.0a0 + - numpy >=1.26.4,<2.0a0 + license: BSD-3-Clause + size: 26273 + timestamp: 1753309636279 +- conda: https://prefix.dev/robostack-staging/osx-arm64/ros-humble-console-bridge-vendor-1.4.1-np126py311h2a51a2c_13.conda + sha256: 477f6234b0eb4d60c1927933a725ef9339fef2c4a1fd057720bc8ae8e579e330 + md5: 12e23dd340db4211ad7b1b75178f2c85 + depends: + - console_bridge + - python + - ros-humble-ros-workspace + - ros2-distro-mutex 0.7.* humble_* + - libcxx >=18 + - __osx >=11.0 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + - console_bridge >=1.0.2,<1.1.0a0 + - numpy >=1.26.4,<2.0a0 + - python_abi 3.11.* *_cp311 + license: BSD-3-Clause + size: 26529 + timestamp: 1753310342464 +- conda: https://prefix.dev/robostack-staging/win-64/ros-humble-console-bridge-vendor-1.4.1-np126py311hd5de103_13.conda + sha256: 0940de9ab8d4c4e03dea3577e4a1939b677a94c16697904b6a15882f635e273b + md5: d017e3a7d9e9ab37c2476aec344d7959 + depends: + - console_bridge + - python + - ros-humble-ros-workspace + - ros2-distro-mutex 0.7.* humble_* + - vc >=14.3,<15 + - vc14_runtime >=14.44.35208 + - ucrt >=10.0.20348.0 + - vc >=14.3,<15 + - vc14_runtime >=14.44.35208 + - ucrt >=10.0.20348.0 + - python_abi 3.11.* *_cp311 + - console_bridge >=1.0.2,<1.1.0a0 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + - numpy >=1.26.4,<2.0a0 + license: BSD-3-Clause + size: 23083 + timestamp: 1753318860213 +- conda: https://prefix.dev/robostack-staging/linux-64/ros-humble-cv-bridge-3.2.1-np126py311hea4e58e_13.conda + sha256: 5ebb20cca475a2644f94b2fe6cef8aa9fdb8d8e55ba2cba400d5809cd99c5afb + md5: 79a485872d2661e4ee43073b0211a2b1 + depends: + - libboost-python + - libopencv + - numpy + - py-opencv + - python + - ros-humble-ament-index-python + - ros-humble-rcpputils + - ros-humble-ros-workspace + - ros-humble-sensor-msgs + - ros2-distro-mutex 0.7.* humble_* + - xorg-libx11 + - xorg-libxext + - __glibc >=2.17,<3.0.a0 + - libgcc >=13 + - libstdcxx >=13 + - libgcc >=13 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + - libopencv >=4.11.0,<4.11.1.0a0 + - numpy >=1.26.4,<2.0a0 + - py-opencv >=4.11.0,<5.0a0 + - libgl >=1.7.0,<2.0a0 + - xorg-libx11 >=1.8.12,<2.0a0 + - xorg-libxext >=1.3.6,<2.0a0 + - libboost-python >=1.86.0,<1.87.0a0 + - libboost >=1.86.0,<1.87.0a0 + - python_abi 3.11.* *_cp311 + - libopengl >=1.7.0,<2.0a0 + license: BSD-3-Clause + size: 177354 + timestamp: 1753312422762 +- conda: https://prefix.dev/robostack-staging/linux-aarch64/ros-humble-cv-bridge-3.2.1-np126py311hcce1eb7_13.conda + sha256: 4890910e107ecc6e4061f4a5ebb2b54d457e63a17d220fd50372e8d95653903d + md5: 8702c1c155f7e1c06aa059908c44f09e + depends: + - libboost-python + - libopencv + - numpy + - py-opencv + - python + - ros-humble-ament-index-python + - ros-humble-rcpputils + - ros-humble-ros-workspace + - ros-humble-sensor-msgs + - ros2-distro-mutex 0.7.* humble_* + - xorg-libx11 + - xorg-libxext + - libgcc >=13 + - libstdcxx >=13 + - libgcc >=13 + - libboost >=1.86.0,<1.87.0a0 + - libopengl >=1.7.0,<2.0a0 + - python_abi 3.11.* *_cp311 + - libgl >=1.7.0,<2.0a0 + - libboost-python >=1.86.0,<1.87.0a0 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + - xorg-libxext >=1.3.6,<2.0a0 + - numpy >=1.26.4,<2.0a0 + - xorg-libx11 >=1.8.12,<2.0a0 + - py-opencv >=4.11.0,<5.0a0 + - libopencv >=4.11.0,<4.11.1.0a0 + license: BSD-3-Clause + size: 178231 + timestamp: 1753312806754 +- conda: https://prefix.dev/robostack-staging/osx-arm64/ros-humble-cv-bridge-3.2.1-np126py311h3f06965_13.conda + sha256: c248e97cf56372d1010e04138024a6df5ddc0e3b5893a8aa3e70d2914adbf6f3 + md5: ae5e7491503770780f0fd0295658bd01 + depends: + - libboost-python + - libopencv + - numpy + - py-opencv + - python + - ros-humble-ament-index-python + - ros-humble-rcpputils + - ros-humble-ros-workspace + - ros-humble-sensor-msgs + - ros2-distro-mutex 0.7.* humble_* + - xorg-libx11 + - xorg-libxext + - __osx >=11.0 + - libcxx >=18 + - python_abi 3.11.* *_cp311 + - numpy >=1.26.4,<2.0a0 + - xorg-libx11 >=1.8.12,<2.0a0 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + - xorg-libxext >=1.3.6,<2.0a0 + - libopencv >=4.11.0,<4.11.1.0a0 + - libboost-python >=1.86.0,<1.87.0a0 + - py-opencv >=4.11.0,<5.0a0 + - libboost >=1.86.0,<1.87.0a0 + license: BSD-3-Clause + size: 145125 + timestamp: 1753312223221 +- conda: https://prefix.dev/robostack-staging/win-64/ros-humble-cv-bridge-3.2.1-np126py311hbbd77cb_13.conda + sha256: a72c26bfdfdfddd5affb1520d0af8e81759ce50d06fc3293c46207c01696d18b + md5: b19c4493e46a84012d69a9298d7da4f4 + depends: + - libboost-python + - libopencv + - numpy + - py-opencv + - python + - ros-humble-ament-index-python + - ros-humble-rcpputils + - ros-humble-ros-workspace + - ros-humble-sensor-msgs + - ros2-distro-mutex 0.7.* humble_* + - vc >=14.3,<15 + - vc14_runtime >=14.44.35208 + - ucrt >=10.0.20348.0 + - vc >=14.3,<15 + - vc14_runtime >=14.44.35208 + - ucrt >=10.0.20348.0 + - py-opencv >=4.11.0,<5.0a0 + - python_abi 3.11.* *_cp311 + - libopencv >=4.11.0,<4.11.1.0a0 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + - libboost >=1.86.0,<1.87.0a0 + - libboost-python >=1.86.0,<1.87.0a0 + - numpy >=1.26.4,<2.0a0 + license: BSD-3-Clause + size: 129614 + timestamp: 1753328200248 +- conda: https://prefix.dev/robostack-staging/linux-64/ros-humble-cyclonedds-0.10.5-np126py311hbc2a38a_13.conda + sha256: 13ab35228674132d0ecb601c25dc7e12731f4c851d2364267e7e45c89c8e8e94 + md5: c86ab3549fb7c876cfba9ca5380f9fe5 + depends: + - openssl + - python + - ros-humble-iceoryx-binding-c + - ros-humble-iceoryx-hoofs + - ros-humble-iceoryx-posh + - ros-humble-ros-workspace + - ros2-distro-mutex 0.7.* humble_* + - libstdcxx >=13 + - libgcc >=13 + - __glibc >=2.17,<3.0.a0 + - openssl >=3.5.1,<4.0a0 + - python_abi 3.11.* *_cp311 + - numpy >=1.26.4,<2.0a0 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + license: BSD-3-Clause + size: 1194390 + timestamp: 1753308243703 +- conda: https://prefix.dev/robostack-staging/linux-aarch64/ros-humble-cyclonedds-0.10.5-np126py311hbdd918e_13.conda + sha256: ae0dd0fdc594f8768e1c2a6c61c2d802cea724655638f01120eaad98d8d14aa5 + md5: edfaa353951f9619cd6ddaf16596c670 + depends: + - openssl + - python + - ros-humble-iceoryx-binding-c + - ros-humble-iceoryx-hoofs + - ros-humble-iceoryx-posh + - ros-humble-ros-workspace + - ros2-distro-mutex 0.7.* humble_* + - libgcc >=13 + - libstdcxx >=13 + - libgcc >=13 + - python_abi 3.11.* *_cp311 + - openssl >=3.5.1,<4.0a0 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + - numpy >=1.26.4,<2.0a0 + license: BSD-3-Clause + size: 1242057 + timestamp: 1753308367100 +- conda: https://prefix.dev/robostack-staging/osx-arm64/ros-humble-cyclonedds-0.10.5-np126py311h2a51a2c_13.conda + sha256: 586e7f8948073bdfea5e3f1d5fa4fb8f0f4f16e2a38c32ee093602cb08dbb4fb + md5: 125b444b345ed8b5b72e161feec90559 + depends: + - openssl + - python + - ros-humble-iceoryx-binding-c + - ros-humble-iceoryx-hoofs + - ros-humble-iceoryx-posh + - ros-humble-ros-workspace + - ros2-distro-mutex 0.7.* humble_* + - libcxx >=18 + - __osx >=11.0 + - python_abi 3.11.* *_cp311 + - openssl >=3.5.1,<4.0a0 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + - numpy >=1.26.4,<2.0a0 + license: BSD-3-Clause + size: 1053739 + timestamp: 1753308561883 +- conda: https://prefix.dev/robostack-staging/win-64/ros-humble-cyclonedds-0.10.5-np126py311hd5de103_13.conda + sha256: 8e3471137d6adb34c102441ee80a74d5e24705471d329b83c237867d6b27ad88 + md5: eb2993288c968a370cf8eff73f87329b + depends: + - openssl + - python + - ros-humble-iceoryx-binding-c + - ros-humble-iceoryx-hoofs + - ros-humble-iceoryx-posh + - ros-humble-ros-workspace + - ros2-distro-mutex 0.7.* humble_* + - vc >=14.3,<15 + - vc14_runtime >=14.44.35208 + - ucrt >=10.0.20348.0 + - vc >=14.3,<15 + - vc14_runtime >=14.44.35208 + - ucrt >=10.0.20348.0 + - python_abi 3.11.* *_cp311 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + - numpy >=1.26.4,<2.0a0 + - openssl >=3.5.1,<4.0a0 + license: BSD-3-Clause + size: 1080300 + timestamp: 1753310855102 +- conda: https://prefix.dev/robostack-staging/linux-64/ros-humble-demo-nodes-cpp-0.20.5-np126py311hbc2a38a_13.conda + sha256: 97ca570e048df9cb70798a8019685ab4b5df662ca99dea4f78b52b59c6fed807 + md5: 46ca5a7b9e272035ef67065a424c8bd5 + depends: + - python + - ros-humble-example-interfaces + - ros-humble-launch-ros + - ros-humble-launch-xml + - ros-humble-rclcpp + - ros-humble-rclcpp-components + - ros-humble-rcutils + - ros-humble-rmw + - ros-humble-ros-workspace + - ros-humble-std-msgs + - ros2-distro-mutex 0.7.* humble_* + - __glibc >=2.17,<3.0.a0 + - libgcc >=13 + - libstdcxx >=13 + - libgcc >=13 + - numpy >=1.26.4,<2.0a0 + - python_abi 3.11.* *_cp311 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + license: BSD-3-Clause + size: 833696 + timestamp: 1753313882071 +- conda: https://prefix.dev/robostack-staging/linux-aarch64/ros-humble-demo-nodes-cpp-0.20.5-np126py311hbdd918e_13.conda + sha256: cb92e004ccc0dca7612dd527bba757904e4fbb7cb9e1fc61254be45779406a3d + md5: cd924735ba3e47304520a6e9573e2931 + depends: + - python + - ros-humble-example-interfaces + - ros-humble-launch-ros + - ros-humble-launch-xml + - ros-humble-rclcpp + - ros-humble-rclcpp-components + - ros-humble-rcutils + - ros-humble-rmw + - ros-humble-ros-workspace + - ros-humble-std-msgs + - ros2-distro-mutex 0.7.* humble_* + - libgcc >=13 + - libstdcxx >=13 + - libgcc >=13 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + - numpy >=1.26.4,<2.0a0 + - python_abi 3.11.* *_cp311 + license: BSD-3-Clause + size: 843526 + timestamp: 1753314001796 +- conda: https://prefix.dev/robostack-staging/osx-arm64/ros-humble-demo-nodes-cpp-0.20.5-np126py311h2a51a2c_13.conda + sha256: 5560d09b1b7db9f98092a01791fa4b7ae9d6fc0e3b70dc6c12c8bcbe7a4904c2 + md5: d98138359fcb67f1036170cc3724d86e + depends: + - python + - ros-humble-example-interfaces + - ros-humble-launch-ros + - ros-humble-launch-xml + - ros-humble-rclcpp + - ros-humble-rclcpp-components + - ros-humble-rcutils + - ros-humble-rmw + - ros-humble-ros-workspace + - ros-humble-std-msgs + - ros2-distro-mutex 0.7.* humble_* + - libcxx >=18 + - __osx >=11.0 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + - numpy >=1.26.4,<2.0a0 + - python_abi 3.11.* *_cp311 + license: BSD-3-Clause + size: 601485 + timestamp: 1753313835749 +- conda: https://prefix.dev/robostack-staging/win-64/ros-humble-demo-nodes-cpp-0.20.5-np126py311hd5de103_13.conda + sha256: a2f384a1384246ebcc2f4b5158193a77cbf2b0e4f6d7db03f7e0393638e7d9ea + md5: bc8949bb923e5b5b26d12f25c431e982 + depends: + - python + - ros-humble-example-interfaces + - ros-humble-launch-ros + - ros-humble-launch-xml + - ros-humble-rclcpp + - ros-humble-rclcpp-components + - ros-humble-rcutils + - ros-humble-rmw + - ros-humble-ros-workspace + - ros-humble-std-msgs + - ros2-distro-mutex 0.7.* humble_* + - vc >=14.3,<15 + - vc14_runtime >=14.44.35208 + - ucrt >=10.0.20348.0 + - vc >=14.3,<15 + - vc14_runtime >=14.44.35208 + - ucrt >=10.0.20348.0 + - python_abi 3.11.* *_cp311 + - numpy >=1.26.4,<2.0a0 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + license: BSD-3-Clause + size: 443938 + timestamp: 1753334777032 +- conda: https://prefix.dev/robostack-staging/linux-64/ros-humble-demo-nodes-cpp-native-0.20.5-np126py311hbc2a38a_13.conda + sha256: e6dfb15d7e7e21fb2a38d6669d4ab804f0e3bf4164b91e705bfbf9d56c32933a + md5: 4cc3a6f7220cb9503eca0663584f87af + depends: + - python + - ros-humble-rclcpp + - ros-humble-rclcpp-components + - ros-humble-rmw-fastrtps-cpp + - ros-humble-ros-workspace + - ros-humble-std-msgs + - ros2-distro-mutex 0.7.* humble_* + - libgcc >=13 + - __glibc >=2.17,<3.0.a0 + - libstdcxx >=13 + - libgcc >=13 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + - numpy >=1.26.4,<2.0a0 + - python_abi 3.11.* *_cp311 + license: BSD-3-Clause + size: 117158 + timestamp: 1753313855226 +- conda: https://prefix.dev/robostack-staging/linux-aarch64/ros-humble-demo-nodes-cpp-native-0.20.5-np126py311hbdd918e_13.conda + sha256: 8bca24310b8d714ddc297408fdaa3ed9faa9e2a0cd2d2adaf154054c7d2f30f7 + md5: 7200b3d624be8fe124647c940734382e + depends: + - python + - ros-humble-rclcpp + - ros-humble-rclcpp-components + - ros-humble-rmw-fastrtps-cpp + - ros-humble-ros-workspace + - ros-humble-std-msgs + - ros2-distro-mutex 0.7.* humble_* + - libgcc >=13 + - libstdcxx >=13 + - libgcc >=13 + - python_abi 3.11.* *_cp311 + - numpy >=1.26.4,<2.0a0 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + license: BSD-3-Clause + size: 117799 + timestamp: 1753313963131 +- conda: https://prefix.dev/robostack-staging/osx-arm64/ros-humble-demo-nodes-cpp-native-0.20.5-np126py311h2a51a2c_13.conda + sha256: 8c6514f2b63744cd3d84fe1100b1740c929af495dcd1a9fb34ea88fc9a245b06 + md5: c9bdf3ebe3e5500fbc41646f6c1e8de9 + depends: + - python + - ros-humble-rclcpp + - ros-humble-rclcpp-components + - ros-humble-rmw-fastrtps-cpp + - ros-humble-ros-workspace + - ros-humble-std-msgs + - ros2-distro-mutex 0.7.* humble_* + - __osx >=11.0 + - libcxx >=18 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + - python_abi 3.11.* *_cp311 + - numpy >=1.26.4,<2.0a0 + license: BSD-3-Clause + size: 106318 + timestamp: 1753313902781 +- conda: https://prefix.dev/robostack-staging/win-64/ros-humble-demo-nodes-cpp-native-0.20.5-np126py311hd5de103_13.conda + sha256: 75d23a639d206c4e121c2b79170fc5ad89a5b3125cb84dd864a7a9bf304c2389 + md5: d9c1d4341f4bd8a9e1fa698b41ce9ba8 + depends: + - python + - ros-humble-rclcpp + - ros-humble-rclcpp-components + - ros-humble-rmw-fastrtps-cpp + - ros-humble-ros-workspace + - ros-humble-std-msgs + - ros2-distro-mutex 0.7.* humble_* + - vc >=14.3,<15 + - vc14_runtime >=14.44.35208 + - ucrt >=10.0.20348.0 + - vc >=14.3,<15 + - vc14_runtime >=14.44.35208 + - ucrt >=10.0.20348.0 + - numpy >=1.26.4,<2.0a0 + - python_abi 3.11.* *_cp311 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + license: BSD-3-Clause + size: 93751 + timestamp: 1753334705492 +- conda: https://prefix.dev/robostack-staging/linux-64/ros-humble-demo-nodes-py-0.20.5-np126py311hbc2a38a_13.conda + sha256: b4e430df3d22e9d11385043c3527cfaaf9e3dd560a91a219b031ecfe6e6fb8fb + md5: 1beff202d15144a32026116e6cd98f69 + depends: + - python + - ros-humble-example-interfaces + - ros-humble-rclpy + - ros-humble-ros-workspace + - ros-humble-std-msgs + - ros2-distro-mutex 0.7.* humble_* + - libgcc >=13 + - libstdcxx >=13 + - libgcc >=13 + - __glibc >=2.17,<3.0.a0 + - numpy >=1.26.4,<2.0a0 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + - python_abi 3.11.* *_cp311 + license: BSD-3-Clause + size: 27352 + timestamp: 1753313183111 +- conda: https://prefix.dev/robostack-staging/linux-aarch64/ros-humble-demo-nodes-py-0.20.5-np126py311hbdd918e_13.conda + sha256: 952d1a7dadadcbc8cf06f9257ac5454c25163d23783def579c88e631fc099f64 + md5: 9a38ab08e5586ce07fc942a357db6bb0 + depends: + - python + - ros-humble-example-interfaces + - ros-humble-rclpy + - ros-humble-ros-workspace + - ros-humble-std-msgs + - ros2-distro-mutex 0.7.* humble_* + - libgcc >=13 + - libstdcxx >=13 + - libgcc >=13 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + - python_abi 3.11.* *_cp311 + - numpy >=1.26.4,<2.0a0 + license: BSD-3-Clause + size: 27162 + timestamp: 1753313428971 +- conda: https://prefix.dev/robostack-staging/osx-arm64/ros-humble-demo-nodes-py-0.20.5-np126py311h2a51a2c_13.conda + sha256: 0bcf92eaf7574937f34a8ef0e7bea3fd613fe380d1fdd007339f221403ff20f9 + md5: ee6e59cbd39c52eb9abdea2ae3404565 + depends: + - python + - ros-humble-example-interfaces + - ros-humble-rclpy + - ros-humble-ros-workspace + - ros-humble-std-msgs + - ros2-distro-mutex 0.7.* humble_* + - __osx >=11.0 + - libcxx >=18 + - python_abi 3.11.* *_cp311 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + - numpy >=1.26.4,<2.0a0 + license: BSD-3-Clause + size: 27435 + timestamp: 1753313025265 +- conda: https://prefix.dev/robostack-staging/win-64/ros-humble-demo-nodes-py-0.20.5-np126py311hd5de103_13.conda + sha256: 6ecb2905fc2f9f24e5750e628cdf5f6d7acc1f7c8b8c5a96c78ae38ddb57cb39 + md5: c14c94a5a2ef1c8a76a48da408c82e3a + depends: + - python + - ros-humble-example-interfaces + - ros-humble-rclpy + - ros-humble-ros-workspace + - ros-humble-std-msgs + - ros2-distro-mutex 0.7.* humble_* + - vc >=14.3,<15 + - vc14_runtime >=14.44.35208 + - ucrt >=10.0.20348.0 + - vc >=14.3,<15 + - vc14_runtime >=14.44.35208 + - ucrt >=10.0.20348.0 + - python_abi 3.11.* *_cp311 + - numpy >=1.26.4,<2.0a0 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + license: BSD-3-Clause + size: 33516 + timestamp: 1753331743955 +- conda: https://prefix.dev/robostack-staging/linux-64/ros-humble-depthimage-to-laserscan-2.5.1-np126py311hea4e58e_13.conda + sha256: 8e79f3debd34d620292e484044cc746d28f977bc096dc2e3388d82ebb3aec89b + md5: 883142413c4eed964330429833af2fb1 + depends: + - libopencv + - py-opencv + - python + - ros-humble-image-geometry + - ros-humble-rclcpp + - ros-humble-rclcpp-components + - ros-humble-ros-workspace + - ros-humble-sensor-msgs + - ros2-distro-mutex 0.7.* humble_* + - xorg-libx11 + - xorg-libxext + - __glibc >=2.17,<3.0.a0 + - libstdcxx >=13 + - libgcc >=13 + - numpy >=1.26.4,<2.0a0 + - libgl >=1.7.0,<2.0a0 + - python_abi 3.11.* *_cp311 + - xorg-libx11 >=1.8.12,<2.0a0 + - py-opencv >=4.11.0,<5.0a0 + - libopengl >=1.7.0,<2.0a0 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + - xorg-libxext >=1.3.6,<2.0a0 + - libopencv >=4.11.0,<4.11.1.0a0 + license: BSD-3-Clause + size: 236531 + timestamp: 1753313505347 +- conda: https://prefix.dev/robostack-staging/linux-aarch64/ros-humble-depthimage-to-laserscan-2.5.1-np126py311hcce1eb7_13.conda + sha256: 8992816ddae02624987301b17ec0615cc9fe0c012fbcf319cf5022224ea89dc8 + md5: 54e73c7304ba9ecafc7e647a10b5200d + depends: + - libopencv + - py-opencv + - python + - ros-humble-image-geometry + - ros-humble-rclcpp + - ros-humble-rclcpp-components + - ros-humble-ros-workspace + - ros-humble-sensor-msgs + - ros2-distro-mutex 0.7.* humble_* + - xorg-libx11 + - xorg-libxext + - libstdcxx >=13 + - libgcc >=13 + - libopencv >=4.11.0,<4.11.1.0a0 + - xorg-libx11 >=1.8.12,<2.0a0 + - py-opencv >=4.11.0,<5.0a0 + - numpy >=1.26.4,<2.0a0 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + - xorg-libxext >=1.3.6,<2.0a0 + - python_abi 3.11.* *_cp311 + - libopengl >=1.7.0,<2.0a0 + - libgl >=1.7.0,<2.0a0 + license: BSD-3-Clause + size: 233047 + timestamp: 1753313667444 +- conda: https://prefix.dev/robostack-staging/osx-arm64/ros-humble-depthimage-to-laserscan-2.5.1-np126py311h3f06965_13.conda + sha256: a646a3d84869b95d0dbcf92f5029fa4ee15a1df8f3f5a487b299598f84b3a514 + md5: d25a58ee0d0a9ca595abc6ca0f96bc0d + depends: + - libopencv + - py-opencv + - python + - ros-humble-image-geometry + - ros-humble-rclcpp + - ros-humble-rclcpp-components + - ros-humble-ros-workspace + - ros-humble-sensor-msgs + - ros2-distro-mutex 0.7.* humble_* + - xorg-libx11 + - xorg-libxext + - libcxx >=18 + - __osx >=11.0 + - numpy >=1.26.4,<2.0a0 + - python_abi 3.11.* *_cp311 + - xorg-libxext >=1.3.6,<2.0a0 + - libopencv >=4.11.0,<4.11.1.0a0 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + - py-opencv >=4.11.0,<5.0a0 + - xorg-libx11 >=1.8.12,<2.0a0 + license: BSD-3-Clause + size: 197817 + timestamp: 1753313643858 +- conda: https://prefix.dev/robostack-staging/win-64/ros-humble-depthimage-to-laserscan-2.5.1-np126py311hbbd77cb_13.conda + sha256: d1599fdec92e5ea77397cabc9a73c2c5c72ee73d4bcdbc509252700980075a0c + md5: bf15f3186b2f6c1af52777778b630701 + depends: + - libopencv + - py-opencv + - python + - ros-humble-image-geometry + - ros-humble-rclcpp + - ros-humble-rclcpp-components + - ros-humble-ros-workspace + - ros-humble-sensor-msgs + - ros2-distro-mutex 0.7.* humble_* + - vc >=14.3,<15 + - vc14_runtime >=14.44.35208 + - ucrt >=10.0.20348.0 + - vc >=14.3,<15 + - vc14_runtime >=14.44.35208 + - ucrt >=10.0.20348.0 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + - python_abi 3.11.* *_cp311 + - numpy >=1.26.4,<2.0a0 + - libopencv >=4.11.0,<4.11.1.0a0 + - py-opencv >=4.11.0,<5.0a0 + license: BSD-3-Clause + size: 159923 + timestamp: 1753332864516 +- conda: https://prefix.dev/robostack-staging/linux-64/ros-humble-desktop-0.10.0-np126py311hbc2a38a_13.conda + sha256: 2cb396f7f8898a1bef0ad96339801f77ddb014ae1661ac6ed17cacbdc6604eb9 + md5: a67667e008fbd94d28f6a5b8d65a8d68 + depends: + - python + - ros-humble-action-tutorials-cpp + - ros-humble-action-tutorials-interfaces + - ros-humble-action-tutorials-py + - ros-humble-angles + - ros-humble-composition + - ros-humble-demo-nodes-cpp + - ros-humble-demo-nodes-cpp-native + - ros-humble-demo-nodes-py + - ros-humble-depthimage-to-laserscan + - ros-humble-dummy-map-server + - ros-humble-dummy-robot-bringup + - ros-humble-dummy-sensors + - ros-humble-examples-rclcpp-minimal-action-client + - ros-humble-examples-rclcpp-minimal-action-server + - ros-humble-examples-rclcpp-minimal-client + - ros-humble-examples-rclcpp-minimal-composition + - ros-humble-examples-rclcpp-minimal-publisher + - ros-humble-examples-rclcpp-minimal-service + - ros-humble-examples-rclcpp-minimal-subscriber + - ros-humble-examples-rclcpp-minimal-timer + - ros-humble-examples-rclcpp-multithreaded-executor + - ros-humble-examples-rclpy-executors + - ros-humble-examples-rclpy-minimal-action-client + - ros-humble-examples-rclpy-minimal-action-server + - ros-humble-examples-rclpy-minimal-client + - ros-humble-examples-rclpy-minimal-publisher + - ros-humble-examples-rclpy-minimal-service + - ros-humble-examples-rclpy-minimal-subscriber + - ros-humble-image-tools + - ros-humble-intra-process-demo + - ros-humble-joy + - ros-humble-lifecycle + - ros-humble-logging-demo + - ros-humble-pcl-conversions + - ros-humble-pendulum-control + - ros-humble-pendulum-msgs + - ros-humble-quality-of-service-demo-cpp + - ros-humble-quality-of-service-demo-py + - ros-humble-ros-base + - ros-humble-ros-workspace + - ros-humble-rqt-common-plugins + - ros-humble-rviz-default-plugins + - ros-humble-rviz2 + - ros-humble-teleop-twist-joy + - ros-humble-teleop-twist-keyboard + - ros-humble-tlsf + - ros-humble-tlsf-cpp + - ros-humble-topic-monitor + - ros-humble-turtlesim + - ros2-distro-mutex 0.7.* humble_* + - __glibc >=2.17,<3.0.a0 + - libgcc >=13 + - libstdcxx >=13 + - libgcc >=13 + - numpy >=1.26.4,<2.0a0 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + - python_abi 3.11.* *_cp311 + license: BSD-3-Clause + size: 23463 + timestamp: 1753317506806 +- conda: https://prefix.dev/robostack-staging/linux-aarch64/ros-humble-desktop-0.10.0-np126py311hbdd918e_13.conda + sha256: 310b4ff2e18cc1594fee80a09aec0d0964f4e7821e0cf0cdc43d991ef784b555 + md5: beb0387f8fd9fecf51e82bbf7421c055 + depends: + - python + - ros-humble-action-tutorials-cpp + - ros-humble-action-tutorials-interfaces + - ros-humble-action-tutorials-py + - ros-humble-angles + - ros-humble-composition + - ros-humble-demo-nodes-cpp + - ros-humble-demo-nodes-cpp-native + - ros-humble-demo-nodes-py + - ros-humble-depthimage-to-laserscan + - ros-humble-dummy-map-server + - ros-humble-dummy-robot-bringup + - ros-humble-dummy-sensors + - ros-humble-examples-rclcpp-minimal-action-client + - ros-humble-examples-rclcpp-minimal-action-server + - ros-humble-examples-rclcpp-minimal-client + - ros-humble-examples-rclcpp-minimal-composition + - ros-humble-examples-rclcpp-minimal-publisher + - ros-humble-examples-rclcpp-minimal-service + - ros-humble-examples-rclcpp-minimal-subscriber + - ros-humble-examples-rclcpp-minimal-timer + - ros-humble-examples-rclcpp-multithreaded-executor + - ros-humble-examples-rclpy-executors + - ros-humble-examples-rclpy-minimal-action-client + - ros-humble-examples-rclpy-minimal-action-server + - ros-humble-examples-rclpy-minimal-client + - ros-humble-examples-rclpy-minimal-publisher + - ros-humble-examples-rclpy-minimal-service + - ros-humble-examples-rclpy-minimal-subscriber + - ros-humble-image-tools + - ros-humble-intra-process-demo + - ros-humble-joy + - ros-humble-lifecycle + - ros-humble-logging-demo + - ros-humble-pcl-conversions + - ros-humble-pendulum-control + - ros-humble-pendulum-msgs + - ros-humble-quality-of-service-demo-cpp + - ros-humble-quality-of-service-demo-py + - ros-humble-ros-base + - ros-humble-ros-workspace + - ros-humble-rqt-common-plugins + - ros-humble-rviz-default-plugins + - ros-humble-rviz2 + - ros-humble-teleop-twist-joy + - ros-humble-teleop-twist-keyboard + - ros-humble-tlsf + - ros-humble-tlsf-cpp + - ros-humble-topic-monitor + - ros-humble-turtlesim + - ros2-distro-mutex 0.7.* humble_* + - libstdcxx >=13 + - libgcc >=13 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + - numpy >=1.26.4,<2.0a0 + - python_abi 3.11.* *_cp311 + license: BSD-3-Clause + size: 23280 + timestamp: 1753336434681 +- conda: https://prefix.dev/robostack-staging/osx-arm64/ros-humble-desktop-0.10.0-np126py311h2a51a2c_13.conda + sha256: fda8ac219309ea6d607a31ba1d60e864443756ff00914167661f85252ae816fe + md5: f13b748f09960d9d9e84ababa3dc4984 + depends: + - python + - ros-humble-action-tutorials-cpp + - ros-humble-action-tutorials-interfaces + - ros-humble-action-tutorials-py + - ros-humble-angles + - ros-humble-composition + - ros-humble-demo-nodes-cpp + - ros-humble-demo-nodes-cpp-native + - ros-humble-demo-nodes-py + - ros-humble-depthimage-to-laserscan + - ros-humble-dummy-map-server + - ros-humble-dummy-robot-bringup + - ros-humble-dummy-sensors + - ros-humble-examples-rclcpp-minimal-action-client + - ros-humble-examples-rclcpp-minimal-action-server + - ros-humble-examples-rclcpp-minimal-client + - ros-humble-examples-rclcpp-minimal-composition + - ros-humble-examples-rclcpp-minimal-publisher + - ros-humble-examples-rclcpp-minimal-service + - ros-humble-examples-rclcpp-minimal-subscriber + - ros-humble-examples-rclcpp-minimal-timer + - ros-humble-examples-rclcpp-multithreaded-executor + - ros-humble-examples-rclpy-executors + - ros-humble-examples-rclpy-minimal-action-client + - ros-humble-examples-rclpy-minimal-action-server + - ros-humble-examples-rclpy-minimal-client + - ros-humble-examples-rclpy-minimal-publisher + - ros-humble-examples-rclpy-minimal-service + - ros-humble-examples-rclpy-minimal-subscriber + - ros-humble-image-tools + - ros-humble-intra-process-demo + - ros-humble-joy + - ros-humble-lifecycle + - ros-humble-logging-demo + - ros-humble-pcl-conversions + - ros-humble-pendulum-msgs + - ros-humble-quality-of-service-demo-cpp + - ros-humble-quality-of-service-demo-py + - ros-humble-ros-base + - ros-humble-ros-workspace + - ros-humble-rqt-common-plugins + - ros-humble-rviz-default-plugins + - ros-humble-rviz2 + - ros-humble-teleop-twist-joy + - ros-humble-teleop-twist-keyboard + - ros-humble-topic-monitor + - ros-humble-turtlesim + - ros2-distro-mutex 0.7.* humble_* + - __osx >=11.0 + - libcxx >=18 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + - python_abi 3.11.* *_cp311 + - numpy >=1.26.4,<2.0a0 + license: BSD-3-Clause + size: 23626 + timestamp: 1753321242008 +- conda: https://prefix.dev/robostack-staging/win-64/ros-humble-desktop-0.10.0-np126py311hd5de103_13.conda + sha256: ace02d3213eea21c898e39b85c532b93fe413b17e6ae61f41f1deb57681d5fe7 + md5: 96ec4f7c6c45c7c520cd359e67be301c + depends: + - python + - ros-humble-action-tutorials-cpp + - ros-humble-action-tutorials-interfaces + - ros-humble-action-tutorials-py + - ros-humble-angles + - ros-humble-composition + - ros-humble-demo-nodes-cpp + - ros-humble-demo-nodes-cpp-native + - ros-humble-demo-nodes-py + - ros-humble-depthimage-to-laserscan + - ros-humble-dummy-map-server + - ros-humble-dummy-robot-bringup + - ros-humble-dummy-sensors + - ros-humble-examples-rclcpp-minimal-action-client + - ros-humble-examples-rclcpp-minimal-action-server + - ros-humble-examples-rclcpp-minimal-client + - ros-humble-examples-rclcpp-minimal-composition + - ros-humble-examples-rclcpp-minimal-publisher + - ros-humble-examples-rclcpp-minimal-service + - ros-humble-examples-rclcpp-minimal-subscriber + - ros-humble-examples-rclcpp-minimal-timer + - ros-humble-examples-rclcpp-multithreaded-executor + - ros-humble-examples-rclpy-executors + - ros-humble-examples-rclpy-minimal-action-client + - ros-humble-examples-rclpy-minimal-action-server + - ros-humble-examples-rclpy-minimal-client + - ros-humble-examples-rclpy-minimal-publisher + - ros-humble-examples-rclpy-minimal-service + - ros-humble-examples-rclpy-minimal-subscriber + - ros-humble-image-tools + - ros-humble-intra-process-demo + - ros-humble-joy + - ros-humble-lifecycle + - ros-humble-logging-demo + - ros-humble-pcl-conversions + - ros-humble-pendulum-msgs + - ros-humble-quality-of-service-demo-cpp + - ros-humble-quality-of-service-demo-py + - ros-humble-ros-base + - ros-humble-ros-workspace + - ros-humble-rqt-common-plugins + - ros-humble-rviz-default-plugins + - ros-humble-rviz2 + - ros-humble-teleop-twist-joy + - ros-humble-teleop-twist-keyboard + - ros-humble-topic-monitor + - ros-humble-turtlesim + - ros2-distro-mutex 0.7.* humble_* + - vc >=14.3,<15 + - vc14_runtime >=14.44.35208 + - ucrt >=10.0.20348.0 + - vc >=14.3,<15 + - vc14_runtime >=14.44.35208 + - ucrt >=10.0.20348.0 + - python_abi 3.11.* *_cp311 + - numpy >=1.26.4,<2.0a0 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + license: BSD-3-Clause + size: 20202 + timestamp: 1753357737521 +- conda: https://prefix.dev/robostack-staging/linux-64/ros-humble-diagnostic-msgs-4.9.0-np126py311hbc2a38a_13.conda + sha256: a035f7b91cd5412101a846148e274f1491f908898757277839b1e4315cc20a81 + md5: 0fa191fae83793e2a72f156a966c52d1 + depends: + - python + - ros-humble-builtin-interfaces + - ros-humble-geometry-msgs + - ros-humble-ros-workspace + - ros-humble-rosidl-default-runtime + - ros-humble-std-msgs + - ros2-distro-mutex 0.7.* humble_* + - __glibc >=2.17,<3.0.a0 + - libstdcxx >=13 + - libgcc >=13 + - numpy >=1.26.4,<2.0a0 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + - python_abi 3.11.* *_cp311 + license: BSD-3-Clause + size: 145966 + timestamp: 1753312186078 +- conda: https://prefix.dev/robostack-staging/linux-aarch64/ros-humble-diagnostic-msgs-4.9.0-np126py311hbdd918e_13.conda + sha256: 7a2db37913acc0b2a0cda348fd87e4b65789b2e8bcf6f84117c9f6ea82a66820 + md5: 77497e12b210c1ebd1cd75d585745cd9 + depends: + - python + - ros-humble-builtin-interfaces + - ros-humble-geometry-msgs + - ros-humble-ros-workspace + - ros-humble-rosidl-default-runtime + - ros-humble-std-msgs + - ros2-distro-mutex 0.7.* humble_* + - libstdcxx >=13 + - libgcc >=13 + - python_abi 3.11.* *_cp311 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + - numpy >=1.26.4,<2.0a0 + license: BSD-3-Clause + size: 150197 + timestamp: 1753312612991 +- conda: https://prefix.dev/robostack-staging/osx-arm64/ros-humble-diagnostic-msgs-4.9.0-np126py311h2a51a2c_13.conda + sha256: 18369447bd81dd6adbab47501baac0c028d8959303159398cf2f24368b26c7c0 + md5: e5d360dc51d7a9dda7ee59dd645ecf92 + depends: + - python + - ros-humble-builtin-interfaces + - ros-humble-geometry-msgs + - ros-humble-ros-workspace + - ros-humble-rosidl-default-runtime + - ros-humble-std-msgs + - ros2-distro-mutex 0.7.* humble_* + - libcxx >=18 + - __osx >=11.0 + - numpy >=1.26.4,<2.0a0 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + - python_abi 3.11.* *_cp311 + license: BSD-3-Clause + size: 129936 + timestamp: 1753311844240 +- conda: https://prefix.dev/robostack-staging/win-64/ros-humble-diagnostic-msgs-4.9.0-np126py311hd5de103_13.conda + sha256: cc0d20d5ab2c0405c52161ba90ba218af69d750ff71737a06d9bf0859034efee + md5: f9fd3917cef9cf96a71d7809163c1c7e + depends: + - python + - ros-humble-builtin-interfaces + - ros-humble-geometry-msgs + - ros-humble-ros-workspace + - ros-humble-rosidl-default-runtime + - ros-humble-std-msgs + - ros2-distro-mutex 0.7.* humble_* + - vc >=14.3,<15 + - vc14_runtime >=14.44.35208 + - ucrt >=10.0.20348.0 + - vc >=14.3,<15 + - vc14_runtime >=14.44.35208 + - ucrt >=10.0.20348.0 + - python_abi 3.11.* *_cp311 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + - numpy >=1.26.4,<2.0a0 + license: BSD-3-Clause + size: 141218 + timestamp: 1753326265950 +- conda: https://prefix.dev/robostack-staging/linux-64/ros-humble-domain-coordinator-0.10.0-np126py311hbc2a38a_13.conda + sha256: 19055d6b7c212e1a85fbc55ea65a3c195b6f4901103aedf99fd6a1acf1151358 + md5: 8932d8b6155c236c96643efaaa84a64b + depends: + - python + - ros-humble-ros-workspace + - ros2-distro-mutex 0.7.* humble_* + - libgcc >=13 + - libstdcxx >=13 + - libgcc >=13 + - __glibc >=2.17,<3.0.a0 + - numpy >=1.26.4,<2.0a0 + - python_abi 3.11.* *_cp311 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + license: BSD-3-Clause + size: 20553 + timestamp: 1753308334209 +- conda: https://prefix.dev/robostack-staging/linux-aarch64/ros-humble-domain-coordinator-0.10.0-np126py311hbdd918e_13.conda + sha256: 0ba2ba26276465a70b0d59675fd81d43f73f6b6bf0d2250279258c4e56c7b2ef + md5: b5907d10693f93069a6b5b8e35b66cff + depends: + - python + - ros-humble-ros-workspace + - ros2-distro-mutex 0.7.* humble_* + - libgcc >=13 + - libstdcxx >=13 + - libgcc >=13 + - python_abi 3.11.* *_cp311 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + - numpy >=1.26.4,<2.0a0 + license: BSD-3-Clause + size: 20397 + timestamp: 1753308438235 +- conda: https://prefix.dev/robostack-staging/osx-arm64/ros-humble-domain-coordinator-0.10.0-np126py311h2a51a2c_13.conda + sha256: 35d5082c1597cb079be637eaa2311d57ceababc3da4bb05a257939acda1ba065 + md5: e7b5b8efb7c4f5dfab1475bee9459bbc + depends: + - python + - ros-humble-ros-workspace + - ros2-distro-mutex 0.7.* humble_* + - libcxx >=18 + - __osx >=11.0 + - numpy >=1.26.4,<2.0a0 + - python_abi 3.11.* *_cp311 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + license: BSD-3-Clause + size: 20680 + timestamp: 1753308639842 +- conda: https://prefix.dev/robostack-staging/win-64/ros-humble-domain-coordinator-0.10.0-np126py311hd5de103_13.conda + sha256: c22c3921ace4a60d2ab2efa598c71625316b68cc9eb660a56bf29ec7d8e98917 + md5: f5fc0dee43393873f3d4d3c1a881a58c + depends: + - python + - ros-humble-ros-workspace + - ros2-distro-mutex 0.7.* humble_* + - vc >=14.3,<15 + - vc14_runtime >=14.44.35208 + - ucrt >=10.0.20348.0 + - vc >=14.3,<15 + - vc14_runtime >=14.44.35208 + - ucrt >=10.0.20348.0 + - python_abi 3.11.* *_cp311 + - numpy >=1.26.4,<2.0a0 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + license: BSD-3-Clause + size: 17464 + timestamp: 1753312127526 +- conda: https://prefix.dev/robostack-staging/linux-64/ros-humble-dummy-map-server-0.20.5-np126py311hbc2a38a_13.conda + sha256: 861f97b6e2d2512c33c9744476f2151bb2c932ae585a3c39ffd74c7af06b620d + md5: 1e01edf6b6de33df64aef13847c2628f + depends: + - python + - ros-humble-nav-msgs + - ros-humble-rclcpp + - ros-humble-ros-workspace + - ros2-distro-mutex 0.7.* humble_* + - libstdcxx >=13 + - libgcc >=13 + - __glibc >=2.17,<3.0.a0 + - libgcc >=13 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + - python_abi 3.11.* *_cp311 + - numpy >=1.26.4,<2.0a0 + license: BSD-3-Clause + size: 84896 + timestamp: 1753313170614 +- conda: https://prefix.dev/robostack-staging/linux-aarch64/ros-humble-dummy-map-server-0.20.5-np126py311hbdd918e_13.conda + sha256: b75005bcce45a6e884f100308911b634a02cd5aec0dbc459190a6fdb5000b2b7 + md5: 13f6baeeaae28b4705c7a4efadaf90dc + depends: + - python + - ros-humble-nav-msgs + - ros-humble-rclcpp + - ros-humble-ros-workspace + - ros2-distro-mutex 0.7.* humble_* + - libstdcxx >=13 + - libgcc >=13 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + - python_abi 3.11.* *_cp311 + - numpy >=1.26.4,<2.0a0 + license: BSD-3-Clause + size: 90919 + timestamp: 1753313417044 +- conda: https://prefix.dev/robostack-staging/osx-arm64/ros-humble-dummy-map-server-0.20.5-np126py311h2a51a2c_13.conda + sha256: 3384cf854110148c45fbc10aedad4b5b18949905ff79c5133528abd6e02a1734 + md5: f59f18fdc80f8d7f7dd911e0df51c939 + depends: + - python + - ros-humble-nav-msgs + - ros-humble-rclcpp + - ros-humble-ros-workspace + - ros2-distro-mutex 0.7.* humble_* + - __osx >=11.0 + - libcxx >=18 + - python_abi 3.11.* *_cp311 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + - numpy >=1.26.4,<2.0a0 + license: BSD-3-Clause + size: 79484 + timestamp: 1753313011971 +- conda: https://prefix.dev/robostack-staging/win-64/ros-humble-dummy-map-server-0.20.5-np126py311hd5de103_13.conda + sha256: 7b1bdcd3e10adcd6e7e2cd963d66990a17a03bbf659026c1d4c7b355430b37c7 + md5: 7cfe48c08386ca67d58cf0ccf1c64697 + depends: + - python + - ros-humble-nav-msgs + - ros-humble-rclcpp + - ros-humble-ros-workspace + - ros2-distro-mutex 0.7.* humble_* + - vc >=14.3,<15 + - vc14_runtime >=14.44.35208 + - ucrt >=10.0.20348.0 + - vc >=14.3,<15 + - vc14_runtime >=14.44.35208 + - ucrt >=10.0.20348.0 + - numpy >=1.26.4,<2.0a0 + - python_abi 3.11.* *_cp311 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + license: BSD-3-Clause + size: 71387 + timestamp: 1753331642362 +- conda: https://prefix.dev/robostack-staging/linux-64/ros-humble-dummy-robot-bringup-0.20.5-np126py311hbc2a38a_13.conda + sha256: 1cbc4df33040cf256a2c642145c9b21122005eb9a62386f25a79367704a6861a + md5: 4c9216a8c1708990c5e1de9aaa5c2e97 + depends: + - python + - ros-humble-ament-index-python + - ros-humble-dummy-map-server + - ros-humble-dummy-sensors + - ros-humble-launch + - ros-humble-launch-ros + - ros-humble-robot-state-publisher + - ros-humble-ros-workspace + - ros2-distro-mutex 0.7.* humble_* + - libstdcxx >=13 + - libgcc >=13 + - __glibc >=2.17,<3.0.a0 + - libgcc >=13 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + - numpy >=1.26.4,<2.0a0 + - python_abi 3.11.* *_cp311 + license: BSD-3-Clause + size: 29996 + timestamp: 1753314306216 +- conda: https://prefix.dev/robostack-staging/linux-aarch64/ros-humble-dummy-robot-bringup-0.20.5-np126py311hbdd918e_13.conda + sha256: 46e17fb550dbc25eaf67660f50aec00a31606e91f23f88fb403c67ad81622812 + md5: bea8d892e2371a4e1132f474dc8b4eb5 + depends: + - python + - ros-humble-ament-index-python + - ros-humble-dummy-map-server + - ros-humble-dummy-sensors + - ros-humble-launch + - ros-humble-launch-ros + - ros-humble-robot-state-publisher + - ros-humble-ros-workspace + - ros2-distro-mutex 0.7.* humble_* + - libstdcxx >=13 + - libgcc >=13 + - numpy >=1.26.4,<2.0a0 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + - python_abi 3.11.* *_cp311 + license: BSD-3-Clause + size: 29898 + timestamp: 1753314363771 +- conda: https://prefix.dev/robostack-staging/osx-arm64/ros-humble-dummy-robot-bringup-0.20.5-np126py311h2a51a2c_13.conda + sha256: 3acff50c71f1683e4a7022f48abc45e83be4b4ff966deadde96b627847f08b70 + md5: 34c1075afcb398717c892389b2af23d9 + depends: + - python + - ros-humble-ament-index-python + - ros-humble-dummy-map-server + - ros-humble-dummy-sensors + - ros-humble-launch + - ros-humble-launch-ros + - ros-humble-robot-state-publisher + - ros-humble-ros-workspace + - ros2-distro-mutex 0.7.* humble_* + - __osx >=11.0 + - libcxx >=18 + - python_abi 3.11.* *_cp311 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + - numpy >=1.26.4,<2.0a0 + license: BSD-3-Clause + size: 30153 + timestamp: 1753314988807 +- conda: https://prefix.dev/robostack-staging/win-64/ros-humble-dummy-robot-bringup-0.20.5-np126py311hd5de103_13.conda + sha256: b13364e0260670d8e7b62de84b9be8937968454956fe4714d05a713b553a67ae + md5: cc91139f289575f66112eb8d4a0ff63d + depends: + - python + - ros-humble-ament-index-python + - ros-humble-dummy-map-server + - ros-humble-dummy-sensors + - ros-humble-launch + - ros-humble-launch-ros + - ros-humble-robot-state-publisher + - ros-humble-ros-workspace + - ros2-distro-mutex 0.7.* humble_* + - vc >=14.3,<15 + - vc14_runtime >=14.44.35208 + - ucrt >=10.0.20348.0 + - vc >=14.3,<15 + - vc14_runtime >=14.44.35208 + - ucrt >=10.0.20348.0 + - numpy >=1.26.4,<2.0a0 + - python_abi 3.11.* *_cp311 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + license: BSD-3-Clause + size: 26745 + timestamp: 1753337527334 +- conda: https://prefix.dev/robostack-staging/linux-64/ros-humble-dummy-sensors-0.20.5-np126py311hbc2a38a_13.conda + sha256: 679976bd235253d08aaadd95bb95c4fe13d76fb9e085e4a26e312dba9c56198d + md5: e287295a20efe7ff5cb6a2fa6c335bfc + depends: + - python + - ros-humble-rclcpp + - ros-humble-ros-workspace + - ros-humble-sensor-msgs + - ros2-distro-mutex 0.7.* humble_* + - __glibc >=2.17,<3.0.a0 + - libstdcxx >=13 + - libgcc >=13 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + - python_abi 3.11.* *_cp311 + - numpy >=1.26.4,<2.0a0 + license: BSD-3-Clause + size: 112932 + timestamp: 1753313157081 +- conda: https://prefix.dev/robostack-staging/linux-aarch64/ros-humble-dummy-sensors-0.20.5-np126py311hbdd918e_13.conda + sha256: 90e42513359b03b71bbd325c4b5a69448b6fb34601cc5685c9ef83b530624cc2 + md5: d2021edfc64daeb0027d505a76f6b936 + depends: + - python + - ros-humble-rclcpp + - ros-humble-ros-workspace + - ros-humble-sensor-msgs + - ros2-distro-mutex 0.7.* humble_* + - libstdcxx >=13 + - libgcc >=13 + - python_abi 3.11.* *_cp311 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + - numpy >=1.26.4,<2.0a0 + license: BSD-3-Clause + size: 112522 + timestamp: 1753313401803 +- conda: https://prefix.dev/robostack-staging/osx-arm64/ros-humble-dummy-sensors-0.20.5-np126py311h2a51a2c_13.conda + sha256: 69b781c785941e30e853885d5b3ff5d2c174189e15959be644f1b3956f0bad91 + md5: 7ca30578b96e25737f5ea6a1c5ad220d + depends: + - python + - ros-humble-rclcpp + - ros-humble-ros-workspace + - ros-humble-sensor-msgs + - ros2-distro-mutex 0.7.* humble_* + - __osx >=11.0 + - libcxx >=18 + - python_abi 3.11.* *_cp311 + - numpy >=1.26.4,<2.0a0 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + license: BSD-3-Clause + size: 102469 + timestamp: 1753312987315 +- conda: https://prefix.dev/robostack-staging/win-64/ros-humble-dummy-sensors-0.20.5-np126py311hd5de103_13.conda + sha256: 33d525bf9226ef93de3f337f6f3f8f6ab42a74acc6282f622b44aca1e747bc4e + md5: 1db0dcf92da4cca36ef6efd3b32e02a2 + depends: + - python + - ros-humble-rclcpp + - ros-humble-ros-workspace + - ros-humble-sensor-msgs + - ros2-distro-mutex 0.7.* humble_* + - vc >=14.3,<15 + - vc14_runtime >=14.44.35208 + - ucrt >=10.0.20348.0 + - vc >=14.3,<15 + - vc14_runtime >=14.44.35208 + - ucrt >=10.0.20348.0 + - python_abi 3.11.* *_cp311 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + - numpy >=1.26.4,<2.0a0 + license: BSD-3-Clause + size: 87320 + timestamp: 1753331525216 +- conda: https://prefix.dev/robostack-staging/linux-64/ros-humble-eigen3-cmake-module-0.1.1-np126py311hbc2a38a_13.conda + sha256: ef7e772043a33a602061362bff749dc630516816f7f11075dfb8410f3c1887ab + md5: c3d764141fe3ca6b22b9d68c4a814d0d + depends: + - python + - ros-humble-ros-workspace + - ros2-distro-mutex 0.7.* humble_* + - __glibc >=2.17,<3.0.a0 + - libgcc >=13 + - libstdcxx >=13 + - libgcc >=13 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + - numpy >=1.26.4,<2.0a0 + - python_abi 3.11.* *_cp311 + license: BSD-3-Clause + size: 23396 + timestamp: 1753309032963 +- conda: https://prefix.dev/robostack-staging/linux-aarch64/ros-humble-eigen3-cmake-module-0.1.1-np126py311hbdd918e_13.conda + sha256: 13fa7471a8c8f56af861c85cdd1a913b19ccfbd3043d8e7a43a86204b7996def + md5: d47f0030b4cdcfe4dd8ed634cac2ecaf + depends: + - python + - ros-humble-ros-workspace + - ros2-distro-mutex 0.7.* humble_* + - libstdcxx >=13 + - libgcc >=13 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + - numpy >=1.26.4,<2.0a0 + - python_abi 3.11.* *_cp311 + license: BSD-3-Clause + size: 23220 + timestamp: 1753309029255 +- conda: https://prefix.dev/robostack-staging/osx-arm64/ros-humble-eigen3-cmake-module-0.1.1-np126py311h2a51a2c_13.conda + sha256: 2218677e507799d453807f8b79fd5e93077292d3bc71daade55a1fbc436e35f8 + md5: 7dd0bc1a974514a2f101788b6507250d + depends: + - python + - ros-humble-ros-workspace + - ros2-distro-mutex 0.7.* humble_* + - libcxx >=18 + - __osx >=11.0 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + - numpy >=1.26.4,<2.0a0 + - python_abi 3.11.* *_cp311 + license: BSD-3-Clause + size: 23539 + timestamp: 1753309346954 +- conda: https://prefix.dev/robostack-staging/win-64/ros-humble-eigen3-cmake-module-0.1.1-np126py311hd5de103_13.conda + sha256: 1de8a8de2c539df4a41531514e33b6fd6a07429731aeedd35c086a322f321bb3 + md5: cb051696679dfb7e784cd69ba24dc887 + depends: + - python + - ros-humble-ros-workspace + - ros2-distro-mutex 0.7.* humble_* + - vc >=14.3,<15 + - vc14_runtime >=14.44.35208 + - ucrt >=10.0.20348.0 + - vc >=14.3,<15 + - vc14_runtime >=14.44.35208 + - ucrt >=10.0.20348.0 + - numpy >=1.26.4,<2.0a0 + - python_abi 3.11.* *_cp311 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + license: BSD-3-Clause + size: 20120 + timestamp: 1753315281985 +- conda: https://prefix.dev/robostack-staging/linux-64/ros-humble-example-interfaces-0.9.3-np126py311hbc2a38a_13.conda + sha256: e3d368a21f5f2b4aa80daaa9452fab917e424fdeaebddfd2d4f26f97278d222e + md5: 7dffea7c03cd0729d52a541128c0214a + depends: + - python + - ros-humble-action-msgs + - ros-humble-ros-workspace + - ros-humble-rosidl-default-runtime + - ros2-distro-mutex 0.7.* humble_* + - libgcc >=13 + - __glibc >=2.17,<3.0.a0 + - libstdcxx >=13 + - libgcc >=13 + - python_abi 3.11.* *_cp311 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + - numpy >=1.26.4,<2.0a0 + license: BSD-3-Clause + size: 375780 + timestamp: 1753312058439 +- conda: https://prefix.dev/robostack-staging/linux-aarch64/ros-humble-example-interfaces-0.9.3-np126py311hbdd918e_13.conda + sha256: 830d7ee4280392ce982f929e22d871a6c9e78d53d65de9e8f59ff97ac4ad4316 + md5: a7731b255ee6bddb97cfa1315d7e19be + depends: + - python + - ros-humble-action-msgs + - ros-humble-ros-workspace + - ros-humble-rosidl-default-runtime + - ros2-distro-mutex 0.7.* humble_* + - libstdcxx >=13 + - libgcc >=13 + - python_abi 3.11.* *_cp311 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + - numpy >=1.26.4,<2.0a0 + license: BSD-3-Clause + size: 382184 + timestamp: 1753312513588 +- conda: https://prefix.dev/robostack-staging/osx-arm64/ros-humble-example-interfaces-0.9.3-np126py311h2a51a2c_13.conda + sha256: e929c7bedd338a61f8ce041cbfbac97b7acf01fa1ffb096f38d1506e7490d62f + md5: 25a88c4db8583dc318bfddfc6f57bc8b + depends: + - python + - ros-humble-action-msgs + - ros-humble-ros-workspace + - ros-humble-rosidl-default-runtime + - ros2-distro-mutex 0.7.* humble_* + - __osx >=11.0 + - libcxx >=18 + - numpy >=1.26.4,<2.0a0 + - python_abi 3.11.* *_cp311 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + license: BSD-3-Clause + size: 318730 + timestamp: 1753311455084 +- conda: https://prefix.dev/robostack-staging/win-64/ros-humble-example-interfaces-0.9.3-np126py311hd5de103_13.conda + sha256: 848c1991c1ca493dcfb08d9249cf91c0e52770d02f3a931f67800deba39e5194 + md5: 5056e3f6cca21c35ae300b1d797b6484 + depends: + - python + - ros-humble-action-msgs + - ros-humble-ros-workspace + - ros-humble-rosidl-default-runtime + - ros2-distro-mutex 0.7.* humble_* + - vc >=14.3,<15 + - vc14_runtime >=14.44.35208 + - ucrt >=10.0.20348.0 + - vc >=14.3,<15 + - vc14_runtime >=14.44.35208 + - ucrt >=10.0.20348.0 + - python_abi 3.11.* *_cp311 + - numpy >=1.26.4,<2.0a0 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + license: BSD-3-Clause + size: 327636 + timestamp: 1753325768966 +- conda: https://prefix.dev/robostack-staging/linux-64/ros-humble-examples-rclcpp-minimal-action-client-0.15.3-np126py311hbc2a38a_13.conda + sha256: 381668f6ecbfc1d0f7ea366cd6bfedab6cca6081932530b8ed781b2dfa50f9f5 + md5: 059f6b6edd03b90c21bf6d1416f0d23d + depends: + - python + - ros-humble-example-interfaces + - ros-humble-rclcpp + - ros-humble-rclcpp-action + - ros-humble-ros-workspace + - ros2-distro-mutex 0.7.* humble_* + - __glibc >=2.17,<3.0.a0 + - libstdcxx >=13 + - libgcc >=13 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + - python_abi 3.11.* *_cp311 + - numpy >=1.26.4,<2.0a0 + license: BSD-3-Clause + size: 147897 + timestamp: 1753313481159 +- conda: https://prefix.dev/robostack-staging/linux-aarch64/ros-humble-examples-rclcpp-minimal-action-client-0.15.3-np126py311hbdd918e_13.conda + sha256: 8c634e659927bfb3804e9e8b9f54f54e866e62a6042710f97439b00e8f8eab4d + md5: bbfd877e09000fecd515a1ae50eced02 + depends: + - python + - ros-humble-example-interfaces + - ros-humble-rclcpp + - ros-humble-rclcpp-action + - ros-humble-ros-workspace + - ros2-distro-mutex 0.7.* humble_* + - libstdcxx >=13 + - libgcc >=13 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + - numpy >=1.26.4,<2.0a0 + - python_abi 3.11.* *_cp311 + license: BSD-3-Clause + size: 152806 + timestamp: 1753313637460 +- conda: https://prefix.dev/robostack-staging/osx-arm64/ros-humble-examples-rclcpp-minimal-action-client-0.15.3-np126py311h2a51a2c_13.conda + sha256: 9a55a71154b2ba433ac68431ce3e6f8bb05455547fac9867f754a36b80f1fc99 + md5: cf81a4164d3b273d66ff1d04897738a6 + depends: + - python + - ros-humble-example-interfaces + - ros-humble-rclcpp + - ros-humble-rclcpp-action + - ros-humble-ros-workspace + - ros2-distro-mutex 0.7.* humble_* + - libcxx >=18 + - __osx >=11.0 + - python_abi 3.11.* *_cp311 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + - numpy >=1.26.4,<2.0a0 + license: BSD-3-Clause + size: 111185 + timestamp: 1753313631341 +- conda: https://prefix.dev/robostack-staging/win-64/ros-humble-examples-rclcpp-minimal-action-client-0.15.3-np126py311hd5de103_13.conda + sha256: 981bf1efa2dc90540ea38111fb553dad2ef6ea044e68365d40a65189b57cafca + md5: 7f0a27935bd16a02be6a1368fa34f78c + depends: + - python + - ros-humble-example-interfaces + - ros-humble-rclcpp + - ros-humble-rclcpp-action + - ros-humble-ros-workspace + - ros2-distro-mutex 0.7.* humble_* + - vc >=14.3,<15 + - vc14_runtime >=14.44.35208 + - ucrt >=10.0.20348.0 + - vc >=14.3,<15 + - vc14_runtime >=14.44.35208 + - ucrt >=10.0.20348.0 + - numpy >=1.26.4,<2.0a0 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + - python_abi 3.11.* *_cp311 + license: BSD-3-Clause + size: 108965 + timestamp: 1753333672610 +- conda: https://prefix.dev/robostack-staging/linux-64/ros-humble-examples-rclcpp-minimal-action-server-0.15.3-np126py311hbc2a38a_13.conda + sha256: a47a779b1d8c808a2887444b6ac87ef62d85a1f0b5ddc5b8d65bcb1a2ca2f867 + md5: 1d3959bef27bc6da9fcd0051f837ba06 + depends: + - python + - ros-humble-example-interfaces + - ros-humble-rclcpp + - ros-humble-rclcpp-action + - ros-humble-ros-workspace + - ros2-distro-mutex 0.7.* humble_* + - libgcc >=13 + - libstdcxx >=13 + - libgcc >=13 + - __glibc >=2.17,<3.0.a0 + - python_abi 3.11.* *_cp311 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + - numpy >=1.26.4,<2.0a0 + license: BSD-3-Clause + size: 84863 + timestamp: 1753313625712 +- conda: https://prefix.dev/robostack-staging/linux-aarch64/ros-humble-examples-rclcpp-minimal-action-server-0.15.3-np126py311hbdd918e_13.conda + sha256: ab5e275e3e57979819893920dd540a734e3e2d41a232b085b5645dfbc773424b + md5: ab2a651c55fe16b75aef5ae165476565 + depends: + - python + - ros-humble-example-interfaces + - ros-humble-rclcpp + - ros-humble-rclcpp-action + - ros-humble-ros-workspace + - ros2-distro-mutex 0.7.* humble_* + - libgcc >=13 + - libstdcxx >=13 + - libgcc >=13 + - python_abi 3.11.* *_cp311 + - numpy >=1.26.4,<2.0a0 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + license: BSD-3-Clause + size: 90360 + timestamp: 1753313760128 +- conda: https://prefix.dev/robostack-staging/osx-arm64/ros-humble-examples-rclcpp-minimal-action-server-0.15.3-np126py311h2a51a2c_13.conda + sha256: e1b7a3c002fc8758e9cb2ae7b885e25c510406fe47fa03b423e09033b215e8fc + md5: cc973343e0cee346aefba8942f71bdd4 + depends: + - python + - ros-humble-example-interfaces + - ros-humble-rclcpp + - ros-humble-rclcpp-action + - ros-humble-ros-workspace + - ros2-distro-mutex 0.7.* humble_* + - libcxx >=18 + - __osx >=11.0 + - python_abi 3.11.* *_cp311 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + - numpy >=1.26.4,<2.0a0 + license: BSD-3-Clause + size: 74234 + timestamp: 1753313620474 +- conda: https://prefix.dev/robostack-staging/win-64/ros-humble-examples-rclcpp-minimal-action-server-0.15.3-np126py311hd5de103_13.conda + sha256: 8e2d0ac8cc205c258ef1e21879dc932dda4b0b30e08cf6a2e74add29d8f1e262 + md5: 7b2c95361fd2e6afad8561fec960b826 + depends: + - python + - ros-humble-example-interfaces + - ros-humble-rclcpp + - ros-humble-rclcpp-action + - ros-humble-ros-workspace + - ros2-distro-mutex 0.7.* humble_* + - vc >=14.3,<15 + - vc14_runtime >=14.44.35208 + - ucrt >=10.0.20348.0 + - vc >=14.3,<15 + - vc14_runtime >=14.44.35208 + - ucrt >=10.0.20348.0 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + - python_abi 3.11.* *_cp311 + - numpy >=1.26.4,<2.0a0 + license: BSD-3-Clause + size: 64678 + timestamp: 1753333613613 +- conda: https://prefix.dev/robostack-staging/linux-64/ros-humble-examples-rclcpp-minimal-client-0.15.3-np126py311hbc2a38a_13.conda + sha256: f62986a32cef8f7a12d0ef0574460227dec7d7cabcf73dc56959adcae1f2ce37 + md5: 8542bd38008381d5a41d5cf0436df6ca + depends: + - python + - ros-humble-example-interfaces + - ros-humble-rclcpp + - ros-humble-ros-workspace + - ros2-distro-mutex 0.7.* humble_* + - libgcc >=13 + - __glibc >=2.17,<3.0.a0 + - libstdcxx >=13 + - libgcc >=13 + - numpy >=1.26.4,<2.0a0 + - python_abi 3.11.* *_cp311 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + license: BSD-3-Clause + size: 64683 + timestamp: 1753313179465 +- conda: https://prefix.dev/robostack-staging/linux-aarch64/ros-humble-examples-rclcpp-minimal-client-0.15.3-np126py311hbdd918e_13.conda + sha256: f76211bc4f7fcf6931d5359d591f6ff438abad3fbd17f3d42b014808553a6388 + md5: 13674e243a20c0652c89758dfa1ffb24 + depends: + - python + - ros-humble-example-interfaces + - ros-humble-rclcpp + - ros-humble-ros-workspace + - ros2-distro-mutex 0.7.* humble_* + - libstdcxx >=13 + - libgcc >=13 + - numpy >=1.26.4,<2.0a0 + - python_abi 3.11.* *_cp311 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + license: BSD-3-Clause + size: 66105 + timestamp: 1753313414663 +- conda: https://prefix.dev/robostack-staging/osx-arm64/ros-humble-examples-rclcpp-minimal-client-0.15.3-np126py311h2a51a2c_13.conda + sha256: 0e40b56cc631d79151937204b839ea8ad7d0bc1de4118da91fa5d53fd3ade45f + md5: 66fa3a71d13329111273eaafa50d6e72 + depends: + - python + - ros-humble-example-interfaces + - ros-humble-rclcpp + - ros-humble-ros-workspace + - ros2-distro-mutex 0.7.* humble_* + - libcxx >=18 + - __osx >=11.0 + - numpy >=1.26.4,<2.0a0 + - python_abi 3.11.* *_cp311 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + license: BSD-3-Clause + size: 53251 + timestamp: 1753313038458 +- conda: https://prefix.dev/robostack-staging/win-64/ros-humble-examples-rclcpp-minimal-client-0.15.3-np126py311hd5de103_13.conda + sha256: c357662fc51cdc3cb02e9f7f9dccc62cac71cf590184ea78853877a3ff24bc87 + md5: 28106e98c40834624599590971ab1196 + depends: + - python + - ros-humble-example-interfaces + - ros-humble-rclcpp + - ros-humble-ros-workspace + - ros2-distro-mutex 0.7.* humble_* + - vc >=14.3,<15 + - vc14_runtime >=14.44.35208 + - ucrt >=10.0.20348.0 + - vc >=14.3,<15 + - vc14_runtime >=14.44.35208 + - ucrt >=10.0.20348.0 + - numpy >=1.26.4,<2.0a0 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + - python_abi 3.11.* *_cp311 + license: BSD-3-Clause + size: 52213 + timestamp: 1753331177752 +- conda: https://prefix.dev/robostack-staging/linux-64/ros-humble-examples-rclcpp-minimal-composition-0.15.3-np126py311hbc2a38a_13.conda + sha256: 38a033751aeb5b1cc28cfeb941f3cf7a8a7c169d9bca6871496c8ea7352ffc66 + md5: 9e53139f3e8faffda128349587f7e8de + depends: + - python + - ros-humble-rclcpp + - ros-humble-rclcpp-components + - ros-humble-ros-workspace + - ros-humble-std-msgs + - ros2-distro-mutex 0.7.* humble_* + - libgcc >=13 + - libstdcxx >=13 + - libgcc >=13 + - __glibc >=2.17,<3.0.a0 + - python_abi 3.11.* *_cp311 + - numpy >=1.26.4,<2.0a0 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + license: BSD-3-Clause + size: 187593 + timestamp: 1753313607245 +- conda: https://prefix.dev/robostack-staging/linux-aarch64/ros-humble-examples-rclcpp-minimal-composition-0.15.3-np126py311hbdd918e_13.conda + sha256: cdd38ec56649a8e3e06618693ac024fd5565bc97a051550dfb815b1a62c9aab5 + md5: e4e9616d171a13ebb98f27d416be35c2 + depends: + - python + - ros-humble-rclcpp + - ros-humble-rclcpp-components + - ros-humble-ros-workspace + - ros-humble-std-msgs + - ros2-distro-mutex 0.7.* humble_* + - libstdcxx >=13 + - libgcc >=13 + - numpy >=1.26.4,<2.0a0 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + - python_abi 3.11.* *_cp311 + license: BSD-3-Clause + size: 183985 + timestamp: 1753313742933 +- conda: https://prefix.dev/robostack-staging/osx-arm64/ros-humble-examples-rclcpp-minimal-composition-0.15.3-np126py311h2a51a2c_13.conda + sha256: fbf64641da953982036e13f9cba92207633d5f18866c3ff1db55bfefcadb97ca + md5: b25be0ab5db9bb2377a7092bed5b10b3 + depends: + - python + - ros-humble-rclcpp + - ros-humble-rclcpp-components + - ros-humble-ros-workspace + - ros-humble-std-msgs + - ros2-distro-mutex 0.7.* humble_* + - libcxx >=18 + - __osx >=11.0 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + - python_abi 3.11.* *_cp311 + - numpy >=1.26.4,<2.0a0 + license: BSD-3-Clause + size: 148649 + timestamp: 1753313606047 +- conda: https://prefix.dev/robostack-staging/win-64/ros-humble-examples-rclcpp-minimal-composition-0.15.3-np126py311hd5de103_13.conda + sha256: c83f185dd9ae550e4731d9bb11e45a8ecd7e5c08f652ad0d8c6acc38f5e76874 + md5: bbbfd487bd496660966f23f6c8961dfa + depends: + - python + - ros-humble-rclcpp + - ros-humble-rclcpp-components + - ros-humble-ros-workspace + - ros-humble-std-msgs + - ros2-distro-mutex 0.7.* humble_* + - vc >=14.3,<15 + - vc14_runtime >=14.44.35208 + - ucrt >=10.0.20348.0 + - vc >=14.3,<15 + - vc14_runtime >=14.44.35208 + - ucrt >=10.0.20348.0 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + - numpy >=1.26.4,<2.0a0 + - python_abi 3.11.* *_cp311 + license: BSD-3-Clause + size: 123710 + timestamp: 1753333539929 +- conda: https://prefix.dev/robostack-staging/linux-64/ros-humble-examples-rclcpp-minimal-publisher-0.15.3-np126py311hbc2a38a_13.conda + sha256: 966297f7533bbfbff301a12907e6a09bbabbdd71854813237aba5a18cc78579b + md5: ba8f47101cf560d6e4c438a07e5032dd + depends: + - python + - ros-humble-rclcpp + - ros-humble-ros-workspace + - ros-humble-std-msgs + - ros2-distro-mutex 0.7.* humble_* + - libgcc >=13 + - libstdcxx >=13 + - libgcc >=13 + - __glibc >=2.17,<3.0.a0 + - numpy >=1.26.4,<2.0a0 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + - python_abi 3.11.* *_cp311 + license: BSD-3-Clause + size: 191089 + timestamp: 1753313161100 +- conda: https://prefix.dev/robostack-staging/linux-aarch64/ros-humble-examples-rclcpp-minimal-publisher-0.15.3-np126py311hbdd918e_13.conda + sha256: 1e65c481f178c05ac5decf842e1e3bd97c5346c2fd6a70faae4cf6a3b4a3607a + md5: 7c3b0731cfa93e5ed945d9d1e3e94fc9 + depends: + - python + - ros-humble-rclcpp + - ros-humble-ros-workspace + - ros-humble-std-msgs + - ros2-distro-mutex 0.7.* humble_* + - libstdcxx >=13 + - libgcc >=13 + - python_abi 3.11.* *_cp311 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + - numpy >=1.26.4,<2.0a0 + license: BSD-3-Clause + size: 198670 + timestamp: 1753313400828 +- conda: https://prefix.dev/robostack-staging/osx-arm64/ros-humble-examples-rclcpp-minimal-publisher-0.15.3-np126py311h2a51a2c_13.conda + sha256: a150e2d8b06ce0bc3bbd7d6197f505fe93eb841eac7f59246b3b18f52de4aaf6 + md5: eb7fb19bf4fb4736d1511041ee3c8f87 + depends: + - python + - ros-humble-rclcpp + - ros-humble-ros-workspace + - ros-humble-std-msgs + - ros2-distro-mutex 0.7.* humble_* + - __osx >=11.0 + - libcxx >=18 + - numpy >=1.26.4,<2.0a0 + - python_abi 3.11.* *_cp311 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + license: BSD-3-Clause + size: 164167 + timestamp: 1753313019824 +- conda: https://prefix.dev/robostack-staging/win-64/ros-humble-examples-rclcpp-minimal-publisher-0.15.3-np126py311hd5de103_13.conda + sha256: 39bcce8833dd4ffb8b0b12a6015eff28f28e4b194b8a75f55b548ec9a30c2420 + md5: 414fc69bee78b5674835cd1e2f40213f + depends: + - python + - ros-humble-rclcpp + - ros-humble-ros-workspace + - ros-humble-std-msgs + - ros2-distro-mutex 0.7.* humble_* + - vc >=14.3,<15 + - vc14_runtime >=14.44.35208 + - ucrt >=10.0.20348.0 + - vc >=14.3,<15 + - vc14_runtime >=14.44.35208 + - ucrt >=10.0.20348.0 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + - numpy >=1.26.4,<2.0a0 + - python_abi 3.11.* *_cp311 + license: BSD-3-Clause + size: 149582 + timestamp: 1753331558783 +- conda: https://prefix.dev/robostack-staging/linux-64/ros-humble-examples-rclcpp-minimal-service-0.15.3-np126py311hbc2a38a_13.conda + sha256: 68544c37d8ca0c15423cc1966d5ce92623b969c444f29a143e9b85ac1eb1d510 + md5: 6c331bab4632d2094b3359cba92da49d + depends: + - python + - ros-humble-example-interfaces + - ros-humble-rclcpp + - ros-humble-ros-workspace + - ros2-distro-mutex 0.7.* humble_* + - libstdcxx >=13 + - libgcc >=13 + - __glibc >=2.17,<3.0.a0 + - libgcc >=13 + - python_abi 3.11.* *_cp311 + - numpy >=1.26.4,<2.0a0 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + license: BSD-3-Clause + size: 57976 + timestamp: 1753313149827 +- conda: https://prefix.dev/robostack-staging/linux-aarch64/ros-humble-examples-rclcpp-minimal-service-0.15.3-np126py311hbdd918e_13.conda + sha256: 05aa38bdb5859ca4fa1f3e42791192544bebc6a2f0c8d19a7f33697925da548f + md5: 6cfe0a0d1968cfe0a2f058a876853550 + depends: + - python + - ros-humble-example-interfaces + - ros-humble-rclcpp + - ros-humble-ros-workspace + - ros2-distro-mutex 0.7.* humble_* + - libgcc >=13 + - libstdcxx >=13 + - libgcc >=13 + - python_abi 3.11.* *_cp311 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + - numpy >=1.26.4,<2.0a0 + license: BSD-3-Clause + size: 58869 + timestamp: 1753313391077 +- conda: https://prefix.dev/robostack-staging/osx-arm64/ros-humble-examples-rclcpp-minimal-service-0.15.3-np126py311h2a51a2c_13.conda + sha256: eb2b1b43fc31bb3c096641618c84fc8a4eb2584774f2d8955f850a13e9a56ec6 + md5: 4810d9539f0b56e35ee6fa4b3a125442 + depends: + - python + - ros-humble-example-interfaces + - ros-humble-rclcpp + - ros-humble-ros-workspace + - ros2-distro-mutex 0.7.* humble_* + - __osx >=11.0 + - libcxx >=18 + - numpy >=1.26.4,<2.0a0 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + - python_abi 3.11.* *_cp311 + license: BSD-3-Clause + size: 51242 + timestamp: 1753312996019 +- conda: https://prefix.dev/robostack-staging/win-64/ros-humble-examples-rclcpp-minimal-service-0.15.3-np126py311hd5de103_13.conda + sha256: 0e4350ec780a3762ba79a198e1a531a108eb15da558e3f9b8ce82d58a5619f5e + md5: cb1ffd9a4cbed69ac711d4ffe00ffeb5 + depends: + - python + - ros-humble-example-interfaces + - ros-humble-rclcpp + - ros-humble-ros-workspace + - ros2-distro-mutex 0.7.* humble_* + - vc >=14.3,<15 + - vc14_runtime >=14.44.35208 + - ucrt >=10.0.20348.0 + - vc >=14.3,<15 + - vc14_runtime >=14.44.35208 + - ucrt >=10.0.20348.0 + - python_abi 3.11.* *_cp311 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + - numpy >=1.26.4,<2.0a0 + license: BSD-3-Clause + size: 46766 + timestamp: 1753331500127 +- conda: https://prefix.dev/robostack-staging/linux-64/ros-humble-examples-rclcpp-minimal-subscriber-0.15.3-np126py311hbc2a38a_13.conda + sha256: c26d39c5d5ac5e48a7717d86ebf8ddbf3ce3fee6491a1599d0937c8fbd634c7d + md5: 0c42a2350c1e94f4b5c7297b5dc875c1 + depends: + - python + - ros-humble-rclcpp + - ros-humble-rclcpp-components + - ros-humble-ros-workspace + - ros-humble-std-msgs + - ros2-distro-mutex 0.7.* humble_* + - __glibc >=2.17,<3.0.a0 + - libgcc >=13 + - libstdcxx >=13 + - libgcc >=13 + - python_abi 3.11.* *_cp311 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + - numpy >=1.26.4,<2.0a0 + license: BSD-3-Clause + size: 549757 + timestamp: 1753313555102 +- conda: https://prefix.dev/robostack-staging/linux-aarch64/ros-humble-examples-rclcpp-minimal-subscriber-0.15.3-np126py311hbdd918e_13.conda + sha256: e29654666687054e04a8082345650640abb306b23fce713e0554fe45f1127a38 + md5: 8d4d156ceddfe29969e43e3c17d57512 + depends: + - python + - ros-humble-rclcpp + - ros-humble-rclcpp-components + - ros-humble-ros-workspace + - ros-humble-std-msgs + - ros2-distro-mutex 0.7.* humble_* + - libstdcxx >=13 + - libgcc >=13 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + - numpy >=1.26.4,<2.0a0 + - python_abi 3.11.* *_cp311 + license: BSD-3-Clause + size: 569438 + timestamp: 1753313702782 +- conda: https://prefix.dev/robostack-staging/osx-arm64/ros-humble-examples-rclcpp-minimal-subscriber-0.15.3-np126py311h2a51a2c_13.conda + sha256: f3f3b9675e0208e0a2cc971a67317e8cebc265d88a6a6c42fed383e5cbeda00b + md5: dd73a7ad74fdf456d690ae5ce01bae3a + depends: + - python + - ros-humble-rclcpp + - ros-humble-rclcpp-components + - ros-humble-ros-workspace + - ros-humble-std-msgs + - ros2-distro-mutex 0.7.* humble_* + - __osx >=11.0 + - libcxx >=18 + - numpy >=1.26.4,<2.0a0 + - python_abi 3.11.* *_cp311 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + license: BSD-3-Clause + size: 451286 + timestamp: 1753313564895 +- conda: https://prefix.dev/robostack-staging/win-64/ros-humble-examples-rclcpp-minimal-subscriber-0.15.3-np126py311hd5de103_13.conda + sha256: cba8a6c4e943921a93873737643f06141636ac94cc1ed30f803f5f10445d0579 + md5: 7e94faca9cfdb0759b78f720fd91bb47 + depends: + - python + - ros-humble-rclcpp + - ros-humble-rclcpp-components + - ros-humble-ros-workspace + - ros-humble-std-msgs + - ros2-distro-mutex 0.7.* humble_* + - vc >=14.3,<15 + - vc14_runtime >=14.44.35208 + - ucrt >=10.0.20348.0 + - vc >=14.3,<15 + - vc14_runtime >=14.44.35208 + - ucrt >=10.0.20348.0 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + - numpy >=1.26.4,<2.0a0 + - python_abi 3.11.* *_cp311 + license: BSD-3-Clause + size: 332648 + timestamp: 1753333425104 +- conda: https://prefix.dev/robostack-staging/linux-64/ros-humble-examples-rclcpp-minimal-timer-0.15.3-np126py311hbc2a38a_13.conda + sha256: cee33b94ade912e6f232d7d9d46c9948b54dce05b12589f79bc41311cc2e0bb1 + md5: b9c75e1e2cb00288e141d90723606190 + depends: + - python + - ros-humble-rclcpp + - ros-humble-ros-workspace + - ros2-distro-mutex 0.7.* humble_* + - libgcc >=13 + - __glibc >=2.17,<3.0.a0 + - libstdcxx >=13 + - libgcc >=13 + - numpy >=1.26.4,<2.0a0 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + - python_abi 3.11.* *_cp311 + license: BSD-3-Clause + size: 48788 + timestamp: 1753313131705 +- conda: https://prefix.dev/robostack-staging/linux-aarch64/ros-humble-examples-rclcpp-minimal-timer-0.15.3-np126py311hbdd918e_13.conda + sha256: babe74ca7652e63aa13f496a7098202153411e40a05ac142f9b7e6104ee88e7b + md5: c9de038b746230438b47b1ca7a366c4e + depends: + - python + - ros-humble-rclcpp + - ros-humble-ros-workspace + - ros2-distro-mutex 0.7.* humble_* + - libstdcxx >=13 + - libgcc >=13 + - numpy >=1.26.4,<2.0a0 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + - python_abi 3.11.* *_cp311 + license: BSD-3-Clause + size: 50521 + timestamp: 1753313368834 +- conda: https://prefix.dev/robostack-staging/osx-arm64/ros-humble-examples-rclcpp-minimal-timer-0.15.3-np126py311h2a51a2c_13.conda + sha256: 597e6591c67364827da1342ed09c3d8d19acaf6ad6b47727af84c16e9dc0b866 + md5: 3e96c8b22b3fd92d89c609325b6c8a01 + depends: + - python + - ros-humble-rclcpp + - ros-humble-ros-workspace + - ros2-distro-mutex 0.7.* humble_* + - libcxx >=18 + - __osx >=11.0 + - python_abi 3.11.* *_cp311 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + - numpy >=1.26.4,<2.0a0 + license: BSD-3-Clause + size: 44601 + timestamp: 1753312952207 +- conda: https://prefix.dev/robostack-staging/win-64/ros-humble-examples-rclcpp-minimal-timer-0.15.3-np126py311hd5de103_13.conda + sha256: 1cee400ecddf4c23bfd59ffd8bfb8be4db90cfd2a801545cf0cd3c198ef63ca3 + md5: da2b90d946f554d502295d72d0ce3fd1 + depends: + - python + - ros-humble-rclcpp + - ros-humble-ros-workspace + - ros2-distro-mutex 0.7.* humble_* + - vc >=14.3,<15 + - vc14_runtime >=14.44.35208 + - ucrt >=10.0.20348.0 + - vc >=14.3,<15 + - vc14_runtime >=14.44.35208 + - ucrt >=10.0.20348.0 + - numpy >=1.26.4,<2.0a0 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + - python_abi 3.11.* *_cp311 + license: BSD-3-Clause + size: 43303 + timestamp: 1753331441595 +- conda: https://prefix.dev/robostack-staging/linux-64/ros-humble-examples-rclcpp-multithreaded-executor-0.15.3-np126py311hbc2a38a_13.conda + sha256: de798a5d6e5571660386fb15e1934a68552453974937aad93729d42b2536757a + md5: 9069c57458b74062128f68c7f9f4a0eb + depends: + - python + - ros-humble-rclcpp + - ros-humble-ros-workspace + - ros-humble-std-msgs + - ros2-distro-mutex 0.7.* humble_* + - libstdcxx >=13 + - libgcc >=13 + - __glibc >=2.17,<3.0.a0 + - python_abi 3.11.* *_cp311 + - numpy >=1.26.4,<2.0a0 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + license: BSD-3-Clause + size: 162159 + timestamp: 1753313155607 +- conda: https://prefix.dev/robostack-staging/linux-aarch64/ros-humble-examples-rclcpp-multithreaded-executor-0.15.3-np126py311hbdd918e_13.conda + sha256: a09498a181b7b49d95460d26a43de05a00232440c50a45b45a53eca04d2c7c16 + md5: 81f837614ebcf4542181ebc812b38183 + depends: + - python + - ros-humble-rclcpp + - ros-humble-ros-workspace + - ros-humble-std-msgs + - ros2-distro-mutex 0.7.* humble_* + - libgcc >=13 + - libstdcxx >=13 + - libgcc >=13 + - python_abi 3.11.* *_cp311 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + - numpy >=1.26.4,<2.0a0 + license: BSD-3-Clause + size: 162114 + timestamp: 1753313394804 +- conda: https://prefix.dev/robostack-staging/osx-arm64/ros-humble-examples-rclcpp-multithreaded-executor-0.15.3-np126py311h2a51a2c_13.conda + sha256: b238b6376af6bac8771e9b9f24c3a7b3773a37ce42a9f179c096612677f32141 + md5: 1d27ece606941c10f48b010e0ede9925 + depends: + - python + - ros-humble-rclcpp + - ros-humble-ros-workspace + - ros-humble-std-msgs + - ros2-distro-mutex 0.7.* humble_* + - __osx >=11.0 + - libcxx >=18 + - numpy >=1.26.4,<2.0a0 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + - python_abi 3.11.* *_cp311 + license: BSD-3-Clause + size: 138417 + timestamp: 1753312934856 +- conda: https://prefix.dev/robostack-staging/win-64/ros-humble-examples-rclcpp-multithreaded-executor-0.15.3-np126py311hd5de103_13.conda + sha256: bcf9c958cec3baa96ef8950477163b9b4ee32ee0d7a55364cc9d3b190c9d0844 + md5: e66681a45a87de7d45594370509b9c18 + depends: + - python + - ros-humble-rclcpp + - ros-humble-ros-workspace + - ros-humble-std-msgs + - ros2-distro-mutex 0.7.* humble_* + - vc >=14.3,<15 + - vc14_runtime >=14.44.35208 + - ucrt >=10.0.20348.0 + - vc >=14.3,<15 + - vc14_runtime >=14.44.35208 + - ucrt >=10.0.20348.0 + - python_abi 3.11.* *_cp311 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + - numpy >=1.26.4,<2.0a0 + license: BSD-3-Clause + size: 111353 + timestamp: 1753331361011 +- conda: https://prefix.dev/robostack-staging/linux-64/ros-humble-examples-rclpy-executors-0.15.3-np126py311hbc2a38a_13.conda + sha256: 10b0ec0edc1b57ecd6581c20c42a4102a687195296c17b7a28c41bdbef6d53ba + md5: b3a859a7785114836db91444efe4b2ec + depends: + - python + - ros-humble-rclpy + - ros-humble-ros-workspace + - ros-humble-std-msgs + - ros2-distro-mutex 0.7.* humble_* + - libgcc >=13 + - libstdcxx >=13 + - libgcc >=13 + - __glibc >=2.17,<3.0.a0 + - numpy >=1.26.4,<2.0a0 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + - python_abi 3.11.* *_cp311 + license: BSD-3-Clause + size: 27817 + timestamp: 1753313151585 +- conda: https://prefix.dev/robostack-staging/linux-aarch64/ros-humble-examples-rclpy-executors-0.15.3-np126py311hbdd918e_13.conda + sha256: cf2e2e7a3c85b1e193575eaef2dd3d83f542029ad4db918aa25179e64b6f8217 + md5: 40bf245726839201d6e51bbedb03c398 + depends: + - python + - ros-humble-rclpy + - ros-humble-ros-workspace + - ros-humble-std-msgs + - ros2-distro-mutex 0.7.* humble_* + - libstdcxx >=13 + - libgcc >=13 + - python_abi 3.11.* *_cp311 + - numpy >=1.26.4,<2.0a0 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + license: BSD-3-Clause + size: 27672 + timestamp: 1753313391869 +- conda: https://prefix.dev/robostack-staging/osx-arm64/ros-humble-examples-rclpy-executors-0.15.3-np126py311h2a51a2c_13.conda + sha256: 6b938d3fdaf7e171a2b04e5a4375d638866170078a41b67a3c554b9b8f1fafa1 + md5: 4bb3ef5d5796e9a0301120a87c50b45d + depends: + - python + - ros-humble-rclpy + - ros-humble-ros-workspace + - ros-humble-std-msgs + - ros2-distro-mutex 0.7.* humble_* + - __osx >=11.0 + - libcxx >=18 + - python_abi 3.11.* *_cp311 + - numpy >=1.26.4,<2.0a0 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + license: BSD-3-Clause + size: 27912 + timestamp: 1753312929393 +- conda: https://prefix.dev/robostack-staging/win-64/ros-humble-examples-rclpy-executors-0.15.3-np126py311hd5de103_13.conda + sha256: ab6de72b45c9151ba7fc411b843f612924cbe7d53218022b3249bd839a6b1400 + md5: 37fc58da8a953f909493b5acaa935acd + depends: + - python + - ros-humble-rclpy + - ros-humble-ros-workspace + - ros-humble-std-msgs + - ros2-distro-mutex 0.7.* humble_* + - vc >=14.3,<15 + - vc14_runtime >=14.44.35208 + - ucrt >=10.0.20348.0 + - vc >=14.3,<15 + - vc14_runtime >=14.44.35208 + - ucrt >=10.0.20348.0 + - python_abi 3.11.* *_cp311 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + - numpy >=1.26.4,<2.0a0 + license: BSD-3-Clause + size: 33971 + timestamp: 1753331334732 +- conda: https://prefix.dev/robostack-staging/linux-64/ros-humble-examples-rclpy-minimal-action-client-0.15.3-np126py311hbc2a38a_13.conda + sha256: 698c31267e2b98f1ce6af77cf79eab9f08590e1edf9a6378c94502ad61662189 + md5: 6f0b40d7247dafef05db417b7f1f388e + depends: + - python + - ros-humble-example-interfaces + - ros-humble-rclpy + - ros-humble-ros-workspace + - ros2-distro-mutex 0.7.* humble_* + - __glibc >=2.17,<3.0.a0 + - libstdcxx >=13 + - libgcc >=13 + - python_abi 3.11.* *_cp311 + - numpy >=1.26.4,<2.0a0 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + license: BSD-3-Clause + size: 26094 + timestamp: 1753313147502 +- conda: https://prefix.dev/robostack-staging/linux-aarch64/ros-humble-examples-rclpy-minimal-action-client-0.15.3-np126py311hbdd918e_13.conda + sha256: 6f3aeb7b7bb9da2167eda405e9ce6d98403eb2e1e5e1d2104b8009ccbda33189 + md5: 5c371c212741ce1384f855af216fe14b + depends: + - python + - ros-humble-example-interfaces + - ros-humble-rclpy + - ros-humble-ros-workspace + - ros2-distro-mutex 0.7.* humble_* + - libgcc >=13 + - libstdcxx >=13 + - libgcc >=13 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + - numpy >=1.26.4,<2.0a0 + - python_abi 3.11.* *_cp311 + license: BSD-3-Clause + size: 25934 + timestamp: 1753313388856 +- conda: https://prefix.dev/robostack-staging/osx-arm64/ros-humble-examples-rclpy-minimal-action-client-0.15.3-np126py311h2a51a2c_13.conda + sha256: 41872c6542f292ac303c0f3053ad19fb8e53ff64fd057a5b6a6eda55c5a72d72 + md5: e3b84343abc7f8c2f0a7bfb8acd5efa9 + depends: + - python + - ros-humble-example-interfaces + - ros-humble-rclpy + - ros-humble-ros-workspace + - ros2-distro-mutex 0.7.* humble_* + - libcxx >=18 + - __osx >=11.0 + - python_abi 3.11.* *_cp311 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + - numpy >=1.26.4,<2.0a0 + license: BSD-3-Clause + size: 26166 + timestamp: 1753312924530 +- conda: https://prefix.dev/robostack-staging/win-64/ros-humble-examples-rclpy-minimal-action-client-0.15.3-np126py311hd5de103_13.conda + sha256: 7594b36a9657f674f25fce430e1ffa6cd5189e2571c51fbdfe955afc9eafc1be + md5: 476e07e2823f5a0056cdf8c63f70711e + depends: + - python + - ros-humble-example-interfaces + - ros-humble-rclpy + - ros-humble-ros-workspace + - ros2-distro-mutex 0.7.* humble_* + - vc >=14.3,<15 + - vc14_runtime >=14.44.35208 + - ucrt >=10.0.20348.0 + - vc >=14.3,<15 + - vc14_runtime >=14.44.35208 + - ucrt >=10.0.20348.0 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + - python_abi 3.11.* *_cp311 + - numpy >=1.26.4,<2.0a0 + license: BSD-3-Clause + size: 31883 + timestamp: 1753331311496 +- conda: https://prefix.dev/robostack-staging/linux-64/ros-humble-examples-rclpy-minimal-action-server-0.15.3-np126py311hbc2a38a_13.conda + sha256: c4ed3de57352746cf52ef877d2856b303fa55070cda78ef8e64d535f9cfef595 + md5: bd244fc2a19ee1be06ac5f933778caa6 + depends: + - python + - ros-humble-example-interfaces + - ros-humble-rclpy + - ros-humble-ros-workspace + - ros2-distro-mutex 0.7.* humble_* + - libstdcxx >=13 + - libgcc >=13 + - __glibc >=2.17,<3.0.a0 + - python_abi 3.11.* *_cp311 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + - numpy >=1.26.4,<2.0a0 + license: BSD-3-Clause + size: 27570 + timestamp: 1753313143434 +- conda: https://prefix.dev/robostack-staging/linux-aarch64/ros-humble-examples-rclpy-minimal-action-server-0.15.3-np126py311hbdd918e_13.conda + sha256: 8324a3d618e0c26d6bd68fae8c8114ca9f3b2a4879b8a5277b9fd243faf2aba6 + md5: 8763b7142cd3741b4d44712840013f77 + depends: + - python + - ros-humble-example-interfaces + - ros-humble-rclpy + - ros-humble-ros-workspace + - ros2-distro-mutex 0.7.* humble_* + - libstdcxx >=13 + - libgcc >=13 + - python_abi 3.11.* *_cp311 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + - numpy >=1.26.4,<2.0a0 + license: BSD-3-Clause + size: 27403 + timestamp: 1753313385976 +- conda: https://prefix.dev/robostack-staging/osx-arm64/ros-humble-examples-rclpy-minimal-action-server-0.15.3-np126py311h2a51a2c_13.conda + sha256: 3da6ae10daba609f40d100a2d5f251579059f98ddc266cd577605fcbe5302e4d + md5: 657c31be77ab155119e4dc2631b0b5aa + depends: + - python + - ros-humble-example-interfaces + - ros-humble-rclpy + - ros-humble-ros-workspace + - ros2-distro-mutex 0.7.* humble_* + - libcxx >=18 + - __osx >=11.0 + - numpy >=1.26.4,<2.0a0 + - python_abi 3.11.* *_cp311 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + license: BSD-3-Clause + size: 27655 + timestamp: 1753312911718 +- conda: https://prefix.dev/robostack-staging/win-64/ros-humble-examples-rclpy-minimal-action-server-0.15.3-np126py311hd5de103_13.conda + sha256: 66659189148c1d2be2181b7206eb1d463a21dca28d44afa65d6e654d2a29aa9f + md5: f543dd2446cee6f36cc54c55f9681b6a + depends: + - python + - ros-humble-example-interfaces + - ros-humble-rclpy + - ros-humble-ros-workspace + - ros2-distro-mutex 0.7.* humble_* + - vc >=14.3,<15 + - vc14_runtime >=14.44.35208 + - ucrt >=10.0.20348.0 + - vc >=14.3,<15 + - vc14_runtime >=14.44.35208 + - ucrt >=10.0.20348.0 + - python_abi 3.11.* *_cp311 + - numpy >=1.26.4,<2.0a0 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + license: BSD-3-Clause + size: 33478 + timestamp: 1753331284419 +- conda: https://prefix.dev/robostack-staging/linux-64/ros-humble-examples-rclpy-minimal-client-0.15.3-np126py311hbc2a38a_13.conda + sha256: 99d14f953c3b40df8fd41c62894bf296e65d5d7c21bbaf6c5317a5bcfc97b2f9 + md5: cfb68aab2c91ebdf38307896eaf05e06 + depends: + - python + - ros-humble-example-interfaces + - ros-humble-rclpy + - ros-humble-ros-workspace + - ros-humble-std-msgs + - ros2-distro-mutex 0.7.* humble_* + - libstdcxx >=13 + - libgcc >=13 + - __glibc >=2.17,<3.0.a0 + - numpy >=1.26.4,<2.0a0 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + - python_abi 3.11.* *_cp311 + license: BSD-3-Clause + size: 23194 + timestamp: 1753313132310 +- conda: https://prefix.dev/robostack-staging/linux-aarch64/ros-humble-examples-rclpy-minimal-client-0.15.3-np126py311hbdd918e_13.conda + sha256: 2b55e773c6aedf0c43b0f6889586e74e27a4226ce50634149b8a5c06a18b68f8 + md5: 7d102c72ccdd5ccbaccffe7a72fe5cc2 + depends: + - python + - ros-humble-example-interfaces + - ros-humble-rclpy + - ros-humble-ros-workspace + - ros-humble-std-msgs + - ros2-distro-mutex 0.7.* humble_* + - libstdcxx >=13 + - libgcc >=13 + - numpy >=1.26.4,<2.0a0 + - python_abi 3.11.* *_cp311 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + license: BSD-3-Clause + size: 23045 + timestamp: 1753313369457 +- conda: https://prefix.dev/robostack-staging/osx-arm64/ros-humble-examples-rclpy-minimal-client-0.15.3-np126py311h2a51a2c_13.conda + sha256: bc7f27a0c68c0d02e39132367c9d331427bea5d2a4f130f9b3d17ec1ce1f6756 + md5: e36dfe7ce368a461b7411dfc7bf68f1c + depends: + - python + - ros-humble-example-interfaces + - ros-humble-rclpy + - ros-humble-ros-workspace + - ros-humble-std-msgs + - ros2-distro-mutex 0.7.* humble_* + - libcxx >=18 + - __osx >=11.0 + - numpy >=1.26.4,<2.0a0 + - python_abi 3.11.* *_cp311 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + license: BSD-3-Clause + size: 23268 + timestamp: 1753313148713 +- conda: https://prefix.dev/robostack-staging/win-64/ros-humble-examples-rclpy-minimal-client-0.15.3-np126py311hd5de103_13.conda + sha256: 84975681c251fa6f6fe9703f85a60dc7bb1097e4f04ca7bd06d6aa2a7aad1c04 + md5: 192d8cbaa81124df09bf33ed10898061 + depends: + - python + - ros-humble-example-interfaces + - ros-humble-rclpy + - ros-humble-ros-workspace + - ros-humble-std-msgs + - ros2-distro-mutex 0.7.* humble_* + - vc >=14.3,<15 + - vc14_runtime >=14.44.35208 + - ucrt >=10.0.20348.0 + - vc >=14.3,<15 + - vc14_runtime >=14.44.35208 + - ucrt >=10.0.20348.0 + - numpy >=1.26.4,<2.0a0 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + - python_abi 3.11.* *_cp311 + license: BSD-3-Clause + size: 29009 + timestamp: 1753331254575 +- conda: https://prefix.dev/robostack-staging/linux-64/ros-humble-examples-rclpy-minimal-publisher-0.15.3-np126py311hbc2a38a_13.conda + sha256: 254ef4b1b935bc579b6321f0ec10e10c55eb67d6e4aa33be496f46f891cb6b73 + md5: ffff000583f39fed8e930f2821d5d938 + depends: + - python + - ros-humble-rclpy + - ros-humble-ros-workspace + - ros-humble-std-msgs + - ros2-distro-mutex 0.7.* humble_* + - __glibc >=2.17,<3.0.a0 + - libstdcxx >=13 + - libgcc >=13 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + - numpy >=1.26.4,<2.0a0 + - python_abi 3.11.* *_cp311 + license: BSD-3-Clause + size: 21956 + timestamp: 1753313201655 +- conda: https://prefix.dev/robostack-staging/linux-aarch64/ros-humble-examples-rclpy-minimal-publisher-0.15.3-np126py311hbdd918e_13.conda + sha256: 13b2908186ee02c1a4d280a5abf6e3428f02ff007cba64f8835db4746a184040 + md5: 8a20af303c872d0d96b53808fa5cccdf + depends: + - python + - ros-humble-rclpy + - ros-humble-ros-workspace + - ros-humble-std-msgs + - ros2-distro-mutex 0.7.* humble_* + - libgcc >=13 + - libstdcxx >=13 + - libgcc >=13 + - numpy >=1.26.4,<2.0a0 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + - python_abi 3.11.* *_cp311 + license: BSD-3-Clause + size: 21800 + timestamp: 1753313444431 +- conda: https://prefix.dev/robostack-staging/osx-arm64/ros-humble-examples-rclpy-minimal-publisher-0.15.3-np126py311h2a51a2c_13.conda + sha256: bb637c4a4656f1dc17acdbee540cd8b3767a69be306ed5880317f14e43fd3c98 + md5: 2ccfcfe5e8003805f58fa8e3dd85afe5 + depends: + - python + - ros-humble-rclpy + - ros-humble-ros-workspace + - ros-humble-std-msgs + - ros2-distro-mutex 0.7.* humble_* + - libcxx >=18 + - __osx >=11.0 + - numpy >=1.26.4,<2.0a0 + - python_abi 3.11.* *_cp311 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + license: BSD-3-Clause + size: 22025 + timestamp: 1753313143065 +- conda: https://prefix.dev/robostack-staging/win-64/ros-humble-examples-rclpy-minimal-publisher-0.15.3-np126py311hd5de103_13.conda + sha256: 5fbb131225d5b90d24257edeed12578152579403094bfb1d1bf117b64bdb6de2 + md5: 5b6ed157590bb7fd57aa0d23cfb19d9f + depends: + - python + - ros-humble-rclpy + - ros-humble-ros-workspace + - ros-humble-std-msgs + - ros2-distro-mutex 0.7.* humble_* + - vc >=14.3,<15 + - vc14_runtime >=14.44.35208 + - ucrt >=10.0.20348.0 + - vc >=14.3,<15 + - vc14_runtime >=14.44.35208 + - ucrt >=10.0.20348.0 + - numpy >=1.26.4,<2.0a0 + - python_abi 3.11.* *_cp311 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + license: BSD-3-Clause + size: 27717 + timestamp: 1753331229929 +- conda: https://prefix.dev/robostack-staging/linux-64/ros-humble-examples-rclpy-minimal-service-0.15.3-np126py311hbc2a38a_13.conda + sha256: b4b09c36eba567e450ab0e514a9ec5331423f16767f51c17897a531b38b0218e + md5: 416ebcc232135856fcc217c16e1d94a4 + depends: + - python + - ros-humble-example-interfaces + - ros-humble-rclpy + - ros-humble-ros-workspace + - ros-humble-std-msgs + - ros2-distro-mutex 0.7.* humble_* + - __glibc >=2.17,<3.0.a0 + - libgcc >=13 + - libstdcxx >=13 + - libgcc >=13 + - python_abi 3.11.* *_cp311 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + - numpy >=1.26.4,<2.0a0 + license: BSD-3-Clause + size: 20864 + timestamp: 1753313197553 +- conda: https://prefix.dev/robostack-staging/linux-aarch64/ros-humble-examples-rclpy-minimal-service-0.15.3-np126py311hbdd918e_13.conda + sha256: 910344cd562e7d144c6ccec07b13c23a555dc255d509e6163ca91c782ab850a3 + md5: 5450d856a281d0e685f88417ba9b2cc1 + depends: + - python + - ros-humble-example-interfaces + - ros-humble-rclpy + - ros-humble-ros-workspace + - ros-humble-std-msgs + - ros2-distro-mutex 0.7.* humble_* + - libgcc >=13 + - libstdcxx >=13 + - libgcc >=13 + - numpy >=1.26.4,<2.0a0 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + - python_abi 3.11.* *_cp311 + license: BSD-3-Clause + size: 20709 + timestamp: 1753313441233 +- conda: https://prefix.dev/robostack-staging/osx-arm64/ros-humble-examples-rclpy-minimal-service-0.15.3-np126py311h2a51a2c_13.conda + sha256: a0801b1424909403fe69cc3342d4dda0724c23bb682533a0f0eeb562ada5a9a3 + md5: 52710e2b15afc44145c8c96ff47ea4c5 + depends: + - python + - ros-humble-example-interfaces + - ros-humble-rclpy + - ros-humble-ros-workspace + - ros-humble-std-msgs + - ros2-distro-mutex 0.7.* humble_* + - libcxx >=18 + - __osx >=11.0 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + - python_abi 3.11.* *_cp311 + - numpy >=1.26.4,<2.0a0 + license: BSD-3-Clause + size: 20949 + timestamp: 1753313137658 +- conda: https://prefix.dev/robostack-staging/win-64/ros-humble-examples-rclpy-minimal-service-0.15.3-np126py311hd5de103_13.conda + sha256: fbd712bee91e76d981513705fd58acff434b75735ffbd97e2a56a1cdc5ec8357 + md5: 353a04a62f304c1f570c12cefae83db4 + depends: + - python + - ros-humble-example-interfaces + - ros-humble-rclpy + - ros-humble-ros-workspace + - ros-humble-std-msgs + - ros2-distro-mutex 0.7.* humble_* + - vc >=14.3,<15 + - vc14_runtime >=14.44.35208 + - ucrt >=10.0.20348.0 + - vc >=14.3,<15 + - vc14_runtime >=14.44.35208 + - ucrt >=10.0.20348.0 + - numpy >=1.26.4,<2.0a0 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + - python_abi 3.11.* *_cp311 + license: BSD-3-Clause + size: 26475 + timestamp: 1753331170674 +- conda: https://prefix.dev/robostack-staging/linux-64/ros-humble-examples-rclpy-minimal-subscriber-0.15.3-np126py311hbc2a38a_13.conda + sha256: 14b8c586597d1aa97fa170fe0a4b1624747f44601355c18a074292fd20586933 + md5: fdd0529202e16c86c63074a64e774731 + depends: + - python + - ros-humble-rclpy + - ros-humble-ros-workspace + - ros-humble-std-msgs + - ros2-distro-mutex 0.7.* humble_* + - libstdcxx >=13 + - libgcc >=13 + - __glibc >=2.17,<3.0.a0 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + - python_abi 3.11.* *_cp311 + - numpy >=1.26.4,<2.0a0 + license: BSD-3-Clause + size: 21442 + timestamp: 1753313191846 +- conda: https://prefix.dev/robostack-staging/linux-aarch64/ros-humble-examples-rclpy-minimal-subscriber-0.15.3-np126py311hbdd918e_13.conda + sha256: 06130729add4a2c87fec673d86fa429623eee6b2439533bbf9c51b1f23b8b3c0 + md5: 910f6c722139a7f2dfac36024a4d0027 + depends: + - python + - ros-humble-rclpy + - ros-humble-ros-workspace + - ros-humble-std-msgs + - ros2-distro-mutex 0.7.* humble_* + - libstdcxx >=13 + - libgcc >=13 + - numpy >=1.26.4,<2.0a0 + - python_abi 3.11.* *_cp311 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + license: BSD-3-Clause + size: 21303 + timestamp: 1753313433596 +- conda: https://prefix.dev/robostack-staging/osx-arm64/ros-humble-examples-rclpy-minimal-subscriber-0.15.3-np126py311h2a51a2c_13.conda + sha256: 4e26d33503bddd10c502316ceb76e675fbd9af4f38f82dbabd37bc5d3f62ae0b + md5: 35c535475bbbd80f8fe38b02935f41cd + depends: + - python + - ros-humble-rclpy + - ros-humble-ros-workspace + - ros-humble-std-msgs + - ros2-distro-mutex 0.7.* humble_* + - __osx >=11.0 + - libcxx >=18 + - python_abi 3.11.* *_cp311 + - numpy >=1.26.4,<2.0a0 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + license: BSD-3-Clause + size: 21534 + timestamp: 1753313128918 +- conda: https://prefix.dev/robostack-staging/win-64/ros-humble-examples-rclpy-minimal-subscriber-0.15.3-np126py311hd5de103_13.conda + sha256: b12ebd4e9d38b60a3ddf6c448aa608f9ff4bb611c6b9db72758bb45f88022155 + md5: 7ed40cc72f12cbe69730e46df34a90c4 + depends: + - python + - ros-humble-rclpy + - ros-humble-ros-workspace + - ros-humble-std-msgs + - ros2-distro-mutex 0.7.* humble_* + - vc >=14.3,<15 + - vc14_runtime >=14.44.35208 + - ucrt >=10.0.20348.0 + - vc >=14.3,<15 + - vc14_runtime >=14.44.35208 + - ucrt >=10.0.20348.0 + - python_abi 3.11.* *_cp311 + - numpy >=1.26.4,<2.0a0 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + license: BSD-3-Clause + size: 27270 + timestamp: 1753332198979 +- conda: https://prefix.dev/robostack-staging/linux-64/ros-humble-fastcdr-1.0.24-np126py311hbc2a38a_13.conda + sha256: 2884bac4fe1ad38443470ad62119371f9d2c10a8937471de1d0303dedf90f4d5 + md5: e838ab8ea5d838183fc6e1313debc4e8 + depends: + - python + - ros-humble-ros-workspace + - ros2-distro-mutex 0.7.* humble_* + - __glibc >=2.17,<3.0.a0 + - libstdcxx >=13 + - libgcc >=13 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + - numpy >=1.26.4,<2.0a0 + - python_abi 3.11.* *_cp311 + license: BSD-3-Clause + size: 66441 + timestamp: 1753307873500 +- conda: https://prefix.dev/robostack-staging/linux-aarch64/ros-humble-fastcdr-1.0.24-np126py311hbdd918e_13.conda + sha256: 2be3c46c7fafb746ea64a0a674e16342100c88bd8e77e011a22855938f9b4e05 + md5: b6c3f84ee4d0401ec5402f8c8301d2c7 + depends: + - python + - ros-humble-ros-workspace + - ros2-distro-mutex 0.7.* humble_* + - libgcc >=13 + - libstdcxx >=13 + - libgcc >=13 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + - python_abi 3.11.* *_cp311 + - numpy >=1.26.4,<2.0a0 + license: BSD-3-Clause + size: 63234 + timestamp: 1753308055528 +- conda: https://prefix.dev/robostack-staging/osx-arm64/ros-humble-fastcdr-1.0.24-np126py311h2a51a2c_13.conda + sha256: 24859b86f7fb26e3231413929d83d30ce7e4858dfa510ba282b18088a810bb69 + md5: 6240044cf822aadbb1e2498b07ba8c6d + depends: + - python + - ros-humble-ros-workspace + - ros2-distro-mutex 0.7.* humble_* + - libcxx >=18 + - __osx >=11.0 + - numpy >=1.26.4,<2.0a0 + - python_abi 3.11.* *_cp311 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + license: BSD-3-Clause + size: 57498 + timestamp: 1753308058181 +- conda: https://prefix.dev/robostack-staging/win-64/ros-humble-fastcdr-1.0.24-np126py311hd5de103_13.conda + sha256: 948c23dc48dd99e944173e96b15918f62980716abcc414d45c597af10104d1df + md5: a39224903a76da3d3ddae7571b499923 + depends: + - python + - ros-humble-ros-workspace + - ros2-distro-mutex 0.7.* humble_* + - vc >=14.3,<15 + - vc14_runtime >=14.44.35208 + - ucrt >=10.0.20348.0 + - vc >=14.3,<15 + - vc14_runtime >=14.44.35208 + - ucrt >=10.0.20348.0 + - numpy >=1.26.4,<2.0a0 + - python_abi 3.11.* *_cp311 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + license: BSD-3-Clause + size: 76739 + timestamp: 1753308508705 +- conda: https://prefix.dev/robostack-staging/linux-64/ros-humble-fastrtps-2.6.10-np126py311hbc2a38a_13.conda + sha256: 56602df0fe33a5d51e93ea09449cc7c17cb2be54f1b33f6a88ec45cd34bb21d4 + md5: d87600fa1e95c5bc0398ea4b627feb8d + depends: + - openssl + - python + - ros-humble-fastcdr + - ros-humble-foonathan-memory-vendor + - ros-humble-ros-workspace + - ros2-distro-mutex 0.7.* humble_* + - tinyxml2 + - __glibc >=2.17,<3.0.a0 + - libstdcxx >=13 + - libgcc >=13 + - numpy >=1.26.4,<2.0a0 + - python_abi 3.11.* *_cp311 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + - tinyxml2 >=11.0.0,<11.1.0a0 + - openssl >=3.5.1,<4.0a0 + license: BSD-3-Clause + size: 3652097 + timestamp: 1753309543960 +- conda: https://prefix.dev/robostack-staging/linux-aarch64/ros-humble-fastrtps-2.6.10-np126py311hbdd918e_13.conda + sha256: 17adfee95866219df214cbc23fb76f335ca62a4adf31fe8b55a05806f24f01dd + md5: b961528c44025befcf352d07057ade07 + depends: + - openssl + - python + - ros-humble-fastcdr + - ros-humble-foonathan-memory-vendor + - ros-humble-ros-workspace + - ros2-distro-mutex 0.7.* humble_* + - tinyxml2 + - libgcc >=13 + - libstdcxx >=13 + - libgcc >=13 + - python_abi 3.11.* *_cp311 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + - openssl >=3.5.1,<4.0a0 + - numpy >=1.26.4,<2.0a0 + - tinyxml2 >=11.0.0,<11.1.0a0 + license: BSD-3-Clause + size: 3504530 + timestamp: 1753309398491 +- conda: https://prefix.dev/robostack-staging/osx-arm64/ros-humble-fastrtps-2.6.10-np126py311h2a51a2c_13.conda + sha256: 2ceb70cd206e812216f1e50208746c5c13a4ac8f9ec70ac3ea0862b19bba3c28 + md5: dcc71a57047a7f391cfdc11dd7208e44 + depends: + - openssl + - python + - ros-humble-fastcdr + - ros-humble-foonathan-memory-vendor + - ros-humble-ros-workspace + - ros2-distro-mutex 0.7.* humble_* + - tinyxml2 + - libcxx >=18 + - __osx >=11.0 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + - python_abi 3.11.* *_cp311 + - openssl >=3.5.1,<4.0a0 + - tinyxml2 >=11.0.0,<11.1.0a0 + - numpy >=1.26.4,<2.0a0 + license: BSD-3-Clause + size: 2598215 + timestamp: 1753310112593 +- conda: https://prefix.dev/robostack-staging/win-64/ros-humble-fastrtps-2.6.10-np126py311hd5de103_13.conda + sha256: a09f749ffa93ff2223543092d8f5c2f67c9cc3d36aecefc693ca1fda42f1cf9a + md5: 8dd3a16363a63855a8b109e7478e54dd + depends: + - openssl + - python + - ros-humble-fastcdr + - ros-humble-foonathan-memory-vendor + - ros-humble-ros-workspace + - ros2-distro-mutex 0.7.* humble_* + - tinyxml2 + - vc >=14.3,<15 + - vc14_runtime >=14.44.35208 + - ucrt >=10.0.20348.0 + - vc >=14.3,<15 + - vc14_runtime >=14.44.35208 + - ucrt >=10.0.20348.0 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + - python_abi 3.11.* *_cp311 + - tinyxml2 >=11.0.0,<11.1.0a0 + - openssl >=3.5.1,<4.0a0 + - numpy >=1.26.4,<2.0a0 + license: BSD-3-Clause + size: 2805787 + timestamp: 1753317884716 +- conda: https://prefix.dev/robostack-staging/linux-64/ros-humble-fastrtps-cmake-module-2.2.2-np126py311hbc2a38a_13.conda + sha256: 6a44efd57eb66b390f43c5f10472a297ba7d4efead8d63672963abee93092c89 + md5: 0ea2c70bb15ac15ca34f52ed64205915 + depends: + - python + - ros-humble-ros-workspace + - ros2-distro-mutex 0.7.* humble_* + - libgcc >=13 + - libstdcxx >=13 + - libgcc >=13 + - __glibc >=2.17,<3.0.a0 + - python_abi 3.11.* *_cp311 + - numpy >=1.26.4,<2.0a0 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + license: BSD-3-Clause + size: 26674 + timestamp: 1753309531630 +- conda: https://prefix.dev/robostack-staging/linux-aarch64/ros-humble-fastrtps-cmake-module-2.2.2-np126py311hbdd918e_13.conda + sha256: b4125901bd3242cf6814e86ee00426c4829208ca756853e8182faa4c565bacdd + md5: 1037e6e0f1392ab2de564e96248658b4 + depends: + - python + - ros-humble-ros-workspace + - ros2-distro-mutex 0.7.* humble_* + - libgcc >=13 + - libstdcxx >=13 + - libgcc >=13 + - numpy >=1.26.4,<2.0a0 + - python_abi 3.11.* *_cp311 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + license: BSD-3-Clause + size: 26580 + timestamp: 1753309383682 +- conda: https://prefix.dev/robostack-staging/osx-arm64/ros-humble-fastrtps-cmake-module-2.2.2-np126py311h2a51a2c_13.conda + sha256: 7007d048e71ca2a6309c744529a7bc16eecd96046ca1030dd9d3e0abe1f298a8 + md5: a0a85aa567a71cfbbbfb6f7b05bdec33 + depends: + - python + - ros-humble-ros-workspace + - ros2-distro-mutex 0.7.* humble_* + - libcxx >=18 + - __osx >=11.0 + - python_abi 3.11.* *_cp311 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + - numpy >=1.26.4,<2.0a0 + license: BSD-3-Clause + size: 26804 + timestamp: 1753310096066 +- conda: https://prefix.dev/robostack-staging/win-64/ros-humble-fastrtps-cmake-module-2.2.2-np126py311hd5de103_13.conda + sha256: 02c65336766634b364ef00a33112fafcc02b8fa337aa63087aa8cf0e225a28a4 + md5: 32c1d2488a1ebf97c021be21cfde0421 + depends: + - python + - ros-humble-ros-workspace + - ros2-distro-mutex 0.7.* humble_* + - vc >=14.3,<15 + - vc14_runtime >=14.44.35208 + - ucrt >=10.0.20348.0 + - vc >=14.3,<15 + - vc14_runtime >=14.44.35208 + - ucrt >=10.0.20348.0 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + - python_abi 3.11.* *_cp311 + - numpy >=1.26.4,<2.0a0 + license: BSD-3-Clause + size: 23332 + timestamp: 1753317820679 +- conda: https://prefix.dev/robostack-staging/linux-64/ros-humble-foonathan-memory-vendor-1.2.0-np126py311hbc2a38a_13.conda + sha256: a92ff1fc0e77fd1774a0eebb8a4b8a2ef4bc470a1cb930a80206d3f355f15bf6 + md5: 9971d1b14a4728a3e29aee5ce713732c + depends: + - foonathan-memory + - python + - ros-humble-ros-workspace + - ros2-distro-mutex 0.7.* humble_* + - cmake + - libstdcxx >=13 + - libgcc >=13 + - __glibc >=2.17,<3.0.a0 + - libgcc >=13 + - python_abi 3.11.* *_cp311 + - foonathan-memory >=0.7.3,<0.7.4.0a0 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + - numpy >=1.26.4,<2.0a0 + license: BSD-3-Clause + size: 19378 + timestamp: 1753309101789 +- conda: https://prefix.dev/robostack-staging/linux-aarch64/ros-humble-foonathan-memory-vendor-1.2.0-np126py311hbdd918e_13.conda + sha256: df70d730cd6bef9acc0ba0349e6629b6510c36b475915835508f481b63708307 + md5: 63cb215f2ac089c877c54726928f15b6 + depends: + - foonathan-memory + - python + - ros-humble-ros-workspace + - ros2-distro-mutex 0.7.* humble_* + - cmake + - libstdcxx >=13 + - libgcc >=13 + - foonathan-memory >=0.7.3,<0.7.4.0a0 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + - python_abi 3.11.* *_cp311 + - numpy >=1.26.4,<2.0a0 + license: BSD-3-Clause + size: 19277 + timestamp: 1753309082086 +- conda: https://prefix.dev/robostack-staging/osx-arm64/ros-humble-foonathan-memory-vendor-1.2.0-np126py311h2a51a2c_13.conda + sha256: abf1815ab4b901aef0eeedd43b91cd915b7169cda04dba84c4662a1b33a362ef + md5: bc6455a42df88f62fb1b95aa9606d9f8 + depends: + - foonathan-memory + - python + - ros-humble-ros-workspace + - ros2-distro-mutex 0.7.* humble_* + - cmake + - libcxx >=18 + - __osx >=11.0 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + - numpy >=1.26.4,<2.0a0 + - foonathan-memory >=0.7.3,<0.7.4.0a0 + - python_abi 3.11.* *_cp311 + license: BSD-3-Clause + size: 19507 + timestamp: 1753309718021 +- conda: https://prefix.dev/robostack-staging/win-64/ros-humble-foonathan-memory-vendor-1.2.0-np126py311hd5de103_13.conda + sha256: 3f162f403113afa54214718618a28b28354064166f91af3dbf2b94485e043378 + md5: bfcd974cf05625ecce3fa3d41a732a62 + depends: + - foonathan-memory + - python + - ros-humble-ros-workspace + - ros2-distro-mutex 0.7.* humble_* + - cmake + - vc >=14.3,<15 + - vc14_runtime >=14.44.35208 + - ucrt >=10.0.20348.0 + - vc >=14.3,<15 + - vc14_runtime >=14.44.35208 + - ucrt >=10.0.20348.0 + - python_abi 3.11.* *_cp311 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + - numpy >=1.26.4,<2.0a0 + - foonathan-memory >=0.7.3,<0.7.4.0a0 + license: BSD-3-Clause + size: 16712 + timestamp: 1753315711328 +- conda: https://prefix.dev/robostack-staging/linux-64/ros-humble-geometry-msgs-4.9.0-np126py311hbc2a38a_13.conda + sha256: 66aac3623a511209119c1632331f3055cd2b9c8dd612490d5151221a8e715105 + md5: 1dffeaa1fd651a86000aabac131b8b25 + depends: + - python + - ros-humble-ros-workspace + - ros-humble-rosidl-default-runtime + - ros-humble-std-msgs + - ros2-distro-mutex 0.7.* humble_* + - __glibc >=2.17,<3.0.a0 + - libgcc >=13 + - libstdcxx >=13 + - libgcc >=13 + - python_abi 3.11.* *_cp311 + - numpy >=1.26.4,<2.0a0 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + license: BSD-3-Clause + size: 310994 + timestamp: 1753312092170 +- conda: https://prefix.dev/robostack-staging/linux-aarch64/ros-humble-geometry-msgs-4.9.0-np126py311hbdd918e_13.conda + sha256: 04c8810122b5fc73873b59a411765f0663d1f35424ac3d677d3d1e917e8d8021 + md5: 352ab9280e0842c4946f7d9af4307847 + depends: + - python + - ros-humble-ros-workspace + - ros-humble-rosidl-default-runtime + - ros-humble-std-msgs + - ros2-distro-mutex 0.7.* humble_* + - libstdcxx >=13 + - libgcc >=13 + - numpy >=1.26.4,<2.0a0 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + - python_abi 3.11.* *_cp311 + license: BSD-3-Clause + size: 318747 + timestamp: 1753312548157 +- conda: https://prefix.dev/robostack-staging/osx-arm64/ros-humble-geometry-msgs-4.9.0-np126py311h2a51a2c_13.conda + sha256: 6f913ed64d85cbaa2209496229201da1354908dcba593f873e12c196caef3262 + md5: b536f6bb35298207283ace3323255e54 + depends: + - python + - ros-humble-ros-workspace + - ros-humble-rosidl-default-runtime + - ros-humble-std-msgs + - ros2-distro-mutex 0.7.* humble_* + - __osx >=11.0 + - libcxx >=18 + - numpy >=1.26.4,<2.0a0 + - python_abi 3.11.* *_cp311 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + license: BSD-3-Clause + size: 275633 + timestamp: 1753311463894 +- conda: https://prefix.dev/robostack-staging/win-64/ros-humble-geometry-msgs-4.9.0-np126py311hd5de103_13.conda + sha256: 15676d587583827aac5f36a7f3bda5f7cc7324fdfb83ff2c5922612936798e1d + md5: e41bdd25df43765145b9a720818d5a82 + depends: + - python + - ros-humble-ros-workspace + - ros-humble-rosidl-default-runtime + - ros-humble-std-msgs + - ros2-distro-mutex 0.7.* humble_* + - vc >=14.3,<15 + - vc14_runtime >=14.44.35208 + - ucrt >=10.0.20348.0 + - vc >=14.3,<15 + - vc14_runtime >=14.44.35208 + - ucrt >=10.0.20348.0 + - python_abi 3.11.* *_cp311 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + - numpy >=1.26.4,<2.0a0 + license: BSD-3-Clause + size: 291672 + timestamp: 1753325310886 +- conda: https://prefix.dev/robostack-staging/linux-64/ros-humble-geometry2-0.25.14-np126py311hbc2a38a_13.conda + sha256: 398b58bc585668f58b7e98b96abfe0a8e553903c840a9f8cd987b951216bac76 + md5: 460c444a721704c22a47031bcfcad2f0 + depends: + - python + - ros-humble-ros-workspace + - ros-humble-tf2 + - ros-humble-tf2-bullet + - ros-humble-tf2-eigen + - ros-humble-tf2-eigen-kdl + - ros-humble-tf2-geometry-msgs + - ros-humble-tf2-kdl + - ros-humble-tf2-msgs + - ros-humble-tf2-py + - ros-humble-tf2-ros + - ros-humble-tf2-sensor-msgs + - ros-humble-tf2-tools + - ros2-distro-mutex 0.7.* humble_* + - libgcc >=13 + - __glibc >=2.17,<3.0.a0 + - libstdcxx >=13 + - libgcc >=13 + - python_abi 3.11.* *_cp311 + - numpy >=1.26.4,<2.0a0 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + license: BSD-3-Clause + size: 22363 + timestamp: 1753314318559 +- conda: https://prefix.dev/robostack-staging/linux-aarch64/ros-humble-geometry2-0.25.14-np126py311hbdd918e_13.conda + sha256: 7124ffd492757fb56577d75e0081b4f46c2c445c726d1536f72ea1f7b92f9e0d + md5: 6915134521e8c97f56fcc5df26996951 + depends: + - python + - ros-humble-ros-workspace + - ros-humble-tf2 + - ros-humble-tf2-bullet + - ros-humble-tf2-eigen + - ros-humble-tf2-eigen-kdl + - ros-humble-tf2-geometry-msgs + - ros-humble-tf2-kdl + - ros-humble-tf2-msgs + - ros-humble-tf2-py + - ros-humble-tf2-ros + - ros-humble-tf2-sensor-msgs + - ros-humble-tf2-tools + - ros2-distro-mutex 0.7.* humble_* + - libgcc >=13 + - libstdcxx >=13 + - libgcc >=13 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + - python_abi 3.11.* *_cp311 + - numpy >=1.26.4,<2.0a0 + license: BSD-3-Clause + size: 22149 + timestamp: 1753314385990 +- conda: https://prefix.dev/robostack-staging/osx-arm64/ros-humble-geometry2-0.25.14-np126py311h2a51a2c_13.conda + sha256: fcd4a38a4f000e742858f1ce693b95196f23b6ec69911d8168509a1f10cf5a2a + md5: b918e607cff6f0a79678722dcf98857d + depends: + - python + - ros-humble-ros-workspace + - ros-humble-tf2 + - ros-humble-tf2-bullet + - ros-humble-tf2-eigen + - ros-humble-tf2-eigen-kdl + - ros-humble-tf2-geometry-msgs + - ros-humble-tf2-kdl + - ros-humble-tf2-msgs + - ros-humble-tf2-py + - ros-humble-tf2-ros + - ros-humble-tf2-sensor-msgs + - ros-humble-tf2-tools + - ros2-distro-mutex 0.7.* humble_* + - __osx >=11.0 + - libcxx >=18 + - python_abi 3.11.* *_cp311 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + - numpy >=1.26.4,<2.0a0 + license: BSD-3-Clause + size: 22545 + timestamp: 1753314895500 +- conda: https://prefix.dev/robostack-staging/win-64/ros-humble-geometry2-0.25.14-np126py311hd5de103_13.conda + sha256: eced31846691608f6034c6dff1b032fcf7a4b81e3d80a411330d7e8dc17489db + md5: b4989e0cd22accda6a8ed38636665cc4 + depends: + - python + - ros-humble-ros-workspace + - ros-humble-tf2 + - ros-humble-tf2-bullet + - ros-humble-tf2-eigen + - ros-humble-tf2-eigen-kdl + - ros-humble-tf2-geometry-msgs + - ros-humble-tf2-kdl + - ros-humble-tf2-msgs + - ros-humble-tf2-py + - ros-humble-tf2-ros + - ros-humble-tf2-sensor-msgs + - ros-humble-tf2-tools + - ros2-distro-mutex 0.7.* humble_* + - vc >=14.3,<15 + - vc14_runtime >=14.44.35208 + - ucrt >=10.0.20348.0 + - vc >=14.3,<15 + - vc14_runtime >=14.44.35208 + - ucrt >=10.0.20348.0 + - numpy >=1.26.4,<2.0a0 + - python_abi 3.11.* *_cp311 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + license: BSD-3-Clause + size: 19127 + timestamp: 1753338228216 +- conda: https://prefix.dev/robostack-staging/linux-64/ros-humble-gmock-vendor-1.10.9006-np126py311hbc2a38a_13.conda + sha256: a203ca16a1f236265451d373c5f1c5e2731a263507d58c4b03b3e5c72b4d07db + md5: 0b255e45bea39b318451818a47d04f73 + depends: + - python + - ros-humble-gtest-vendor + - ros-humble-ros-workspace + - ros2-distro-mutex 0.7.* humble_* + - libstdcxx >=13 + - libgcc >=13 + - __glibc >=2.17,<3.0.a0 + - libgcc >=13 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + - numpy >=1.26.4,<2.0a0 + - python_abi 3.11.* *_cp311 + license: BSD-3-Clause + size: 113577 + timestamp: 1753308001062 +- conda: https://prefix.dev/robostack-staging/linux-aarch64/ros-humble-gmock-vendor-1.10.9006-np126py311hbdd918e_13.conda + sha256: 7b54fd7b62a6390d29c552e5944f42d0a555e9460abc469136c41b331a2e66a5 + md5: cf5d9c05b0237a9f27a1de20a410fe1e + depends: + - python + - ros-humble-gtest-vendor + - ros-humble-ros-workspace + - ros2-distro-mutex 0.7.* humble_* + - libgcc >=13 + - libstdcxx >=13 + - libgcc >=13 + - numpy >=1.26.4,<2.0a0 + - python_abi 3.11.* *_cp311 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + license: BSD-3-Clause + size: 113399 + timestamp: 1753308151142 +- conda: https://prefix.dev/robostack-staging/osx-arm64/ros-humble-gmock-vendor-1.10.9006-np126py311h2a51a2c_13.conda + sha256: a8351f213b0edfa9c327addf500240d97c98ef990f7e7e78ca2744e735ce28d0 + md5: 3912e32c17a5d96036b186800780c514 + depends: + - python + - ros-humble-gtest-vendor + - ros-humble-ros-workspace + - ros2-distro-mutex 0.7.* humble_* + - __osx >=11.0 + - libcxx >=18 + - python_abi 3.11.* *_cp311 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + - numpy >=1.26.4,<2.0a0 + license: BSD-3-Clause + size: 113709 + timestamp: 1753308234184 +- conda: https://prefix.dev/robostack-staging/win-64/ros-humble-gmock-vendor-1.10.9006-np126py311hd5de103_13.conda + sha256: 498d72419568c66d6ece3ae062270fc9e0b43435125d67b283ec214abd1a7f59 + md5: ad97cd17b2008d3f6c441d4024c630de + depends: + - python + - ros-humble-gtest-vendor + - ros-humble-ros-workspace + - ros2-distro-mutex 0.7.* humble_* + - vc >=14.3,<15 + - vc14_runtime >=14.44.35208 + - ucrt >=10.0.20348.0 + - vc >=14.3,<15 + - vc14_runtime >=14.44.35208 + - ucrt >=10.0.20348.0 + - python_abi 3.11.* *_cp311 + - numpy >=1.26.4,<2.0a0 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + license: BSD-3-Clause + size: 111574 + timestamp: 1753309472060 +- conda: https://prefix.dev/robostack-staging/linux-64/ros-humble-gtest-vendor-1.10.9006-np126py311hbc2a38a_13.conda + sha256: 6a069fe63a49fa5056ace74da96ba86779d60d0dd1879b1f17d1843010082792 + md5: aace104a62696fc0084b6dd0df74c91a + depends: + - python + - ros-humble-ros-workspace + - ros2-distro-mutex 0.7.* humble_* + - __glibc >=2.17,<3.0.a0 + - libgcc >=13 + - libstdcxx >=13 + - libgcc >=13 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + - numpy >=1.26.4,<2.0a0 + - python_abi 3.11.* *_cp311 + license: BSD-3-Clause + size: 199953 + timestamp: 1753307886279 +- conda: https://prefix.dev/robostack-staging/linux-aarch64/ros-humble-gtest-vendor-1.10.9006-np126py311hbdd918e_13.conda + sha256: 442a9d0dfb42ce213326d3120856b30cc9a8f98bffae846998bfca0e36914f2f + md5: dcdbf382ddbd1ec064efded0c228dffc + depends: + - python + - ros-humble-ros-workspace + - ros2-distro-mutex 0.7.* humble_* + - libstdcxx >=13 + - libgcc >=13 + - numpy >=1.26.4,<2.0a0 + - python_abi 3.11.* *_cp311 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + license: BSD-3-Clause + size: 199747 + timestamp: 1753308066715 +- conda: https://prefix.dev/robostack-staging/osx-arm64/ros-humble-gtest-vendor-1.10.9006-np126py311h2a51a2c_13.conda + sha256: c91cd3a2faccbc0a978840e68c429512fba95a98e96f1340b2db519b8b2a6db0 + md5: f25a9a8f8efad58b6cfd591cd66f95a9 + depends: + - python + - ros-humble-ros-workspace + - ros2-distro-mutex 0.7.* humble_* + - __osx >=11.0 + - libcxx >=18 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + - python_abi 3.11.* *_cp311 + - numpy >=1.26.4,<2.0a0 + license: BSD-3-Clause + size: 200053 + timestamp: 1753307986725 +- conda: https://prefix.dev/robostack-staging/win-64/ros-humble-gtest-vendor-1.10.9006-np126py311hd5de103_13.conda + sha256: 49cf349d55028f4504317911f8ff2b60e4a7c56dc97093f046220a3d87dba143 + md5: 9bb13dd8c7aa3a7bb17291dc84c98322 + depends: + - python + - ros-humble-ros-workspace + - ros2-distro-mutex 0.7.* humble_* + - vc >=14.3,<15 + - vc14_runtime >=14.44.35208 + - ucrt >=10.0.20348.0 + - vc >=14.3,<15 + - vc14_runtime >=14.44.35208 + - ucrt >=10.0.20348.0 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + - numpy >=1.26.4,<2.0a0 + - python_abi 3.11.* *_cp311 + license: BSD-3-Clause + size: 198439 + timestamp: 1753308448430 +- conda: https://prefix.dev/robostack-staging/linux-64/ros-humble-iceoryx-binding-c-2.0.5-np126py311hbc2a38a_13.conda + sha256: f9b1d35c984cb911a4c5a4e01342d10eaa67a92ea8f1d0b17dd29be12791af69 + md5: 650ff6e0bf8e4a498da06f330431d500 + depends: + - python + - ros-humble-ros-workspace + - ros2-distro-mutex 0.7.* humble_* + - libstdcxx >=13 + - libgcc >=13 + - __glibc >=2.17,<3.0.a0 + - python_abi 3.11.* *_cp311 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + - numpy >=1.26.4,<2.0a0 + license: BSD-3-Clause + size: 90560 + timestamp: 1753308104072 +- conda: https://prefix.dev/robostack-staging/linux-aarch64/ros-humble-iceoryx-binding-c-2.0.5-np126py311hbdd918e_13.conda + sha256: 87b2eca790d5b0469fff316552dc5154a32290f2b4f45973ef325c9360273459 + md5: e471a0b3cbb3b0c68cb1675c91664dd5 + depends: + - python + - ros-humble-ros-workspace + - ros2-distro-mutex 0.7.* humble_* + - libstdcxx >=13 + - libgcc >=13 + - numpy >=1.26.4,<2.0a0 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + - python_abi 3.11.* *_cp311 + license: BSD-3-Clause + size: 89865 + timestamp: 1753308229195 +- conda: https://prefix.dev/robostack-staging/osx-arm64/ros-humble-iceoryx-binding-c-2.0.5-np126py311h2a51a2c_13.conda + sha256: 97b991e652b6d4f07130c5cb804b13e914e4ad24583c4f4c6ef5a168fa27d139 + md5: 9d55ffe18149c4de386ae311b19b8b06 + depends: + - python + - ros-humble-ros-workspace + - ros2-distro-mutex 0.7.* humble_* + - libcxx >=18 + - __osx >=11.0 + - python_abi 3.11.* *_cp311 + - numpy >=1.26.4,<2.0a0 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + license: BSD-3-Clause + size: 81438 + timestamp: 1753308362305 +- conda: https://prefix.dev/robostack-staging/win-64/ros-humble-iceoryx-binding-c-2.0.5-np126py311hd5de103_13.conda + sha256: fc26d3c9428019598cc562249ecd2037b44539a7a591fbe9e850857fefdb9d6d + md5: c3a72c8411af79452559e2bb89a5215b + depends: + - python + - ros-humble-ros-workspace + - ros2-distro-mutex 0.7.* humble_* + - vc >=14.3,<15 + - vc14_runtime >=14.44.35208 + - ucrt >=10.0.20348.0 + - vc >=14.3,<15 + - vc14_runtime >=14.44.35208 + - ucrt >=10.0.20348.0 + - python_abi 3.11.* *_cp311 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + - numpy >=1.26.4,<2.0a0 + license: BSD-3-Clause + size: 218308 + timestamp: 1753310097738 +- conda: https://prefix.dev/robostack-staging/linux-64/ros-humble-iceoryx-hoofs-2.0.5-np126py311hbc2a38a_13.conda + sha256: 7df5fae0de2293a476c8e774907fad267722d9bde5f8401226a2d1e50285e5e1 + md5: 2c64f7155687feb9e533e36f9b4e0233 + depends: + - libacl + - python + - ros-humble-ros-workspace + - ros2-distro-mutex 0.7.* humble_* + - __glibc >=2.17,<3.0.a0 + - libstdcxx >=13 + - libgcc >=13 + - numpy >=1.26.4,<2.0a0 + - libacl >=2.3.2,<2.4.0a0 + - python_abi 3.11.* *_cp311 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + license: BSD-3-Clause + size: 260818 + timestamp: 1753307879646 +- conda: https://prefix.dev/robostack-staging/linux-aarch64/ros-humble-iceoryx-hoofs-2.0.5-np126py311hbdd918e_13.conda + sha256: 195b3813e91a14b0cba3b6277e6e62aa296dad5b369a5bf5bd4315ff23ddddb0 + md5: 66c27fcf24eee6118a66744188bf95a5 + depends: + - libacl + - python + - ros-humble-ros-workspace + - ros2-distro-mutex 0.7.* humble_* + - libgcc >=13 + - libstdcxx >=13 + - libgcc >=13 + - numpy >=1.26.4,<2.0a0 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + - python_abi 3.11.* *_cp311 + - libacl >=2.3.2,<2.4.0a0 + license: BSD-3-Clause + size: 263150 + timestamp: 1753308060501 +- conda: https://prefix.dev/robostack-staging/osx-arm64/ros-humble-iceoryx-hoofs-2.0.5-np126py311h2a51a2c_13.conda + sha256: 026871b4e52027069f79e1f21a46c7db362fa78d313adbbad94b892f3df70a8e + md5: ba3fd9b55e9719745218a044c00b8a73 + depends: + - python + - ros-humble-ros-workspace + - ros2-distro-mutex 0.7.* humble_* + - __osx >=11.0 + - libcxx >=18 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + - python_abi 3.11.* *_cp311 + - numpy >=1.26.4,<2.0a0 + license: BSD-3-Clause + size: 257679 + timestamp: 1753308068075 +- conda: https://prefix.dev/robostack-staging/win-64/ros-humble-iceoryx-hoofs-2.0.5-np126py311hd5de103_13.conda + sha256: a24825f5878d87147576618de3bddcbacb628afe2a68b56ec331ef64b365f657 + md5: 1a1a3f30eb1cb06674748e43bd3acf26 + depends: + - python + - ros-humble-ros-workspace + - ros2-distro-mutex 0.7.* humble_* + - vc >=14.3,<15 + - vc14_runtime >=14.44.35208 + - ucrt >=10.0.20348.0 + - vc >=14.3,<15 + - vc14_runtime >=14.44.35208 + - ucrt >=10.0.20348.0 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + - python_abi 3.11.* *_cp311 + - numpy >=1.26.4,<2.0a0 + license: BSD-3-Clause + size: 729897 + timestamp: 1753308539200 +- conda: https://prefix.dev/robostack-staging/linux-64/ros-humble-iceoryx-posh-2.0.5-np126py311hbc2a38a_13.conda + sha256: 23a7bcad9d8a0ff2d28f4bbdb3a732ff1cc9b99541ee514e654725654b519deb + md5: c56a792e181ffd5323244ca66b81184d + depends: + - python + - ros-humble-iceoryx-hoofs + - ros-humble-ros-workspace + - ros2-distro-mutex 0.7.* humble_* + - libgcc >=13 + - libstdcxx >=13 + - libgcc >=13 + - __glibc >=2.17,<3.0.a0 + - python_abi 3.11.* *_cp311 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + - numpy >=1.26.4,<2.0a0 + license: BSD-3-Clause + size: 566643 + timestamp: 1753308009144 +- conda: https://prefix.dev/robostack-staging/linux-aarch64/ros-humble-iceoryx-posh-2.0.5-np126py311hbdd918e_13.conda + sha256: 4ad0ccdb9030c6cf94d07b3efa515dd302128e17824f8a3a283fa0043f387853 + md5: 2348ddaed8621133553dabde4cc8b171 + depends: + - python + - ros-humble-iceoryx-hoofs + - ros-humble-ros-workspace + - ros2-distro-mutex 0.7.* humble_* + - libgcc >=13 + - libstdcxx >=13 + - libgcc >=13 + - python_abi 3.11.* *_cp311 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + - numpy >=1.26.4,<2.0a0 + license: BSD-3-Clause + size: 571724 + timestamp: 1753308154921 +- conda: https://prefix.dev/robostack-staging/osx-arm64/ros-humble-iceoryx-posh-2.0.5-np126py311h2a51a2c_13.conda + sha256: fce179db780017179183a5ed7d29f2593926c73b2899ef1a85c67773ab003110 + md5: 613dd4df8f1ae885e662c43568285f0a + depends: + - python + - ros-humble-iceoryx-hoofs + - ros-humble-ros-workspace + - ros2-distro-mutex 0.7.* humble_* + - __osx >=11.0 + - libcxx >=18 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + - numpy >=1.26.4,<2.0a0 + - python_abi 3.11.* *_cp311 + license: BSD-3-Clause + size: 433004 + timestamp: 1753308243943 +- conda: https://prefix.dev/robostack-staging/win-64/ros-humble-iceoryx-posh-2.0.5-np126py311hd5de103_13.conda + sha256: e8785dd36d286f5d2714c87ca81d79e1147c3215a4f7844cc68264d5904336cb + md5: af0fd29c29ff6db3f453d14a0ef876d4 + depends: + - python + - ros-humble-iceoryx-hoofs + - ros-humble-ros-workspace + - ros2-distro-mutex 0.7.* humble_* + - vc >=14.3,<15 + - vc14_runtime >=14.44.35208 + - ucrt >=10.0.20348.0 + - vc >=14.3,<15 + - vc14_runtime >=14.44.35208 + - ucrt >=10.0.20348.0 + - python_abi 3.11.* *_cp311 + - numpy >=1.26.4,<2.0a0 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + license: BSD-3-Clause + size: 2163996 + timestamp: 1753309506390 +- conda: https://prefix.dev/robostack-staging/linux-64/ros-humble-ignition-cmake2-vendor-0.0.2-np126py311h58b36e0_13.conda + sha256: dd18611970cfdc80dfcf7886e6103b122e9631aee9065efeec21a673966146b3 + md5: 1c35afea3f23a4cb0216e79bb21c9af7 + depends: + - libignition-cmake2 + - python + - ros-humble-ros-workspace + - ros2-distro-mutex 0.7.* humble_* + - __glibc >=2.17,<3.0.a0 + - libstdcxx >=13 + - libgcc >=13 + - graphviz >=12.2.1,<13.0a0 + - libignition-cmake2 >=2.17.2,<3.0a0 + - numpy >=1.26.4,<2.0a0 + - python_abi 3.11.* *_cp311 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + license: BSD-3-Clause + size: 28599 + timestamp: 1753309488213 +- conda: https://prefix.dev/robostack-staging/linux-aarch64/ros-humble-ignition-cmake2-vendor-0.0.2-np126py311hfe9da55_13.conda + sha256: b44493029f7c4c696b4fdda0a7811fc6e9d648f8562a30dd880f4e863442ec0d + md5: 8d92b04d8f701ed140c97a66be9fa6e7 + depends: + - libignition-cmake2 + - python + - ros-humble-ros-workspace + - ros2-distro-mutex 0.7.* humble_* + - libgcc >=13 + - libstdcxx >=13 + - libgcc >=13 + - python_abi 3.11.* *_cp311 + - libignition-cmake2 >=2.17.2,<3.0a0 + - numpy >=1.26.4,<2.0a0 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + - graphviz >=12.2.1,<13.0a0 + license: BSD-3-Clause + size: 29459 + timestamp: 1753309354092 +- conda: https://prefix.dev/robostack-staging/osx-arm64/ros-humble-ignition-cmake2-vendor-0.0.2-np126py311h26a17a2_13.conda + sha256: 5f057e90dc464ad4814b87f7fd86d3a6327fbadf29ba7234658567796a4e35e2 + md5: a853f55158a555bef2af394a9ba77b96 + depends: + - libignition-cmake2 + - python + - ros-humble-ros-workspace + - ros2-distro-mutex 0.7.* humble_* + - __osx >=11.0 + - libcxx >=18 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + - graphviz >=12.2.1,<13.0a0 + - python_abi 3.11.* *_cp311 + - numpy >=1.26.4,<2.0a0 + - libignition-cmake2 >=2.17.2,<3.0a0 + license: BSD-3-Clause + size: 26912 + timestamp: 1753310062103 +- conda: https://prefix.dev/robostack-staging/win-64/ros-humble-ignition-cmake2-vendor-0.0.2-np126py311h4715f36_13.conda + sha256: 53e5e3c8ff60ead128e38df9dc38608f0cbf3eacca263d12acc76f19d8b90c6f + md5: 8989e1169f066cc5f412b0435947f6d0 + depends: + - libignition-cmake2 + - python + - ros-humble-ros-workspace + - ros2-distro-mutex 0.7.* humble_* + - vc >=14.3,<15 + - vc14_runtime >=14.44.35208 + - ucrt >=10.0.20348.0 + - vc >=14.3,<15 + - vc14_runtime >=14.44.35208 + - ucrt >=10.0.20348.0 + - python_abi 3.11.* *_cp311 + - libignition-cmake2 >=2.17.2,<3.0a0 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + - graphviz >=12.2.1,<13.0a0 + - numpy >=1.26.4,<2.0a0 + license: BSD-3-Clause + size: 20787 + timestamp: 1753317212592 +- conda: https://prefix.dev/robostack-staging/linux-64/ros-humble-ignition-math6-vendor-0.0.2-np126py311hbc2a38a_13.conda + sha256: 5b5c6d6b8e4e4caa7ff9ba9491c5360c4d829f50ca3c8379d3435b23e9d0c4e1 + md5: 2860d950971841fa14ddddfa26fc8351 + depends: + - libignition-math6 + - python + - ros-humble-ignition-cmake2-vendor + - ros-humble-ros-workspace + - ros2-distro-mutex 0.7.* humble_* + - __glibc >=2.17,<3.0.a0 + - libgcc >=13 + - libstdcxx >=13 + - libgcc >=13 + - python_abi 3.11.* *_cp311 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + - libignition-math6 >=6.15.1,<7.0a0 + - numpy >=1.26.4,<2.0a0 + license: BSD-3-Clause + size: 26056 + timestamp: 1753309530282 +- conda: https://prefix.dev/robostack-staging/linux-aarch64/ros-humble-ignition-math6-vendor-0.0.2-np126py311hbdd918e_13.conda + sha256: d3b0eccfc1d90aff4096c69376c9b688ea00230d895aef88fdb98b768d12be00 + md5: d1c7572bf135af823b6a43e19fbcf3f1 + depends: + - libignition-math6 + - python + - ros-humble-ignition-cmake2-vendor + - ros-humble-ros-workspace + - ros2-distro-mutex 0.7.* humble_* + - libstdcxx >=13 + - libgcc >=13 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + - numpy >=1.26.4,<2.0a0 + - python_abi 3.11.* *_cp311 + - libignition-math6 >=6.15.1,<7.0a0 + license: BSD-3-Clause + size: 25797 + timestamp: 1753309384180 +- conda: https://prefix.dev/robostack-staging/osx-arm64/ros-humble-ignition-math6-vendor-0.0.2-np126py311h2a51a2c_13.conda + sha256: f024a1391ca7ac866304379761e3934769e96d51eaac1177e88d1af9a3481922 + md5: fff07b5aa38a5c81c580119278e6284e + depends: + - libignition-math6 + - python + - ros-humble-ignition-cmake2-vendor + - ros-humble-ros-workspace + - ros2-distro-mutex 0.7.* humble_* + - __osx >=11.0 + - libcxx >=18 + - numpy >=1.26.4,<2.0a0 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + - python_abi 3.11.* *_cp311 + - libignition-math6 >=6.15.1,<7.0a0 + license: BSD-3-Clause + size: 23167 + timestamp: 1753310097227 +- conda: https://prefix.dev/robostack-staging/win-64/ros-humble-ignition-math6-vendor-0.0.2-np126py311hd5de103_13.conda + sha256: ec463cc2a4a0d91df966dded5717f69d54f3ab12d33f67592f3a2750c061c9e3 + md5: 4ac64b247548bb01e5fdf7f5b4aa25b5 + depends: + - libignition-math6 + - python + - ros-humble-ignition-cmake2-vendor + - ros-humble-ros-workspace + - ros2-distro-mutex 0.7.* humble_* + - vc >=14.3,<15 + - vc14_runtime >=14.44.35208 + - ucrt >=10.0.20348.0 + - vc >=14.3,<15 + - vc14_runtime >=14.44.35208 + - ucrt >=10.0.20348.0 + - libignition-math6 >=6.15.1,<7.0a0 + - python_abi 3.11.* *_cp311 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + - numpy >=1.26.4,<2.0a0 + license: BSD-3-Clause + size: 21126 + timestamp: 1753317837916 +- conda: https://prefix.dev/robostack-staging/linux-64/ros-humble-image-geometry-3.2.1-np126py311hea4e58e_13.conda + sha256: 57996a4b40dc64845f5eeaea909e3e81834684a307bb54606c471537a51f2c4f + md5: 741f25e141f8c9000e7d5d3b6e3b6c75 + depends: + - libopencv + - py-opencv + - python + - ros-humble-ros-workspace + - ros-humble-sensor-msgs + - ros2-distro-mutex 0.7.* humble_* + - xorg-libx11 + - xorg-libxext + - __glibc >=2.17,<3.0.a0 + - libgcc >=13 + - libstdcxx >=13 + - libgcc >=13 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + - xorg-libxext >=1.3.6,<2.0a0 + - py-opencv >=4.11.0,<5.0a0 + - libgl >=1.7.0,<2.0a0 + - python_abi 3.11.* *_cp311 + - xorg-libx11 >=1.8.12,<2.0a0 + - libopencv >=4.11.0,<4.11.1.0a0 + - libopengl >=1.7.0,<2.0a0 + - numpy >=1.26.4,<2.0a0 + license: BSD-3-Clause + size: 78851 + timestamp: 1753312435371 +- conda: https://prefix.dev/robostack-staging/linux-aarch64/ros-humble-image-geometry-3.2.1-np126py311hcce1eb7_13.conda + sha256: 5ec3b25f2e9076494b95bb982d06e6c28ba549a6953a2cdbb12434f1c416e486 + md5: ef742f8e0ce10d462eca0f1f27c15beb + depends: + - libopencv + - py-opencv + - python + - ros-humble-ros-workspace + - ros-humble-sensor-msgs + - ros2-distro-mutex 0.7.* humble_* + - xorg-libx11 + - xorg-libxext + - libstdcxx >=13 + - libgcc >=13 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + - libopengl >=1.7.0,<2.0a0 + - numpy >=1.26.4,<2.0a0 + - libopencv >=4.11.0,<4.11.1.0a0 + - python_abi 3.11.* *_cp311 + - xorg-libxext >=1.3.6,<2.0a0 + - xorg-libx11 >=1.8.12,<2.0a0 + - libgl >=1.7.0,<2.0a0 + - py-opencv >=4.11.0,<5.0a0 + license: BSD-3-Clause + size: 78562 + timestamp: 1753312817161 +- conda: https://prefix.dev/robostack-staging/osx-arm64/ros-humble-image-geometry-3.2.1-np126py311h3f06965_13.conda + sha256: 101022dc1a3141b562cc6e1de667d2bdd77e0fd54a70c9608d63835078a5f460 + md5: b4fb55b69719ad8876520bbfcdf96a27 + depends: + - libopencv + - py-opencv + - python + - ros-humble-ros-workspace + - ros-humble-sensor-msgs + - ros2-distro-mutex 0.7.* humble_* + - xorg-libx11 + - xorg-libxext + - libcxx >=18 + - __osx >=11.0 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + - libopencv >=4.11.0,<4.11.1.0a0 + - xorg-libxext >=1.3.6,<2.0a0 + - xorg-libx11 >=1.8.12,<2.0a0 + - py-opencv >=4.11.0,<5.0a0 + - numpy >=1.26.4,<2.0a0 + - python_abi 3.11.* *_cp311 + license: BSD-3-Clause + size: 65939 + timestamp: 1753312167143 +- conda: https://prefix.dev/robostack-staging/win-64/ros-humble-image-geometry-3.2.1-np126py311hbbd77cb_13.conda + sha256: 2f05e76899e4bfe4d71088af59a03eae2d41d9448ed112fb022a4f43370185d4 + md5: cb6bb39c8a08c54c06d3c52125b56136 + depends: + - libopencv + - py-opencv + - python + - ros-humble-ros-workspace + - ros-humble-sensor-msgs + - ros2-distro-mutex 0.7.* humble_* + - vc >=14.3,<15 + - vc14_runtime >=14.44.35208 + - ucrt >=10.0.20348.0 + - vc >=14.3,<15 + - vc14_runtime >=14.44.35208 + - ucrt >=10.0.20348.0 + - python_abi 3.11.* *_cp311 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + - py-opencv >=4.11.0,<5.0a0 + - numpy >=1.26.4,<2.0a0 + - libopencv >=4.11.0,<4.11.1.0a0 + license: BSD-3-Clause + size: 67896 + timestamp: 1753328041863 +- conda: https://prefix.dev/robostack-staging/linux-64/ros-humble-image-tools-0.20.5-np126py311hea4e58e_13.conda + sha256: 25e633a0c641c7ac72d22d38d24be25f1c9a65d4d70203185d29d06ba2de2886 + md5: 55b00b2084c2e24fa9dae5532c317f74 + depends: + - libopencv + - libopencv * *qt6* + - py-opencv + - python + - ros-humble-rclcpp + - ros-humble-rclcpp-components + - ros-humble-ros-workspace + - ros-humble-sensor-msgs + - ros-humble-std-msgs + - ros2-distro-mutex 0.7.* humble_* + - xorg-libx11 + - xorg-libxext + - libgcc >=13 + - __glibc >=2.17,<3.0.a0 + - libstdcxx >=13 + - libgcc >=13 + - numpy >=1.26.4,<2.0a0 + - xorg-libx11 >=1.8.12,<2.0a0 + - python_abi 3.11.* *_cp311 + - libgl >=1.7.0,<2.0a0 + - libopengl >=1.7.0,<2.0a0 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + - py-opencv >=4.11.0,<5.0a0 + - libopencv >=4.11.0,<4.11.1.0a0 + - xorg-libxext >=1.3.6,<2.0a0 + license: BSD-3-Clause + size: 288981 + timestamp: 1753313926425 +- conda: https://prefix.dev/robostack-staging/linux-aarch64/ros-humble-image-tools-0.20.5-np126py311hcce1eb7_13.conda + sha256: dcb3fdcdf75d1fb358707217821e2a1b73948596a91de77f9ae3fd13dd9fc986 + md5: f1c5e01f0d3e2ac58300cd57766967d2 + depends: + - libopencv + - libopencv * *qt6* + - py-opencv + - python + - ros-humble-rclcpp + - ros-humble-rclcpp-components + - ros-humble-ros-workspace + - ros-humble-sensor-msgs + - ros-humble-std-msgs + - ros2-distro-mutex 0.7.* humble_* + - xorg-libx11 + - xorg-libxext + - libstdcxx >=13 + - libgcc >=13 + - libopencv >=4.11.0,<4.11.1.0a0 + - xorg-libxext >=1.3.6,<2.0a0 + - libopengl >=1.7.0,<2.0a0 + - xorg-libx11 >=1.8.12,<2.0a0 + - py-opencv >=4.11.0,<5.0a0 + - numpy >=1.26.4,<2.0a0 + - libgl >=1.7.0,<2.0a0 + - python_abi 3.11.* *_cp311 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + license: BSD-3-Clause + size: 288045 + timestamp: 1753314038331 +- conda: https://prefix.dev/robostack-staging/osx-arm64/ros-humble-image-tools-0.20.5-np126py311h3f06965_13.conda + sha256: bacedb000aa820427ebb4f9270349dc32c3203f6e1a9d8f8755da9ab3d243359 + md5: 1593b72ae25359738a988f3b3413ebfd + depends: + - libopencv + - libopencv * *qt6* + - py-opencv + - python + - ros-humble-rclcpp + - ros-humble-rclcpp-components + - ros-humble-ros-workspace + - ros-humble-sensor-msgs + - ros-humble-std-msgs + - ros2-distro-mutex 0.7.* humble_* + - xorg-libx11 + - xorg-libxext + - __osx >=11.0 + - libcxx >=18 + - python_abi 3.11.* *_cp311 + - xorg-libxext >=1.3.6,<2.0a0 + - xorg-libx11 >=1.8.12,<2.0a0 + - libopencv >=4.11.0,<4.11.1.0a0 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + - numpy >=1.26.4,<2.0a0 + - py-opencv >=4.11.0,<5.0a0 + license: BSD-3-Clause + size: 235053 + timestamp: 1753313877515 +- conda: https://prefix.dev/robostack-staging/win-64/ros-humble-image-tools-0.20.5-np126py311hbbd77cb_13.conda + sha256: a8b2395e7ba40bb10fa65db18ffda96463dca8c43ca0a7b688d78ef9c9cba599 + md5: 760d0c15e1726e63c7444520065963a8 + depends: + - libopencv + - libopencv * *qt6* + - py-opencv + - python + - ros-humble-rclcpp + - ros-humble-rclcpp-components + - ros-humble-ros-workspace + - ros-humble-sensor-msgs + - ros-humble-std-msgs + - ros2-distro-mutex 0.7.* humble_* + - vc >=14.3,<15 + - vc14_runtime >=14.44.35208 + - ucrt >=10.0.20348.0 + - vc >=14.3,<15 + - vc14_runtime >=14.44.35208 + - ucrt >=10.0.20348.0 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + - numpy >=1.26.4,<2.0a0 + - py-opencv >=4.11.0,<5.0a0 + - libopencv >=4.11.0,<4.11.1.0a0 + - python_abi 3.11.* *_cp311 + license: BSD-3-Clause + size: 185141 + timestamp: 1753334556100 +- conda: https://prefix.dev/robostack-staging/linux-64/ros-humble-image-transport-3.1.12-np126py311hbc2a38a_13.conda + sha256: fd92c854a89fe86ea684a59c3f65d7bfce15d334113a66479b9bf60cf64fa39d + md5: a5898df73af1b67924740bac78eb2aed + depends: + - python + - ros-humble-message-filters + - ros-humble-pluginlib + - ros-humble-rclcpp + - ros-humble-ros-workspace + - ros-humble-sensor-msgs + - ros2-distro-mutex 0.7.* humble_* + - __glibc >=2.17,<3.0.a0 + - libgcc >=13 + - libstdcxx >=13 + - libgcc >=13 + - numpy >=1.26.4,<2.0a0 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + - python_abi 3.11.* *_cp311 + license: BSD-3-Clause + size: 543688 + timestamp: 1753313922042 +- conda: https://prefix.dev/robostack-staging/linux-aarch64/ros-humble-image-transport-3.1.12-np126py311hbdd918e_13.conda + sha256: 1bf44c6d67e776d802ab529b4a727c616a7d67b6b7581fbf99113b86f34ed0c8 + md5: d4ac956b639c6750c0b96147de3d5378 + depends: + - python + - ros-humble-message-filters + - ros-humble-pluginlib + - ros-humble-rclcpp + - ros-humble-ros-workspace + - ros-humble-sensor-msgs + - ros2-distro-mutex 0.7.* humble_* + - libstdcxx >=13 + - libgcc >=13 + - numpy >=1.26.4,<2.0a0 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + - python_abi 3.11.* *_cp311 + license: BSD-3-Clause + size: 548825 + timestamp: 1753314043667 +- conda: https://prefix.dev/robostack-staging/osx-arm64/ros-humble-image-transport-3.1.12-np126py311h2a51a2c_13.conda + sha256: 9a8f5b48415a593cbf4c142021d8e202132336e3621c89682fa62f94010d7a30 + md5: 30f3960f4974c7fc22b8b1ce4b2c8e5d + depends: + - python + - ros-humble-message-filters + - ros-humble-pluginlib + - ros-humble-rclcpp + - ros-humble-ros-workspace + - ros-humble-sensor-msgs + - ros2-distro-mutex 0.7.* humble_* + - libcxx >=18 + - __osx >=11.0 + - numpy >=1.26.4,<2.0a0 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + - python_abi 3.11.* *_cp311 + license: BSD-3-Clause + size: 387904 + timestamp: 1753313981471 +- conda: https://prefix.dev/robostack-staging/win-64/ros-humble-image-transport-3.1.12-np126py311hd5de103_13.conda + sha256: 1d42370d4dc266407c8f7e95012a216e2cbd41926d426b941bbc2a4483286a8e + md5: 8e84543b96cd3ebc6bd88fc77218d382 + depends: + - python + - ros-humble-message-filters + - ros-humble-pluginlib + - ros-humble-rclcpp + - ros-humble-ros-workspace + - ros-humble-sensor-msgs + - ros2-distro-mutex 0.7.* humble_* + - vc >=14.3,<15 + - vc14_runtime >=14.44.35208 + - ucrt >=10.0.20348.0 + - vc >=14.3,<15 + - vc14_runtime >=14.44.35208 + - ucrt >=10.0.20348.0 + - numpy >=1.26.4,<2.0a0 + - python_abi 3.11.* *_cp311 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + license: BSD-3-Clause + size: 328118 + timestamp: 1753334887585 +- conda: https://prefix.dev/robostack-staging/linux-64/ros-humble-interactive-markers-2.3.2-np126py311hbc2a38a_13.conda + sha256: 07446256a6841db76989d16db3050599a0b07feb8565ac6f07e0507b1b2a54a4 + md5: cbf91c10c269975a1f6db0b7eb48366d + depends: + - python + - ros-humble-builtin-interfaces + - ros-humble-rclcpp + - ros-humble-rclpy + - ros-humble-rmw + - ros-humble-ros-workspace + - ros-humble-tf2 + - ros-humble-tf2-geometry-msgs + - ros-humble-visualization-msgs + - ros2-distro-mutex 0.7.* humble_* + - libstdcxx >=13 + - libgcc >=13 + - __glibc >=2.17,<3.0.a0 + - libgcc >=13 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + - numpy >=1.26.4,<2.0a0 + - python_abi 3.11.* *_cp311 + license: BSD-3-Clause + size: 318221 + timestamp: 1753314484876 +- conda: https://prefix.dev/robostack-staging/linux-aarch64/ros-humble-interactive-markers-2.3.2-np126py311hbdd918e_13.conda + sha256: 19a918612cd556c96897ce220aa58a1af186dbdd99591328dea49b5bfc58925c + md5: 71d4e421fddf4885dd534ecd53ec2da4 + depends: + - python + - ros-humble-builtin-interfaces + - ros-humble-rclcpp + - ros-humble-rclpy + - ros-humble-rmw + - ros-humble-ros-workspace + - ros-humble-tf2 + - ros-humble-tf2-geometry-msgs + - ros-humble-visualization-msgs + - ros2-distro-mutex 0.7.* humble_* + - libstdcxx >=13 + - libgcc >=13 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + - python_abi 3.11.* *_cp311 + - numpy >=1.26.4,<2.0a0 + license: BSD-3-Clause + size: 312197 + timestamp: 1753314498917 +- conda: https://prefix.dev/robostack-staging/osx-arm64/ros-humble-interactive-markers-2.3.2-np126py311h2a51a2c_13.conda + sha256: c2a95aaf1249e3c659c8f5f82592926d3e0f59a9e0f52703dc4efbf2b4dfd1d6 + md5: 7368292b2a53965426cd1e4746035a5d + depends: + - python + - ros-humble-builtin-interfaces + - ros-humble-rclcpp + - ros-humble-rclpy + - ros-humble-rmw + - ros-humble-ros-workspace + - ros-humble-tf2 + - ros-humble-tf2-geometry-msgs + - ros-humble-visualization-msgs + - ros2-distro-mutex 0.7.* humble_* + - __osx >=11.0 + - libcxx >=18 + - python_abi 3.11.* *_cp311 + - numpy >=1.26.4,<2.0a0 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + license: BSD-3-Clause + size: 255347 + timestamp: 1753315014278 +- conda: https://prefix.dev/robostack-staging/win-64/ros-humble-interactive-markers-2.3.2-np126py311hd5de103_13.conda + sha256: 7b637c7bd232fd29c8b801c7b3da3e39620dd834a9c281a19b748b673069c934 + md5: c598a39099cd785ef256825365db3b1e + depends: + - python + - ros-humble-builtin-interfaces + - ros-humble-rclcpp + - ros-humble-rclpy + - ros-humble-rmw + - ros-humble-ros-workspace + - ros-humble-tf2 + - ros-humble-tf2-geometry-msgs + - ros-humble-visualization-msgs + - ros2-distro-mutex 0.7.* humble_* + - vc >=14.3,<15 + - vc14_runtime >=14.44.35208 + - ucrt >=10.0.20348.0 + - vc >=14.3,<15 + - vc14_runtime >=14.44.35208 + - ucrt >=10.0.20348.0 + - numpy >=1.26.4,<2.0a0 + - python_abi 3.11.* *_cp311 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + license: BSD-3-Clause + size: 210357 + timestamp: 1753337423740 +- conda: https://prefix.dev/robostack-staging/linux-64/ros-humble-intra-process-demo-0.20.5-np126py311hea4e58e_13.conda + sha256: ef9a85016d482c44f7f76f55cfbb5b03301b360c2540cf7df6341a00753cd7a2 + md5: dbe0f3aa52371e08b0460a9fd66fc1da + depends: + - libopencv + - libopencv * *qt6* + - py-opencv + - python + - ros-humble-rclcpp + - ros-humble-ros-workspace + - ros-humble-sensor-msgs + - ros2-distro-mutex 0.7.* humble_* + - xorg-libx11 + - xorg-libxext + - __glibc >=2.17,<3.0.a0 + - libgcc >=13 + - libstdcxx >=13 + - libgcc >=13 + - libgl >=1.7.0,<2.0a0 + - py-opencv >=4.11.0,<5.0a0 + - numpy >=1.26.4,<2.0a0 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + - xorg-libx11 >=1.8.12,<2.0a0 + - libopengl >=1.7.0,<2.0a0 + - xorg-libxext >=1.3.6,<2.0a0 + - libopencv >=4.11.0,<4.11.1.0a0 + - python_abi 3.11.* *_cp311 + license: BSD-3-Clause + size: 503463 + timestamp: 1753313144077 +- conda: https://prefix.dev/robostack-staging/linux-aarch64/ros-humble-intra-process-demo-0.20.5-np126py311hcce1eb7_13.conda + sha256: 669176085371f6e0202832d95aa633c50742326f6b4f95ca1e29884aa58f51fc + md5: c7c4dcb3cc6af2b6b36b7968d506dc73 + depends: + - libopencv + - libopencv * *qt6* + - py-opencv + - python + - ros-humble-rclcpp + - ros-humble-ros-workspace + - ros-humble-sensor-msgs + - ros2-distro-mutex 0.7.* humble_* + - xorg-libx11 + - xorg-libxext + - libstdcxx >=13 + - libgcc >=13 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + - py-opencv >=4.11.0,<5.0a0 + - xorg-libx11 >=1.8.12,<2.0a0 + - libopencv >=4.11.0,<4.11.1.0a0 + - numpy >=1.26.4,<2.0a0 + - xorg-libxext >=1.3.6,<2.0a0 + - libopengl >=1.7.0,<2.0a0 + - python_abi 3.11.* *_cp311 + - libgl >=1.7.0,<2.0a0 + license: BSD-3-Clause + size: 502486 + timestamp: 1753313387158 +- conda: https://prefix.dev/robostack-staging/osx-arm64/ros-humble-intra-process-demo-0.20.5-np126py311h3f06965_13.conda + sha256: 59bb6c7f923d2c5700723a235e324f0851b8ab589ecd7d34ddab7d8ed7e260be + md5: 238e93bbec1f1d55d5f9caf882fd2f1f + depends: + - libopencv + - libopencv * *qt6* + - py-opencv + - python + - ros-humble-rclcpp + - ros-humble-ros-workspace + - ros-humble-sensor-msgs + - ros2-distro-mutex 0.7.* humble_* + - xorg-libx11 + - xorg-libxext + - libcxx >=18 + - __osx >=11.0 + - xorg-libx11 >=1.8.12,<2.0a0 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + - py-opencv >=4.11.0,<5.0a0 + - numpy >=1.26.4,<2.0a0 + - libopencv >=4.11.0,<4.11.1.0a0 + - xorg-libxext >=1.3.6,<2.0a0 + - python_abi 3.11.* *_cp311 + license: BSD-3-Clause + size: 390557 + timestamp: 1753313078262 +- conda: https://prefix.dev/robostack-staging/win-64/ros-humble-intra-process-demo-0.20.5-np126py311hbbd77cb_13.conda + sha256: 3a2d072f9b1818a1d609c15040db0ed8fa5e1983c71173b0ee7646c5a58edab2 + md5: 3dd9b2e69c517d440eb4c8f54410099d + depends: + - libopencv + - libopencv * *qt6* + - py-opencv + - python + - ros-humble-rclcpp + - ros-humble-ros-workspace + - ros-humble-sensor-msgs + - ros2-distro-mutex 0.7.* humble_* + - vc >=14.3,<15 + - vc14_runtime >=14.44.35208 + - ucrt >=10.0.20348.0 + - vc >=14.3,<15 + - vc14_runtime >=14.44.35208 + - ucrt >=10.0.20348.0 + - python_abi 3.11.* *_cp311 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + - py-opencv >=4.11.0,<5.0a0 + - numpy >=1.26.4,<2.0a0 + - libopencv >=4.11.0,<4.11.1.0a0 + license: BSD-3-Clause + size: 290215 + timestamp: 1753331998179 +- conda: https://prefix.dev/robostack-staging/linux-64/ros-humble-joy-3.3.0-np126py311hbc2a38a_13.conda + sha256: 2420aef3ab90ab5402f35362c4849c47dbf132b81534cbfdf4fd9edcff7502e1 + md5: 558da7bee3fd59c869cbd50692d13d9a + depends: + - python + - ros-humble-rclcpp + - ros-humble-rclcpp-components + - ros-humble-ros-workspace + - ros-humble-sdl2-vendor + - ros-humble-sensor-msgs + - ros2-distro-mutex 0.7.* humble_* + - __glibc >=2.17,<3.0.a0 + - libgcc >=13 + - libstdcxx >=13 + - libgcc >=13 + - numpy >=1.26.4,<2.0a0 + - python_abi 3.11.* *_cp311 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + license: BSD-3-Clause + size: 271149 + timestamp: 1753313532760 +- conda: https://prefix.dev/robostack-staging/linux-aarch64/ros-humble-joy-3.3.0-np126py311hbdd918e_13.conda + sha256: 6e1efa4eb8aa9bb2512a516d57c0b2481c3033e7a5be6256f319102bb4b626b7 + md5: 0133e2297ca4706fb4369a1df984ca8b + depends: + - python + - ros-humble-rclcpp + - ros-humble-rclcpp-components + - ros-humble-ros-workspace + - ros-humble-sdl2-vendor + - ros-humble-sensor-msgs + - ros2-distro-mutex 0.7.* humble_* + - libstdcxx >=13 + - libgcc >=13 + - numpy >=1.26.4,<2.0a0 + - python_abi 3.11.* *_cp311 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + license: BSD-3-Clause + size: 273336 + timestamp: 1753313703420 +- conda: https://prefix.dev/robostack-staging/osx-arm64/ros-humble-joy-3.3.0-np126py311h2a51a2c_13.conda + sha256: b003e4a079f9e5839a5817697c8bfca884fd19a640a26bff50bf515e10932c04 + md5: 94bffaf3609b231940f6c32aa3c9c4bb + depends: + - python + - ros-humble-rclcpp + - ros-humble-rclcpp-components + - ros-humble-ros-workspace + - ros-humble-sdl2-vendor + - ros-humble-sensor-msgs + - ros2-distro-mutex 0.7.* humble_* + - libcxx >=18 + - __osx >=11.0 + - numpy >=1.26.4,<2.0a0 + - python_abi 3.11.* *_cp311 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + license: BSD-3-Clause + size: 215924 + timestamp: 1753313492867 +- conda: https://prefix.dev/robostack-staging/win-64/ros-humble-joy-3.3.0-np126py311hd5de103_13.conda + sha256: f2ca6655b33e19ff58f2f1433505768598f09d6e28dfbc2f65dc5e6b72e79d27 + md5: f0a25d9dabfdde8a7750e21d460d2c92 + depends: + - python + - ros-humble-rclcpp + - ros-humble-rclcpp-components + - ros-humble-ros-workspace + - ros-humble-sdl2-vendor + - ros-humble-sensor-msgs + - ros2-distro-mutex 0.7.* humble_* + - vc >=14.3,<15 + - vc14_runtime >=14.44.35208 + - ucrt >=10.0.20348.0 + - vc >=14.3,<15 + - vc14_runtime >=14.44.35208 + - ucrt >=10.0.20348.0 + - python_abi 3.11.* *_cp311 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + - numpy >=1.26.4,<2.0a0 + license: BSD-3-Clause + size: 179013 + timestamp: 1753333248048 +- conda: https://prefix.dev/robostack-staging/linux-64/ros-humble-kdl-parser-2.6.4-np126py311hbc2a38a_13.conda + sha256: 9b329a3b569c69def0bf93dbf5a6f23d5b1c97ad0862e4cde544fd39c52167ae + md5: bf13572b451a5464ab4bfbb6e6caafb4 + depends: + - python + - ros-humble-orocos-kdl-vendor + - ros-humble-rcutils + - ros-humble-ros-workspace + - ros-humble-urdf + - ros-humble-urdfdom-headers + - ros2-distro-mutex 0.7.* humble_* + - libstdcxx >=13 + - libgcc >=13 + - __glibc >=2.17,<3.0.a0 + - libgcc >=13 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + - numpy >=1.26.4,<2.0a0 + - python_abi 3.11.* *_cp311 + license: BSD-3-Clause + size: 46615 + timestamp: 1753310374807 +- conda: https://prefix.dev/robostack-staging/linux-aarch64/ros-humble-kdl-parser-2.6.4-np126py311hbdd918e_13.conda + sha256: ff3ae15122d34c97690258e8538af80639e0a25098fc8632539fe4f25b7e8fb7 + md5: 3bdcecfd30b2ece085a4db7ecb09ce02 + depends: + - python + - ros-humble-orocos-kdl-vendor + - ros-humble-rcutils + - ros-humble-ros-workspace + - ros-humble-urdf + - ros-humble-urdfdom-headers + - ros2-distro-mutex 0.7.* humble_* + - libgcc >=13 + - libstdcxx >=13 + - libgcc >=13 + - python_abi 3.11.* *_cp311 + - numpy >=1.26.4,<2.0a0 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + license: BSD-3-Clause + size: 47500 + timestamp: 1753312077498 +- conda: https://prefix.dev/robostack-staging/osx-arm64/ros-humble-kdl-parser-2.6.4-np126py311h2a51a2c_13.conda + sha256: 05495807d2887853fc28b000f68e8af37bfeb516e0f4609398544f91a89c7dc0 + md5: fa2bde0de34656e30982385584c07e20 + depends: + - python + - ros-humble-orocos-kdl-vendor + - ros-humble-rcutils + - ros-humble-ros-workspace + - ros-humble-urdf + - ros-humble-urdfdom-headers + - ros2-distro-mutex 0.7.* humble_* + - __osx >=11.0 + - libcxx >=18 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + - numpy >=1.26.4,<2.0a0 + - python_abi 3.11.* *_cp311 + license: BSD-3-Clause + size: 47760 + timestamp: 1753310916423 +- conda: https://prefix.dev/robostack-staging/win-64/ros-humble-kdl-parser-2.6.4-np126py311hd5de103_13.conda + sha256: a90fe12e892d048cdca9676d20da17236d6ce6428263bd9925c052a2b271309a + md5: 15e306d3a025c326d5b9987285fe748b + depends: + - python + - ros-humble-orocos-kdl-vendor + - ros-humble-rcutils + - ros-humble-ros-workspace + - ros-humble-urdf + - ros-humble-urdfdom-headers + - ros2-distro-mutex 0.7.* humble_* + - vc >=14.3,<15 + - vc14_runtime >=14.44.35208 + - ucrt >=10.0.20348.0 + - vc >=14.3,<15 + - vc14_runtime >=14.44.35208 + - ucrt >=10.0.20348.0 + - python_abi 3.11.* *_cp311 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + - numpy >=1.26.4,<2.0a0 + license: BSD-3-Clause + size: 56734 + timestamp: 1753322147979 +- conda: https://prefix.dev/robostack-staging/linux-64/ros-humble-keyboard-handler-0.0.5-np126py311hbc2a38a_13.conda + sha256: 48705d3faa95b8f3cd5bb495e3528e047d7923967d9b45fdd0b364b9bf14b7d9 + md5: 1d85d1dfc7ecaafed9179d487235ceb0 + depends: + - python + - ros-humble-ros-workspace + - ros2-distro-mutex 0.7.* humble_* + - __glibc >=2.17,<3.0.a0 + - libstdcxx >=13 + - libgcc >=13 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + - numpy >=1.26.4,<2.0a0 + - python_abi 3.11.* *_cp311 + license: BSD-3-Clause + size: 54978 + timestamp: 1753309548640 +- conda: https://prefix.dev/robostack-staging/linux-aarch64/ros-humble-keyboard-handler-0.0.5-np126py311hbdd918e_13.conda + sha256: 454a3c98bcf91df82d8d7b22d38b0970ddaf51763f32d7b55f8adf40805c44f8 + md5: f806be385d7af7663598af712df027cf + depends: + - python + - ros-humble-ros-workspace + - ros2-distro-mutex 0.7.* humble_* + - libgcc >=13 + - libstdcxx >=13 + - libgcc >=13 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + - numpy >=1.26.4,<2.0a0 + - python_abi 3.11.* *_cp311 + license: BSD-3-Clause + size: 56007 + timestamp: 1753309413683 +- conda: https://prefix.dev/robostack-staging/osx-arm64/ros-humble-keyboard-handler-0.0.5-np126py311h2a51a2c_13.conda + sha256: 79d0969fb745f08d0b56b1373d31e45a767d666454735977e0b79d600c596181 + md5: ec882a2127f3ae6de7644b356593387c + depends: + - python + - ros-humble-ros-workspace + - ros2-distro-mutex 0.7.* humble_* + - libcxx >=18 + - __osx >=11.0 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + - numpy >=1.26.4,<2.0a0 + - python_abi 3.11.* *_cp311 + license: BSD-3-Clause + size: 56006 + timestamp: 1753310125732 +- conda: https://prefix.dev/robostack-staging/win-64/ros-humble-keyboard-handler-0.0.5-np126py311hd5de103_13.conda + sha256: 34ab0a5acbc691cf9ef05ee4b3ec154de7b60b4bad9e7ff41dda53f864acafbf + md5: b1f1e90bf1ecf8774b4bd1a984a83847 + depends: + - python + - ros-humble-ros-workspace + - ros2-distro-mutex 0.7.* humble_* + - vc >=14.3,<15 + - vc14_runtime >=14.44.35208 + - ucrt >=10.0.20348.0 + - vc >=14.3,<15 + - vc14_runtime >=14.44.35208 + - ucrt >=10.0.20348.0 + - python_abi 3.11.* *_cp311 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + - numpy >=1.26.4,<2.0a0 + license: BSD-3-Clause + size: 52034 + timestamp: 1753317950749 +- conda: https://prefix.dev/robostack-staging/linux-64/ros-humble-laser-geometry-2.4.0-np126py311hbc2a38a_13.conda + sha256: ad7415b738ba321b88768c1373c95214630dd7ccdf238b511d017c2012348b70 + md5: 108ad131bae9ac89057e6de1c539b927 + depends: + - eigen + - numpy + - python + - ros-humble-eigen3-cmake-module + - ros-humble-rclcpp + - ros-humble-rclpy + - ros-humble-ros-workspace + - ros-humble-sensor-msgs + - ros-humble-sensor-msgs-py + - ros-humble-tf2 + - ros2-distro-mutex 0.7.* humble_* + - libgcc >=13 + - libstdcxx >=13 + - libgcc >=13 + - __glibc >=2.17,<3.0.a0 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + - python_abi 3.11.* *_cp311 + - numpy >=1.26.4,<2.0a0 + license: BSD-3-Clause + size: 58708 + timestamp: 1753313149134 +- conda: https://prefix.dev/robostack-staging/linux-aarch64/ros-humble-laser-geometry-2.4.0-np126py311hbdd918e_13.conda + sha256: ccd2eb19ac81dde878074a4fc192d35968e46f88dc0b85841d406ce5be4db2aa + md5: 689f7835b8105a0f0303bce571222fa2 + depends: + - eigen + - numpy + - python + - ros-humble-eigen3-cmake-module + - ros-humble-rclcpp + - ros-humble-rclpy + - ros-humble-ros-workspace + - ros-humble-sensor-msgs + - ros-humble-sensor-msgs-py + - ros-humble-tf2 + - ros2-distro-mutex 0.7.* humble_* + - libgcc >=13 + - libstdcxx >=13 + - libgcc >=13 + - python_abi 3.11.* *_cp311 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + - numpy >=1.26.4,<2.0a0 + license: BSD-3-Clause + size: 58087 + timestamp: 1753313380050 +- conda: https://prefix.dev/robostack-staging/osx-arm64/ros-humble-laser-geometry-2.4.0-np126py311h2a51a2c_13.conda + sha256: 08a1d12f41d38aab0ef4309078c072323e05b79a56eebe872225ad5b6b0fc741 + md5: 7f4af3d38e6a6e30d6696955654af787 + depends: + - eigen + - numpy + - python + - ros-humble-eigen3-cmake-module + - ros-humble-rclcpp + - ros-humble-rclpy + - ros-humble-ros-workspace + - ros-humble-sensor-msgs + - ros-humble-sensor-msgs-py + - ros-humble-tf2 + - ros2-distro-mutex 0.7.* humble_* + - __osx >=11.0 + - libcxx >=18 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + - python_abi 3.11.* *_cp311 + - numpy >=1.26.4,<2.0a0 + license: BSD-3-Clause + size: 56193 + timestamp: 1753312932786 +- conda: https://prefix.dev/robostack-staging/win-64/ros-humble-laser-geometry-2.4.0-np126py311hd5de103_13.conda + sha256: ee68a6a6bebc975df5acdcaee0ee67a690a460c137f165e773c75a116f4802a4 + md5: 0b2b17ec88201e9d85967b3eb1796d8c + depends: + - eigen + - numpy + - python + - ros-humble-eigen3-cmake-module + - ros-humble-rclcpp + - ros-humble-rclpy + - ros-humble-ros-workspace + - ros-humble-sensor-msgs + - ros-humble-sensor-msgs-py + - ros-humble-tf2 + - ros2-distro-mutex 0.7.* humble_* + - vc >=14.3,<15 + - vc14_runtime >=14.44.35208 + - ucrt >=10.0.20348.0 + - vc >=14.3,<15 + - vc14_runtime >=14.44.35208 + - ucrt >=10.0.20348.0 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + - numpy >=1.26.4,<2.0a0 + - python_abi 3.11.* *_cp311 + license: BSD-3-Clause + size: 56493 + timestamp: 1753331435453 +- conda: https://prefix.dev/robostack-staging/linux-64/ros-humble-launch-1.0.9-np126py311hbc2a38a_13.conda + sha256: bebbea8a453199515b17ec9cf99c643be5ae60a21a6835486e577d4c522a00bb + md5: 366369f5066692d9e9c881e1a320abe5 + depends: + - importlib-metadata + - lark-parser + - python + - pyyaml + - ros-humble-ament-index-python + - ros-humble-osrf-pycommon + - ros-humble-ros-workspace + - ros2-distro-mutex 0.7.* humble_* + - libgcc >=13 + - __glibc >=2.17,<3.0.a0 + - libstdcxx >=13 + - libgcc >=13 + - numpy >=1.26.4,<2.0a0 + - python_abi 3.11.* *_cp311 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + license: BSD-3-Clause + size: 231839 + timestamp: 1753308427773 +- conda: https://prefix.dev/robostack-staging/linux-aarch64/ros-humble-launch-1.0.9-np126py311hbdd918e_13.conda + sha256: fde9b49f00da06d841ad0f3fc8116e022b57de732db7e337c737eb8a5a33cc8e + md5: 3422df6a1be2de8e665bf4af3633fb4a + depends: + - importlib-metadata + - lark-parser + - python + - pyyaml + - ros-humble-ament-index-python + - ros-humble-osrf-pycommon + - ros-humble-ros-workspace + - ros2-distro-mutex 0.7.* humble_* + - libgcc >=13 + - libstdcxx >=13 + - libgcc >=13 + - python_abi 3.11.* *_cp311 + - numpy >=1.26.4,<2.0a0 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + license: BSD-3-Clause + size: 231731 + timestamp: 1753308559327 +- conda: https://prefix.dev/robostack-staging/osx-arm64/ros-humble-launch-1.0.9-np126py311h2a51a2c_13.conda + sha256: aa6d7c0fb50b679910953527dc5b54e5baec9fd97b9b609be0677bc66acfb723 + md5: fb6950c354f6979f1c2e1040497b2d86 + depends: + - importlib-metadata + - lark-parser + - python + - pyyaml + - ros-humble-ament-index-python + - ros-humble-osrf-pycommon + - ros-humble-ros-workspace + - ros2-distro-mutex 0.7.* humble_* + - libcxx >=18 + - __osx >=11.0 + - numpy >=1.26.4,<2.0a0 + - python_abi 3.11.* *_cp311 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + license: BSD-3-Clause + size: 231204 + timestamp: 1753308872913 +- conda: https://prefix.dev/robostack-staging/win-64/ros-humble-launch-1.0.9-np126py311hd5de103_13.conda + sha256: 1f88e9ea34debfd449111e110edcccf0a970e4a6708eff1b07d3e29847639e43 + md5: 64655858c450cdf59c1208135072e4de + depends: + - importlib-metadata + - lark-parser + - python + - pyyaml + - ros-humble-ament-index-python + - ros-humble-osrf-pycommon + - ros-humble-ros-workspace + - ros2-distro-mutex 0.7.* humble_* + - vc >=14.3,<15 + - vc14_runtime >=14.44.35208 + - ucrt >=10.0.20348.0 + - vc >=14.3,<15 + - vc14_runtime >=14.44.35208 + - ucrt >=10.0.20348.0 + - python_abi 3.11.* *_cp311 + - numpy >=1.26.4,<2.0a0 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + license: BSD-3-Clause + size: 227342 + timestamp: 1753312821874 +- conda: https://prefix.dev/robostack-staging/linux-64/ros-humble-launch-ros-0.19.10-np126py311hbc2a38a_13.conda + sha256: f583af58fbebfdd2c0284aad034564e89cd8c0b89a90eaf5a57b0615bc72ec31 + md5: 71a056d566c1be149c35aafd86d14e2d + depends: + - importlib-metadata + - python + - pyyaml + - ros-humble-ament-index-python + - ros-humble-composition-interfaces + - ros-humble-launch + - ros-humble-lifecycle-msgs + - ros-humble-osrf-pycommon + - ros-humble-rclpy + - ros-humble-ros-workspace + - ros2-distro-mutex 0.7.* humble_* + - libgcc >=13 + - __glibc >=2.17,<3.0.a0 + - libstdcxx >=13 + - libgcc >=13 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + - numpy >=1.26.4,<2.0a0 + - python_abi 3.11.* *_cp311 + license: BSD-3-Clause + size: 115691 + timestamp: 1753313130880 +- conda: https://prefix.dev/robostack-staging/linux-aarch64/ros-humble-launch-ros-0.19.10-np126py311hbdd918e_13.conda + sha256: 3a8d7b59bda17445effe8ddd7d7cdfd3313f3119192ca4daf5d2827ee534734c + md5: 0bff51df0551be2e862a7e761495cd7f + depends: + - importlib-metadata + - python + - pyyaml + - ros-humble-ament-index-python + - ros-humble-composition-interfaces + - ros-humble-launch + - ros-humble-lifecycle-msgs + - ros-humble-osrf-pycommon + - ros-humble-rclpy + - ros-humble-ros-workspace + - ros2-distro-mutex 0.7.* humble_* + - libstdcxx >=13 + - libgcc >=13 + - python_abi 3.11.* *_cp311 + - numpy >=1.26.4,<2.0a0 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + license: BSD-3-Clause + size: 115385 + timestamp: 1753313357410 +- conda: https://prefix.dev/robostack-staging/osx-arm64/ros-humble-launch-ros-0.19.10-np126py311h2a51a2c_13.conda + sha256: f2fc0233df2699e60d6e709c06c54c34f2799406632ea85939b6b9683fde619d + md5: 7fd6976a77e28995d50ff1f31cc23975 + depends: + - importlib-metadata + - python + - pyyaml + - ros-humble-ament-index-python + - ros-humble-composition-interfaces + - ros-humble-launch + - ros-humble-lifecycle-msgs + - ros-humble-osrf-pycommon + - ros-humble-rclpy + - ros-humble-ros-workspace + - ros2-distro-mutex 0.7.* humble_* + - __osx >=11.0 + - libcxx >=18 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + - python_abi 3.11.* *_cp311 + - numpy >=1.26.4,<2.0a0 + license: BSD-3-Clause + size: 115579 + timestamp: 1753313194407 +- conda: https://prefix.dev/robostack-staging/win-64/ros-humble-launch-ros-0.19.10-np126py311hd5de103_13.conda + sha256: 3241ce93f62a96ad4916eab9e7a78b3b5179e51a178e80410660b974fd220f59 + md5: 459a97a2f608a15eb41fdd6fa9dbf50d + depends: + - importlib-metadata + - python + - pyyaml + - ros-humble-ament-index-python + - ros-humble-composition-interfaces + - ros-humble-launch + - ros-humble-lifecycle-msgs + - ros-humble-osrf-pycommon + - ros-humble-rclpy + - ros-humble-ros-workspace + - ros2-distro-mutex 0.7.* humble_* + - vc >=14.3,<15 + - vc14_runtime >=14.44.35208 + - ucrt >=10.0.20348.0 + - vc >=14.3,<15 + - vc14_runtime >=14.44.35208 + - ucrt >=10.0.20348.0 + - numpy >=1.26.4,<2.0a0 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + - python_abi 3.11.* *_cp311 + license: BSD-3-Clause + size: 111793 + timestamp: 1753331185807 +- conda: https://prefix.dev/robostack-staging/linux-64/ros-humble-launch-testing-1.0.9-np126py311hbc2a38a_13.conda + sha256: dd9317f9cf7697398d0c08a7c270684d200a1e8e72dd4bd6956fc4242398eb1a + md5: 1988e4a2cebfadcd53119114c041db8f + depends: + - pytest + - python + - ros-humble-ament-index-python + - ros-humble-launch + - ros-humble-launch-xml + - ros-humble-launch-yaml + - ros-humble-osrf-pycommon + - ros-humble-ros-workspace + - ros2-distro-mutex 0.7.* humble_* + - libstdcxx >=13 + - libgcc >=13 + - __glibc >=2.17,<3.0.a0 + - libgcc >=13 + - python_abi 3.11.* *_cp311 + - numpy >=1.26.4,<2.0a0 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + license: BSD-3-Clause + size: 117812 + timestamp: 1753309026164 +- conda: https://prefix.dev/robostack-staging/linux-aarch64/ros-humble-launch-testing-1.0.9-np126py311hbdd918e_13.conda + sha256: 72716385898a9fb6fe9d5c89ffb78d3d3fbfe5bdb3bbc69f8fd105891fb15be6 + md5: 570e4fda2d681751148156236e3de9e7 + depends: + - pytest + - python + - ros-humble-ament-index-python + - ros-humble-launch + - ros-humble-launch-xml + - ros-humble-launch-yaml + - ros-humble-osrf-pycommon + - ros-humble-ros-workspace + - ros2-distro-mutex 0.7.* humble_* + - libgcc >=13 + - libstdcxx >=13 + - libgcc >=13 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + - numpy >=1.26.4,<2.0a0 + - python_abi 3.11.* *_cp311 + license: BSD-3-Clause + size: 117642 + timestamp: 1753309020685 +- conda: https://prefix.dev/robostack-staging/osx-arm64/ros-humble-launch-testing-1.0.9-np126py311h2a51a2c_13.conda + sha256: 1fcccb18da993c5ae0274a90d5331b0ee584a970f38d5278882caabfa6c7830b + md5: 26329cec8d560c9aa009f6afce9cbd77 + depends: + - pytest + - python + - ros-humble-ament-index-python + - ros-humble-launch + - ros-humble-launch-xml + - ros-humble-launch-yaml + - ros-humble-osrf-pycommon + - ros-humble-ros-workspace + - ros2-distro-mutex 0.7.* humble_* + - __osx >=11.0 + - libcxx >=18 + - numpy >=1.26.4,<2.0a0 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + - python_abi 3.11.* *_cp311 + license: BSD-3-Clause + size: 117902 + timestamp: 1753309337906 +- conda: https://prefix.dev/robostack-staging/win-64/ros-humble-launch-testing-1.0.9-np126py311hd5de103_13.conda + sha256: 237cf388cc22629a952a2dbb1a7ffa59b4e032b96240b3ea7cb379edd182c187 + md5: cfb303f0d970b90f5493c065cbe00bd6 + depends: + - pytest + - python + - ros-humble-ament-index-python + - ros-humble-launch + - ros-humble-launch-xml + - ros-humble-launch-yaml + - ros-humble-osrf-pycommon + - ros-humble-ros-workspace + - ros2-distro-mutex 0.7.* humble_* + - vc >=14.3,<15 + - vc14_runtime >=14.44.35208 + - ucrt >=10.0.20348.0 + - vc >=14.3,<15 + - vc14_runtime >=14.44.35208 + - ucrt >=10.0.20348.0 + - numpy >=1.26.4,<2.0a0 + - python_abi 3.11.* *_cp311 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + license: BSD-3-Clause + size: 121773 + timestamp: 1753315218953 +- conda: https://prefix.dev/robostack-staging/linux-64/ros-humble-launch-testing-ament-cmake-1.0.9-np126py311hbc2a38a_13.conda + sha256: 192177aaf97cf126627746017ac99e54c6e67a7fc878b637b3d957d6c298e285 + md5: cf9a20660478f3ba9f86ad84594bafad + depends: + - python + - ros-humble-ament-cmake-test + - ros-humble-launch-testing + - ros-humble-python-cmake-module + - ros-humble-ros-workspace + - ros2-distro-mutex 0.7.* humble_* + - __glibc >=2.17,<3.0.a0 + - libstdcxx >=13 + - libgcc >=13 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + - python_abi 3.11.* *_cp311 + - numpy >=1.26.4,<2.0a0 + license: BSD-3-Clause + size: 27140 + timestamp: 1753309838346 +- conda: https://prefix.dev/robostack-staging/linux-aarch64/ros-humble-launch-testing-ament-cmake-1.0.9-np126py311hbdd918e_13.conda + sha256: 56c3f8f1ffd9605a2818d93870af7ca070ed26ae9b4d0574fb750eb036127cea + md5: cc87b617ffe4d17bbc454c2dcd705fbe + depends: + - python + - ros-humble-ament-cmake-test + - ros-humble-launch-testing + - ros-humble-python-cmake-module + - ros-humble-ros-workspace + - ros2-distro-mutex 0.7.* humble_* + - libgcc >=13 + - libstdcxx >=13 + - libgcc >=13 + - python_abi 3.11.* *_cp311 + - numpy >=1.26.4,<2.0a0 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + license: BSD-3-Clause + size: 26907 + timestamp: 1753309609646 +- conda: https://prefix.dev/robostack-staging/osx-arm64/ros-humble-launch-testing-ament-cmake-1.0.9-np126py311h2a51a2c_13.conda + sha256: d36aa7bf2dabb7c51b8165eb7e46e01c65c41ffcd8b11c640c030a3c89f95759 + md5: 7d37e36d35be2e657efbe0c7f0b6356d + depends: + - python + - ros-humble-ament-cmake-test + - ros-humble-launch-testing + - ros-humble-python-cmake-module + - ros-humble-ros-workspace + - ros2-distro-mutex 0.7.* humble_* + - libcxx >=18 + - __osx >=11.0 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + - python_abi 3.11.* *_cp311 + - numpy >=1.26.4,<2.0a0 + license: BSD-3-Clause + size: 27436 + timestamp: 1753310309549 +- conda: https://prefix.dev/robostack-staging/win-64/ros-humble-launch-testing-ament-cmake-1.0.9-np126py311hd5de103_13.conda + sha256: e44c0fe954926f83cc0a52b2c54c82c2ad866fc3bf7c0d78163fdd79a7731671 + md5: 764857bcf89062bb93b13ef8e340ba5b + depends: + - python + - ros-humble-ament-cmake-test + - ros-humble-launch-testing + - ros-humble-python-cmake-module + - ros-humble-ros-workspace + - ros2-distro-mutex 0.7.* humble_* + - vc >=14.3,<15 + - vc14_runtime >=14.44.35208 + - ucrt >=10.0.20348.0 + - vc >=14.3,<15 + - vc14_runtime >=14.44.35208 + - ucrt >=10.0.20348.0 + - numpy >=1.26.4,<2.0a0 + - python_abi 3.11.* *_cp311 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + license: BSD-3-Clause + size: 23954 + timestamp: 1753318682735 +- conda: https://prefix.dev/robostack-staging/linux-64/ros-humble-launch-testing-ros-0.19.10-np126py311hbc2a38a_13.conda + sha256: dd2bdd63e8125506ed8757e1edccaa72e45406ccde1935745cf3f29c0d91192d + md5: 46d738b50110d9187ca446579c01a276 + depends: + - python + - ros-humble-launch-ros + - ros-humble-launch-testing + - ros-humble-rclpy + - ros-humble-ros-workspace + - ros2-distro-mutex 0.7.* humble_* + - libstdcxx >=13 + - libgcc >=13 + - __glibc >=2.17,<3.0.a0 + - libgcc >=13 + - python_abi 3.11.* *_cp311 + - numpy >=1.26.4,<2.0a0 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + license: BSD-3-Clause + size: 49899 + timestamp: 1753313481532 +- conda: https://prefix.dev/robostack-staging/linux-aarch64/ros-humble-launch-testing-ros-0.19.10-np126py311hbdd918e_13.conda + sha256: 3320b0e120487f44497decd9ff6fb63eadf37e2414113ae91a95e0d74c477624 + md5: a1a5c356ed2ad5d87e9a0f5edf5bba84 + depends: + - python + - ros-humble-launch-ros + - ros-humble-launch-testing + - ros-humble-rclpy + - ros-humble-ros-workspace + - ros2-distro-mutex 0.7.* humble_* + - libstdcxx >=13 + - libgcc >=13 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + - python_abi 3.11.* *_cp311 + - numpy >=1.26.4,<2.0a0 + license: BSD-3-Clause + size: 49686 + timestamp: 1753313637413 +- conda: https://prefix.dev/robostack-staging/osx-arm64/ros-humble-launch-testing-ros-0.19.10-np126py311h2a51a2c_13.conda + sha256: 4d3630ddaefc1a9d4becab71e3f1e4699f486b5e0f43a53a60507e3707b9f946 + md5: 80dd8e18075123cd6574eb56105af419 + depends: + - python + - ros-humble-launch-ros + - ros-humble-launch-testing + - ros-humble-rclpy + - ros-humble-ros-workspace + - ros2-distro-mutex 0.7.* humble_* + - libcxx >=18 + - __osx >=11.0 + - python_abi 3.11.* *_cp311 + - numpy >=1.26.4,<2.0a0 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + license: BSD-3-Clause + size: 50070 + timestamp: 1753313404032 +- conda: https://prefix.dev/robostack-staging/win-64/ros-humble-launch-testing-ros-0.19.10-np126py311hd5de103_13.conda + sha256: 40b73a865dcd867736943214d847617d1f639bab9a3320a5ea74c30e7c0e89b2 + md5: 00282d061de930e79b78b737727d0509 + depends: + - python + - ros-humble-launch-ros + - ros-humble-launch-testing + - ros-humble-rclpy + - ros-humble-ros-workspace + - ros2-distro-mutex 0.7.* humble_* + - vc >=14.3,<15 + - vc14_runtime >=14.44.35208 + - ucrt >=10.0.20348.0 + - vc >=14.3,<15 + - vc14_runtime >=14.44.35208 + - ucrt >=10.0.20348.0 + - python_abi 3.11.* *_cp311 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + - numpy >=1.26.4,<2.0a0 + license: BSD-3-Clause + size: 47583 + timestamp: 1753332858969 +- conda: https://prefix.dev/robostack-staging/linux-64/ros-humble-launch-xml-1.0.9-np126py311hbc2a38a_13.conda + sha256: c0284de2ec34b07c9d68471ea5e11f13a9895f9a345f210dfaec1641ae754bc1 + md5: bed6bfde536cd6cacb2dfb8cc77658c1 + depends: + - python + - ros-humble-launch + - ros-humble-ros-workspace + - ros2-distro-mutex 0.7.* humble_* + - libgcc >=13 + - libstdcxx >=13 + - libgcc >=13 + - __glibc >=2.17,<3.0.a0 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + - python_abi 3.11.* *_cp311 + - numpy >=1.26.4,<2.0a0 + license: BSD-3-Clause + size: 25753 + timestamp: 1753308908789 +- conda: https://prefix.dev/robostack-staging/linux-aarch64/ros-humble-launch-xml-1.0.9-np126py311hbdd918e_13.conda + sha256: 8b412022b1e14f574d33a41c5e40fede094a2de1617366a01bf14e6138a61eb9 + md5: fa4a5a2fafc5e4d242876f4dd1270869 + depends: + - python + - ros-humble-launch + - ros-humble-ros-workspace + - ros2-distro-mutex 0.7.* humble_* + - libstdcxx >=13 + - libgcc >=13 + - numpy >=1.26.4,<2.0a0 + - python_abi 3.11.* *_cp311 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + license: BSD-3-Clause + size: 25580 + timestamp: 1753308903767 +- conda: https://prefix.dev/robostack-staging/osx-arm64/ros-humble-launch-xml-1.0.9-np126py311h2a51a2c_13.conda + sha256: f703f64d03c96e992252c0d904b765c5022e7e0df25d726b1c7b6905aec90d01 + md5: 3f27abd73a5eb9956b3ff984ab4c92bf + depends: + - python + - ros-humble-launch + - ros-humble-ros-workspace + - ros2-distro-mutex 0.7.* humble_* + - libcxx >=18 + - __osx >=11.0 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + - python_abi 3.11.* *_cp311 + - numpy >=1.26.4,<2.0a0 + license: BSD-3-Clause + size: 25822 + timestamp: 1753309200620 +- conda: https://prefix.dev/robostack-staging/win-64/ros-humble-launch-xml-1.0.9-np126py311hd5de103_13.conda + sha256: 21a5aefafcb5f7fce5c1ee305191e14b0e5d6299e9a8bec68dda7d015ee86011 + md5: 713f2ab984354d1e9dc93b15960e16eb + depends: + - python + - ros-humble-launch + - ros-humble-ros-workspace + - ros2-distro-mutex 0.7.* humble_* + - vc >=14.3,<15 + - vc14_runtime >=14.44.35208 + - ucrt >=10.0.20348.0 + - vc >=14.3,<15 + - vc14_runtime >=14.44.35208 + - ucrt >=10.0.20348.0 + - numpy >=1.26.4,<2.0a0 + - python_abi 3.11.* *_cp311 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + license: BSD-3-Clause + size: 22611 + timestamp: 1753314086635 +- conda: https://prefix.dev/robostack-staging/linux-64/ros-humble-launch-yaml-1.0.9-np126py311hbc2a38a_13.conda + sha256: db6064a3ba3389cd2c12e6b2bb192c8ad533b816e50d0e54a42af24f4075418b + md5: ddee5cd0370cfff6d652520df1fb3c48 + depends: + - python + - ros-humble-launch + - ros-humble-ros-workspace + - ros2-distro-mutex 0.7.* humble_* + - __glibc >=2.17,<3.0.a0 + - libstdcxx >=13 + - libgcc >=13 + - python_abi 3.11.* *_cp311 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + - numpy >=1.26.4,<2.0a0 + license: BSD-3-Clause + size: 26397 + timestamp: 1753308903203 +- conda: https://prefix.dev/robostack-staging/linux-aarch64/ros-humble-launch-yaml-1.0.9-np126py311hbdd918e_13.conda + sha256: eb867197d75a0d37e0e9b1c8985dbb5021d7eff30b625da9f67089cbc178d602 + md5: 633feaf46959c5f02e2a2a475d4b40d5 + depends: + - python + - ros-humble-launch + - ros-humble-ros-workspace + - ros2-distro-mutex 0.7.* humble_* + - libstdcxx >=13 + - libgcc >=13 + - numpy >=1.26.4,<2.0a0 + - python_abi 3.11.* *_cp311 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + license: BSD-3-Clause + size: 26192 + timestamp: 1753308889716 +- conda: https://prefix.dev/robostack-staging/osx-arm64/ros-humble-launch-yaml-1.0.9-np126py311h2a51a2c_13.conda + sha256: 47c9a52de7b9730731cb235c72909131ada808f3f5c10deed8c853e83d404660 + md5: d24722cfb78ee1f6f4d680490df35331 + depends: + - python + - ros-humble-launch + - ros-humble-ros-workspace + - ros2-distro-mutex 0.7.* humble_* + - libcxx >=18 + - __osx >=11.0 + - numpy >=1.26.4,<2.0a0 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + - python_abi 3.11.* *_cp311 + license: BSD-3-Clause + size: 26474 + timestamp: 1753309191709 +- conda: https://prefix.dev/robostack-staging/win-64/ros-humble-launch-yaml-1.0.9-np126py311hd5de103_13.conda + sha256: e2eb65bae8c9927438701631e54a131add13b1838672ac698efa2b3239d5fd29 + md5: ad2b199ba10339abee6bb56c58911a64 + depends: + - python + - ros-humble-launch + - ros-humble-ros-workspace + - ros2-distro-mutex 0.7.* humble_* + - vc >=14.3,<15 + - vc14_runtime >=14.44.35208 + - ucrt >=10.0.20348.0 + - vc >=14.3,<15 + - vc14_runtime >=14.44.35208 + - ucrt >=10.0.20348.0 + - python_abi 3.11.* *_cp311 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + - numpy >=1.26.4,<2.0a0 + license: BSD-3-Clause + size: 23201 + timestamp: 1753314026196 +- conda: https://prefix.dev/robostack-staging/linux-64/ros-humble-libcurl-vendor-3.1.3-np126py311hbc2a38a_13.conda + sha256: b616c098ba88cf8fa043168f29f23d3d5e22f09f57b821e95e30ac2524561f43 + md5: d16728dc5e661cde5e54be3c83fe0c71 + depends: + - libcurl + - pkg-config + - python + - ros-humble-ros-workspace + - ros2-distro-mutex 0.7.* humble_* + - __glibc >=2.17,<3.0.a0 + - libstdcxx >=13 + - libgcc >=13 + - numpy >=1.26.4,<2.0a0 + - python_abi 3.11.* *_cp311 + - libcurl >=8.14.1,<9.0a0 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + license: BSD-3-Clause + size: 23217 + timestamp: 1753308423238 +- conda: https://prefix.dev/robostack-staging/linux-aarch64/ros-humble-libcurl-vendor-3.1.3-np126py311hbdd918e_13.conda + sha256: f8c4de09b7d81d425738179a8b02ecf23bf99dcd9141d8492e8c3d23b9616ecc + md5: 87725f15d06a06ca6c6167cd8fbfadcf + depends: + - libcurl + - pkg-config + - python + - ros-humble-ros-workspace + - ros2-distro-mutex 0.7.* humble_* + - libgcc >=13 + - libstdcxx >=13 + - libgcc >=13 + - numpy >=1.26.4,<2.0a0 + - python_abi 3.11.* *_cp311 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + - libcurl >=8.14.1,<9.0a0 + license: BSD-3-Clause + size: 23056 + timestamp: 1753308554309 +- conda: https://prefix.dev/robostack-staging/osx-arm64/ros-humble-libcurl-vendor-3.1.3-np126py311h2a51a2c_13.conda + sha256: 7885f79412bc75e89fd26aaffc44f90809d27cedb104d83defbdbcfef160f432 + md5: 189bfb3eafb80cffca3e80737bb01db8 + depends: + - libcurl + - pkg-config + - python + - ros-humble-ros-workspace + - ros2-distro-mutex 0.7.* humble_* + - __osx >=11.0 + - libcxx >=18 + - python_abi 3.11.* *_cp311 + - libcurl >=8.14.1,<9.0a0 + - numpy >=1.26.4,<2.0a0 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + license: BSD-3-Clause + size: 23428 + timestamp: 1753308802150 +- conda: https://prefix.dev/robostack-staging/win-64/ros-humble-libcurl-vendor-3.1.3-np126py311hd5de103_13.conda + sha256: c2b7e804f1f20b8bc100f3513da69298cc7437385433a2e5577c5c1496ea2fb4 + md5: d387fc39a6362271abf274550a8d1a9f + depends: + - libcurl + - pkg-config + - python + - ros-humble-ros-workspace + - ros2-distro-mutex 0.7.* humble_* + - vc >=14.3,<15 + - vc14_runtime >=14.44.35208 + - ucrt >=10.0.20348.0 + - vc >=14.3,<15 + - vc14_runtime >=14.44.35208 + - ucrt >=10.0.20348.0 + - libcurl >=8.14.1,<9.0a0 + - python_abi 3.11.* *_cp311 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + - numpy >=1.26.4,<2.0a0 + license: BSD-3-Clause + size: 19770 + timestamp: 1753312807031 +- conda: https://prefix.dev/robostack-staging/linux-64/ros-humble-libstatistics-collector-1.3.4-np126py311hbc2a38a_13.conda + sha256: 3215e434d022b67292fb023d421fa2983e7363adce1dc49f1db2f7329bf79a7d + md5: 77fb7bf4d9e1c617d09babdf43c3f1f3 + depends: + - python + - ros-humble-builtin-interfaces + - ros-humble-rcl + - ros-humble-rcpputils + - ros-humble-ros-workspace + - ros-humble-rosidl-default-runtime + - ros-humble-statistics-msgs + - ros-humble-std-msgs + - ros2-distro-mutex 0.7.* humble_* + - libstdcxx >=13 + - libgcc >=13 + - __glibc >=2.17,<3.0.a0 + - libgcc >=13 + - python_abi 3.11.* *_cp311 + - numpy >=1.26.4,<2.0a0 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + license: BSD-3-Clause + size: 54603 + timestamp: 1753312905199 +- conda: https://prefix.dev/robostack-staging/linux-aarch64/ros-humble-libstatistics-collector-1.3.4-np126py311hbdd918e_13.conda + sha256: 0924187266263888d6d77ef258bd7aa7b127d24898f54fcf4f70790e734f9b48 + md5: 0338364c1ef3a7fa37ed19d5a5f01124 + depends: + - python + - ros-humble-builtin-interfaces + - ros-humble-rcl + - ros-humble-rcpputils + - ros-humble-ros-workspace + - ros-humble-rosidl-default-runtime + - ros-humble-statistics-msgs + - ros-humble-std-msgs + - ros2-distro-mutex 0.7.* humble_* + - libgcc >=13 + - libstdcxx >=13 + - libgcc >=13 + - python_abi 3.11.* *_cp311 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + - numpy >=1.26.4,<2.0a0 + license: BSD-3-Clause + size: 54152 + timestamp: 1753313183068 +- conda: https://prefix.dev/robostack-staging/osx-arm64/ros-humble-libstatistics-collector-1.3.4-np126py311h2a51a2c_13.conda + sha256: 54a21a38b40ab4c18f184a7113b42bbc1d6561e9aeb1af4a8f643d393dcf7355 + md5: 09df9d3c1a071fd4b49f039809b818fb + depends: + - python + - ros-humble-builtin-interfaces + - ros-humble-rcl + - ros-humble-rcpputils + - ros-humble-ros-workspace + - ros-humble-rosidl-default-runtime + - ros-humble-statistics-msgs + - ros-humble-std-msgs + - ros2-distro-mutex 0.7.* humble_* + - libcxx >=18 + - __osx >=11.0 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + - python_abi 3.11.* *_cp311 + - numpy >=1.26.4,<2.0a0 + license: BSD-3-Clause + size: 54483 + timestamp: 1753312731693 +- conda: https://prefix.dev/robostack-staging/win-64/ros-humble-libstatistics-collector-1.3.4-np126py311hd5de103_13.conda + sha256: 17543c43fc68d2ee8c476db226d98a7c35ff2895b06765a78b050c82447ce496 + md5: 244f21f171d06349607842112ed772bc + depends: + - python + - ros-humble-builtin-interfaces + - ros-humble-rcl + - ros-humble-rcpputils + - ros-humble-ros-workspace + - ros-humble-rosidl-default-runtime + - ros-humble-statistics-msgs + - ros-humble-std-msgs + - ros2-distro-mutex 0.7.* humble_* + - vc >=14.3,<15 + - vc14_runtime >=14.44.35208 + - ucrt >=10.0.20348.0 + - vc >=14.3,<15 + - vc14_runtime >=14.44.35208 + - ucrt >=10.0.20348.0 + - python_abi 3.11.* *_cp311 + - numpy >=1.26.4,<2.0a0 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + license: BSD-3-Clause + size: 57589 + timestamp: 1753330454550 +- conda: https://prefix.dev/robostack-staging/linux-64/ros-humble-libyaml-vendor-1.2.2-np126py311hbc2a38a_13.conda + sha256: d88461e13f9002a4225bfb1264a36f7b9212407a1bde1bfe4459ad5e5ccfae50 + md5: f23b7cc9a2193f5b52bfc0b21367e5ce + depends: + - python + - ros-humble-ros-workspace + - ros2-distro-mutex 0.7.* humble_* + - yaml + - yaml-cpp + - __glibc >=2.17,<3.0.a0 + - libstdcxx >=13 + - libgcc >=13 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + - yaml-cpp >=0.8.0,<0.9.0a0 + - yaml >=0.2.5,<0.3.0a0 + - python_abi 3.11.* *_cp311 + - numpy >=1.26.4,<2.0a0 + license: BSD-3-Clause + size: 30222 + timestamp: 1753310112185 +- conda: https://prefix.dev/robostack-staging/linux-aarch64/ros-humble-libyaml-vendor-1.2.2-np126py311hbdd918e_13.conda + sha256: 79c2466dc79ca9d820428a5e13d965c9e09d02b4f5cd636d30f9ad168175d3f8 + md5: ae901ae633eca4390a4b15f42e864293 + depends: + - python + - ros-humble-ros-workspace + - ros2-distro-mutex 0.7.* humble_* + - yaml + - yaml-cpp + - libstdcxx >=13 + - libgcc >=13 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + - yaml-cpp >=0.8.0,<0.9.0a0 + - python_abi 3.11.* *_cp311 + - numpy >=1.26.4,<2.0a0 + - yaml >=0.2.5,<0.3.0a0 + license: BSD-3-Clause + size: 30083 + timestamp: 1753311804958 +- conda: https://prefix.dev/robostack-staging/osx-arm64/ros-humble-libyaml-vendor-1.2.2-np126py311h2a51a2c_13.conda + sha256: cf9c9ec8e8f63afd009a2e68555cf0f837af2d99ac88a96ff231fb8eeca135d0 + md5: caceeed1606529206606506140ba8372 + depends: + - python + - ros-humble-ros-workspace + - ros2-distro-mutex 0.7.* humble_* + - yaml + - yaml-cpp + - libcxx >=18 + - __osx >=11.0 + - python_abi 3.11.* *_cp311 + - yaml-cpp >=0.8.0,<0.9.0a0 + - numpy >=1.26.4,<2.0a0 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + - yaml >=0.2.5,<0.3.0a0 + license: BSD-3-Clause + size: 30329 + timestamp: 1753310658867 +- conda: https://prefix.dev/robostack-staging/win-64/ros-humble-libyaml-vendor-1.2.2-np126py311hd5de103_13.conda + sha256: a3a7356462fdf0696cd23bd02ad4d242c9d4cae860dad4918c0475c1bf67a69b + md5: a06da76b19342726d0ad4baf04da03c0 + depends: + - python + - ros-humble-ros-workspace + - ros2-distro-mutex 0.7.* humble_* + - yaml + - yaml-cpp + - vc >=14.3,<15 + - vc14_runtime >=14.44.35208 + - ucrt >=10.0.20348.0 + - vc >=14.3,<15 + - vc14_runtime >=14.44.35208 + - ucrt >=10.0.20348.0 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + - python_abi 3.11.* *_cp311 + - yaml-cpp >=0.8.0,<0.9.0a0 + - numpy >=1.26.4,<2.0a0 + - yaml >=0.2.5,<0.3.0a0 + license: BSD-3-Clause + size: 26864 + timestamp: 1753320841580 +- conda: https://prefix.dev/robostack-staging/linux-64/ros-humble-lifecycle-0.20.5-np126py311hbc2a38a_13.conda + sha256: 231da9bef142a7297997c55618a8f78f3cb3e0e5fbf359c49bb8efa2ffc1c667 + md5: 3f7e541550ecaca7081a327e85c5f021 + depends: + - python + - ros-humble-lifecycle-msgs + - ros-humble-rclcpp-lifecycle + - ros-humble-ros-workspace + - ros-humble-std-msgs + - ros2-distro-mutex 0.7.* humble_* + - __glibc >=2.17,<3.0.a0 + - libstdcxx >=13 + - libgcc >=13 + - python_abi 3.11.* *_cp311 + - numpy >=1.26.4,<2.0a0 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + license: BSD-3-Clause + size: 254473 + timestamp: 1753314475735 +- conda: https://prefix.dev/robostack-staging/linux-aarch64/ros-humble-lifecycle-0.20.5-np126py311hbdd918e_13.conda + sha256: 4ff424a8f3392a643ce2ef992bc7f2ae9ab8b6923d72bc4300549cc4bd801677 + md5: fb9f4537dfec904a25d1c7f6d4afba5f + depends: + - python + - ros-humble-lifecycle-msgs + - ros-humble-rclcpp-lifecycle + - ros-humble-ros-workspace + - ros-humble-std-msgs + - ros2-distro-mutex 0.7.* humble_* + - libstdcxx >=13 + - libgcc >=13 + - numpy >=1.26.4,<2.0a0 + - python_abi 3.11.* *_cp311 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + license: BSD-3-Clause + size: 255861 + timestamp: 1753314523390 +- conda: https://prefix.dev/robostack-staging/osx-arm64/ros-humble-lifecycle-0.20.5-np126py311h2a51a2c_13.conda + sha256: 55c6bc013c0350a0b36bb0605966ecfa87c0716e57ccb7b62457fdcf2254c337 + md5: 720b80f450774492b10ca91f2e61aca7 + depends: + - python + - ros-humble-lifecycle-msgs + - ros-humble-rclcpp-lifecycle + - ros-humble-ros-workspace + - ros-humble-std-msgs + - ros2-distro-mutex 0.7.* humble_* + - __osx >=11.0 + - libcxx >=18 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + - python_abi 3.11.* *_cp311 + - numpy >=1.26.4,<2.0a0 + license: BSD-3-Clause + size: 202910 + timestamp: 1753314970440 +- conda: https://prefix.dev/robostack-staging/win-64/ros-humble-lifecycle-0.20.5-np126py311hd5de103_13.conda + sha256: e275101e67eb0deb001202476f41525bfa65aa10dc31265176cd16a1e79e00da + md5: 95a4fbe399c5025089079cabf6a6832a + depends: + - python + - ros-humble-lifecycle-msgs + - ros-humble-rclcpp-lifecycle + - ros-humble-ros-workspace + - ros-humble-std-msgs + - ros2-distro-mutex 0.7.* humble_* + - vc >=14.3,<15 + - vc14_runtime >=14.44.35208 + - ucrt >=10.0.20348.0 + - vc >=14.3,<15 + - vc14_runtime >=14.44.35208 + - ucrt >=10.0.20348.0 + - numpy >=1.26.4,<2.0a0 + - python_abi 3.11.* *_cp311 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + license: BSD-3-Clause + size: 169251 + timestamp: 1753337442937 +- conda: https://prefix.dev/robostack-staging/linux-64/ros-humble-lifecycle-msgs-1.2.1-np126py311hbc2a38a_13.conda + sha256: 727837f529d817bea52b00f755e481ac8076bfbc82f4cf915ae9a9c9ce20a232 + md5: 1ba00323998b3ae643eb8818d835f36d + depends: + - python + - ros-humble-ros-workspace + - ros-humble-rosidl-default-runtime + - ros2-distro-mutex 0.7.* humble_* + - __glibc >=2.17,<3.0.a0 + - libstdcxx >=13 + - libgcc >=13 + - numpy >=1.26.4,<2.0a0 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + - python_abi 3.11.* *_cp311 + license: BSD-3-Clause + size: 174780 + timestamp: 1753310598768 +- conda: https://prefix.dev/robostack-staging/linux-aarch64/ros-humble-lifecycle-msgs-1.2.1-np126py311hbdd918e_13.conda + sha256: e97643353a86281b12fa5658aa679af65fbdfc74caa25561a93fcbf53481ef04 + md5: 61df90d5243ddfb4c0123f4cf956af9a + depends: + - python + - ros-humble-ros-workspace + - ros-humble-rosidl-default-runtime + - ros2-distro-mutex 0.7.* humble_* + - libstdcxx >=13 + - libgcc >=13 + - numpy >=1.26.4,<2.0a0 + - python_abi 3.11.* *_cp311 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + license: BSD-3-Clause + size: 178810 + timestamp: 1753312305724 +- conda: https://prefix.dev/robostack-staging/osx-arm64/ros-humble-lifecycle-msgs-1.2.1-np126py311h2a51a2c_13.conda + sha256: fb0cdf633e4ffc58429a08c0efff002d3cedf1dc470f84a83e13a3da2800406c + md5: e1a8c4b8fa1d2d7162b68b63d3ab6741 + depends: + - python + - ros-humble-ros-workspace + - ros-humble-rosidl-default-runtime + - ros2-distro-mutex 0.7.* humble_* + - libcxx >=18 + - __osx >=11.0 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + - python_abi 3.11.* *_cp311 + - numpy >=1.26.4,<2.0a0 + license: BSD-3-Clause + size: 154583 + timestamp: 1753311186914 +- conda: https://prefix.dev/robostack-staging/win-64/ros-humble-lifecycle-msgs-1.2.1-np126py311hd5de103_13.conda + sha256: a90b8ae4ab83c2f27bf7903e0d2b08b0811dfbe5a0063c354edddad07ca56194 + md5: 856b8b9b907f6f6f6d0c3cb146e32b3d + depends: + - python + - ros-humble-ros-workspace + - ros-humble-rosidl-default-runtime + - ros2-distro-mutex 0.7.* humble_* + - vc >=14.3,<15 + - vc14_runtime >=14.44.35208 + - ucrt >=10.0.20348.0 + - vc >=14.3,<15 + - vc14_runtime >=14.44.35208 + - ucrt >=10.0.20348.0 + - numpy >=1.26.4,<2.0a0 + - python_abi 3.11.* *_cp311 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + license: BSD-3-Clause + size: 168301 + timestamp: 1753323253537 +- conda: https://prefix.dev/robostack-staging/linux-64/ros-humble-logging-demo-0.20.5-np126py311hbc2a38a_13.conda + sha256: dbf9460fc559842a785dd53e352c1854489642992b218ed2565fdcacad546839 + md5: b4a3deb9e2a26205dccf81e23c14236c + depends: + - python + - ros-humble-rclcpp + - ros-humble-rclcpp-components + - ros-humble-rcutils + - ros-humble-ros-workspace + - ros-humble-rosidl-default-runtime + - ros-humble-std-msgs + - ros2-distro-mutex 0.7.* humble_* + - libstdcxx >=13 + - libgcc >=13 + - __glibc >=2.17,<3.0.a0 + - python_abi 3.11.* *_cp311 + - numpy >=1.26.4,<2.0a0 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + license: BSD-3-Clause + size: 183565 + timestamp: 1753313908029 +- conda: https://prefix.dev/robostack-staging/linux-aarch64/ros-humble-logging-demo-0.20.5-np126py311hbdd918e_13.conda + sha256: 67f4ded8e83f14a67c21e760689d001f6dbd3f2fa94bc2497165696fadb5ce5b + md5: 633bc9ff73349c783490e3bc75fb755b + depends: + - python + - ros-humble-rclcpp + - ros-humble-rclcpp-components + - ros-humble-rcutils + - ros-humble-ros-workspace + - ros-humble-rosidl-default-runtime + - ros-humble-std-msgs + - ros2-distro-mutex 0.7.* humble_* + - libstdcxx >=13 + - libgcc >=13 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + - numpy >=1.26.4,<2.0a0 + - python_abi 3.11.* *_cp311 + license: BSD-3-Clause + size: 188902 + timestamp: 1753314020171 +- conda: https://prefix.dev/robostack-staging/osx-arm64/ros-humble-logging-demo-0.20.5-np126py311h2a51a2c_13.conda + sha256: 5d1b59b9cf831662b1140ad6590461bd328f98e0beb20e60744e101ba0cfbe19 + md5: e3ab8f6f89d4c1bd3f415bce091821e9 + depends: + - python + - ros-humble-rclcpp + - ros-humble-rclcpp-components + - ros-humble-rcutils + - ros-humble-ros-workspace + - ros-humble-rosidl-default-runtime + - ros-humble-std-msgs + - ros2-distro-mutex 0.7.* humble_* + - __osx >=11.0 + - libcxx >=18 + - python_abi 3.11.* *_cp311 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + - numpy >=1.26.4,<2.0a0 + license: BSD-3-Clause + size: 160061 + timestamp: 1753313855451 +- conda: https://prefix.dev/robostack-staging/win-64/ros-humble-logging-demo-0.20.5-np126py311hd5de103_13.conda + sha256: 43d02a0fe303f33cf94ab6df5edbe641eadc1327331f4f29b70c9c4c43ac9e3b + md5: b74d0d32ba882f2edc9a04bea3b344ce + depends: + - python + - ros-humble-rclcpp + - ros-humble-rclcpp-components + - ros-humble-rcutils + - ros-humble-ros-workspace + - ros-humble-rosidl-default-runtime + - ros-humble-std-msgs + - ros2-distro-mutex 0.7.* humble_* + - vc >=14.3,<15 + - vc14_runtime >=14.44.35208 + - ucrt >=10.0.20348.0 + - vc >=14.3,<15 + - vc14_runtime >=14.44.35208 + - ucrt >=10.0.20348.0 + - python_abi 3.11.* *_cp311 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + - numpy >=1.26.4,<2.0a0 + license: BSD-3-Clause + size: 157655 + timestamp: 1753334425928 +- conda: https://prefix.dev/robostack-staging/linux-64/ros-humble-map-msgs-2.1.0-np126py311hbc2a38a_13.conda + sha256: 6249c2e5d6f8f20cd446f8a69ecee2a616bcba9de74d1983eb9626f86ece3912 + md5: b03b9cf65dbfda1c84aba683a0dc617b + depends: + - python + - ros-humble-nav-msgs + - ros-humble-ros-workspace + - ros-humble-rosidl-default-runtime + - ros-humble-sensor-msgs + - ros-humble-std-msgs + - ros2-distro-mutex 0.7.* humble_* + - __glibc >=2.17,<3.0.a0 + - libgcc >=13 + - libstdcxx >=13 + - libgcc >=13 + - numpy >=1.26.4,<2.0a0 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + - python_abi 3.11.* *_cp311 + license: BSD-3-Clause + size: 207171 + timestamp: 1753312350047 +- conda: https://prefix.dev/robostack-staging/linux-aarch64/ros-humble-map-msgs-2.1.0-np126py311hbdd918e_13.conda + sha256: fbdb2f768ad51107f0b5873c67b93f3a9052c11353539cc3a1bc10fad513d679 + md5: 4bd555d345cd80a13d8ea54aaa896b6e + depends: + - python + - ros-humble-nav-msgs + - ros-humble-ros-workspace + - ros-humble-rosidl-default-runtime + - ros-humble-sensor-msgs + - ros-humble-std-msgs + - ros2-distro-mutex 0.7.* humble_* + - libstdcxx >=13 + - libgcc >=13 + - numpy >=1.26.4,<2.0a0 + - python_abi 3.11.* *_cp311 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + license: BSD-3-Clause + size: 211682 + timestamp: 1753312745807 +- conda: https://prefix.dev/robostack-staging/osx-arm64/ros-humble-map-msgs-2.1.0-np126py311h2a51a2c_13.conda + sha256: 82e831ffe75b1915b6b36914f02a863ebf7649ee533a65f74069b929d90e303d + md5: 34e318f0bf0d4faf8428df7af04e514c + depends: + - python + - ros-humble-nav-msgs + - ros-humble-ros-workspace + - ros-humble-rosidl-default-runtime + - ros-humble-sensor-msgs + - ros-humble-std-msgs + - ros2-distro-mutex 0.7.* humble_* + - libcxx >=18 + - __osx >=11.0 + - numpy >=1.26.4,<2.0a0 + - python_abi 3.11.* *_cp311 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + license: BSD-3-Clause + size: 183501 + timestamp: 1753312148189 +- conda: https://prefix.dev/robostack-staging/win-64/ros-humble-map-msgs-2.1.0-np126py311hd5de103_13.conda + sha256: 407cfbef79e5e8369c0547c33a6169917046b33fc66d13de9fcfa33fb0af1e5f + md5: ba505de80e42d69dbdcbf764a7f6de2c + depends: + - python + - ros-humble-nav-msgs + - ros-humble-ros-workspace + - ros-humble-rosidl-default-runtime + - ros-humble-sensor-msgs + - ros-humble-std-msgs + - ros2-distro-mutex 0.7.* humble_* + - vc >=14.3,<15 + - vc14_runtime >=14.44.35208 + - ucrt >=10.0.20348.0 + - vc >=14.3,<15 + - vc14_runtime >=14.44.35208 + - ucrt >=10.0.20348.0 + - numpy >=1.26.4,<2.0a0 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + - python_abi 3.11.* *_cp311 + license: BSD-3-Clause + size: 194283 + timestamp: 1753328003512 +- conda: https://prefix.dev/robostack-staging/linux-64/ros-humble-message-filters-4.3.7-np126py311hbc2a38a_13.conda + sha256: 58a35e18fb14dee701b9ee7878037b4523e4626c7acc678c3da5235b6a01a7d4 + md5: 2329877d72e14b35231719a41de043ff + depends: + - python + - ros-humble-builtin-interfaces + - ros-humble-rclcpp + - ros-humble-rclpy + - ros-humble-rcutils + - ros-humble-ros-workspace + - ros2-distro-mutex 0.7.* humble_* + - __glibc >=2.17,<3.0.a0 + - libstdcxx >=13 + - libgcc >=13 + - numpy >=1.26.4,<2.0a0 + - python_abi 3.11.* *_cp311 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + license: BSD-3-Clause + size: 74893 + timestamp: 1753313494264 +- conda: https://prefix.dev/robostack-staging/linux-aarch64/ros-humble-message-filters-4.3.7-np126py311hbdd918e_13.conda + sha256: f090095cb6fc5fc3c7546d97961b5a895b235ca0fae34ecab2fa449c008ab162 + md5: e771c1060dc5200cbdb27be1976ef325 + depends: + - python + - ros-humble-builtin-interfaces + - ros-humble-rclcpp + - ros-humble-rclpy + - ros-humble-rcutils + - ros-humble-ros-workspace + - ros2-distro-mutex 0.7.* humble_* + - libstdcxx >=13 + - libgcc >=13 + - python_abi 3.11.* *_cp311 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + - numpy >=1.26.4,<2.0a0 + license: BSD-3-Clause + size: 74887 + timestamp: 1753313653415 +- conda: https://prefix.dev/robostack-staging/osx-arm64/ros-humble-message-filters-4.3.7-np126py311h2a51a2c_13.conda + sha256: 20f2a1ab17e62cf8060bb75b63f11ed43dd16b5c39e03ac316086b25f701c4b2 + md5: 6ad00719ee3f777220e1a9998ccf6d70 + depends: + - python + - ros-humble-builtin-interfaces + - ros-humble-rclcpp + - ros-humble-rclpy + - ros-humble-rcutils + - ros-humble-ros-workspace + - ros2-distro-mutex 0.7.* humble_* + - libcxx >=18 + - __osx >=11.0 + - python_abi 3.11.* *_cp311 + - numpy >=1.26.4,<2.0a0 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + license: BSD-3-Clause + size: 73565 + timestamp: 1753313418532 +- conda: https://prefix.dev/robostack-staging/win-64/ros-humble-message-filters-4.3.7-np126py311hd5de103_13.conda + sha256: a10ee275866eda6708220beb19de049970c9c534ff20fb19923b577f30658cc1 + md5: 56cc51f9fc5b0efbed77d7f31401ef67 + depends: + - python + - ros-humble-builtin-interfaces + - ros-humble-rclcpp + - ros-humble-rclpy + - ros-humble-rcutils + - ros-humble-ros-workspace + - ros2-distro-mutex 0.7.* humble_* + - vc >=14.3,<15 + - vc14_runtime >=14.44.35208 + - ucrt >=10.0.20348.0 + - vc >=14.3,<15 + - vc14_runtime >=14.44.35208 + - ucrt >=10.0.20348.0 + - python_abi 3.11.* *_cp311 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + - numpy >=1.26.4,<2.0a0 + license: BSD-3-Clause + size: 75284 + timestamp: 1753332944404 +- conda: https://prefix.dev/robostack-staging/linux-64/ros-humble-nav-msgs-4.9.0-np126py311hbc2a38a_13.conda + sha256: 2038c336d5162ec244ba9b74d5aba7aca97789629a632b552903a937465a430e + md5: 2c710e43b1d0551bb33929ee18654345 + depends: + - python + - ros-humble-builtin-interfaces + - ros-humble-geometry-msgs + - ros-humble-ros-workspace + - ros-humble-rosidl-default-runtime + - ros-humble-std-msgs + - ros2-distro-mutex 0.7.* humble_* + - libgcc >=13 + - __glibc >=2.17,<3.0.a0 + - libstdcxx >=13 + - libgcc >=13 + - numpy >=1.26.4,<2.0a0 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + - python_abi 3.11.* *_cp311 + license: BSD-3-Clause + size: 205250 + timestamp: 1753312257183 +- conda: https://prefix.dev/robostack-staging/linux-aarch64/ros-humble-nav-msgs-4.9.0-np126py311hbdd918e_13.conda + sha256: c1882ee9c971aa23e55522041ca88ae6e71416e4f5d55f499b359e37ac7d3b89 + md5: 7e0b90d7eecaa00a2b8cde0cba7bad7c + depends: + - python + - ros-humble-builtin-interfaces + - ros-humble-geometry-msgs + - ros-humble-ros-workspace + - ros-humble-rosidl-default-runtime + - ros-humble-std-msgs + - ros2-distro-mutex 0.7.* humble_* + - libstdcxx >=13 + - libgcc >=13 + - python_abi 3.11.* *_cp311 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + - numpy >=1.26.4,<2.0a0 + license: BSD-3-Clause + size: 209912 + timestamp: 1753312680461 +- conda: https://prefix.dev/robostack-staging/osx-arm64/ros-humble-nav-msgs-4.9.0-np126py311h2a51a2c_13.conda + sha256: 8f32c3b78505cc24fc7e2662d5ef715366fe7aac8540c885fb80d616b7dee67a + md5: d1afeb27826086d5defd425486370ae7 + depends: + - python + - ros-humble-builtin-interfaces + - ros-humble-geometry-msgs + - ros-humble-ros-workspace + - ros-humble-rosidl-default-runtime + - ros-humble-std-msgs + - ros2-distro-mutex 0.7.* humble_* + - libcxx >=18 + - __osx >=11.0 + - python_abi 3.11.* *_cp311 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + - numpy >=1.26.4,<2.0a0 + license: BSD-3-Clause + size: 181965 + timestamp: 1753311937040 +- conda: https://prefix.dev/robostack-staging/win-64/ros-humble-nav-msgs-4.9.0-np126py311hd5de103_13.conda + sha256: fd769147010e3f2982a2bdc061ad85ce58f9c19ecc1ef85598b06ad7d8004b00 + md5: dc91ffc3bd16c309711933d835817179 + depends: + - python + - ros-humble-builtin-interfaces + - ros-humble-geometry-msgs + - ros-humble-ros-workspace + - ros-humble-rosidl-default-runtime + - ros-humble-std-msgs + - ros2-distro-mutex 0.7.* humble_* + - vc >=14.3,<15 + - vc14_runtime >=14.44.35208 + - ucrt >=10.0.20348.0 + - vc >=14.3,<15 + - vc14_runtime >=14.44.35208 + - ucrt >=10.0.20348.0 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + - numpy >=1.26.4,<2.0a0 + - python_abi 3.11.* *_cp311 + license: BSD-3-Clause + size: 194949 + timestamp: 1753326968026 +- conda: src/navigator + name: ros-humble-navigator + version: 0.0.0 + build: h9352c13_0 + subdir: win-64 + depends: + - ros-humble-rclcpp + - ros-humble-geometry-msgs + - ros-humble-turtlesim + - vc >=14.1,<15 + - vc >=14.2,<15 + - vc14_runtime >=14.16.27033 + - vc14_runtime >=14.29.30139 + - ucrt >=10.0.20348.0 + - python_abi 3.11.* *_cp311 + - numpy >=1.26.4,<2.0a0 + input: + hash: c2ebb3ab6cc5aa510bc3c1f906cc0fa48b019ae68cc20c9cd9fa69b43e67d50b + globs: + - CMakeLists.txt + - package.xml + - setup.cfg + - setup.py +- conda: src/navigator + name: ros-humble-navigator + version: 0.0.0 + build: hbf21a9e_0 + subdir: linux-64 + depends: + - ros-humble-rclcpp + - ros-humble-geometry-msgs + - ros-humble-turtlesim + - libgcc >=15 + - libgcc >=15 + - libstdcxx >=15 + - python_abi 3.11.* *_cp311 + - numpy >=1.26.4,<2.0a0 + input: + hash: c2ebb3ab6cc5aa510bc3c1f906cc0fa48b019ae68cc20c9cd9fa69b43e67d50b + globs: + - CMakeLists.txt + - package.xml + - setup.cfg + - setup.py +- conda: src/navigator + name: ros-humble-navigator + version: 0.0.0 + build: hbf21a9e_0 + subdir: linux-aarch64 + depends: + - ros-humble-rclcpp + - ros-humble-geometry-msgs + - ros-humble-turtlesim + - libgcc >=15 + - libgcc >=15 + - libstdcxx >=15 + - python_abi 3.11.* *_cp311 + - numpy >=1.26.4,<2.0a0 + input: + hash: c2ebb3ab6cc5aa510bc3c1f906cc0fa48b019ae68cc20c9cd9fa69b43e67d50b + globs: + - CMakeLists.txt + - package.xml + - setup.cfg + - setup.py +- conda: src/navigator + name: ros-humble-navigator + version: 0.0.0 + build: hbf21a9e_0 + subdir: osx-arm64 + depends: + - ros-humble-rclcpp + - ros-humble-geometry-msgs + - ros-humble-turtlesim + - libcxx >=21 + - python_abi 3.11.* *_cp311 + - numpy >=1.26.4,<2.0a0 + input: + hash: c2ebb3ab6cc5aa510bc3c1f906cc0fa48b019ae68cc20c9cd9fa69b43e67d50b + globs: + - CMakeLists.txt + - package.xml + - setup.cfg + - setup.py +- conda: src/navigator_py + name: ros-humble-navigator-py + version: 0.0.0 + build: h9352c13_0 + subdir: win-64 + depends: + - vc >=14.1,<15 + - vc >=14.2,<15 + - vc14_runtime >=14.16.27033 + - vc14_runtime >=14.29.30139 + - ucrt >=10.0.20348.0 + - python_abi 3.11.* *_cp311 + - numpy >=1.26.4,<2.0a0 + input: + hash: e168a14ea4b8c82c406adacf272c890557969f4bf6352d49f9445cdb2a5a36bc + globs: + - CMakeLists.txt + - package.xml + - setup.cfg + - setup.py +- conda: src/navigator_py + name: ros-humble-navigator-py + version: 0.0.0 + build: hbf21a9e_0 + subdir: linux-64 + depends: + - libgcc >=15 + - libgcc >=15 + - libstdcxx >=15 + - python_abi 3.11.* *_cp311 + - numpy >=1.26.4,<2.0a0 + input: + hash: e168a14ea4b8c82c406adacf272c890557969f4bf6352d49f9445cdb2a5a36bc + globs: + - CMakeLists.txt + - package.xml + - setup.cfg + - setup.py +- conda: src/navigator_py + name: ros-humble-navigator-py + version: 0.0.0 + build: hbf21a9e_0 + subdir: linux-aarch64 + depends: + - libgcc >=15 + - libgcc >=15 + - libstdcxx >=15 + - python_abi 3.11.* *_cp311 + - numpy >=1.26.4,<2.0a0 + input: + hash: e168a14ea4b8c82c406adacf272c890557969f4bf6352d49f9445cdb2a5a36bc + globs: + - CMakeLists.txt + - package.xml + - setup.cfg + - setup.py +- conda: src/navigator_py + name: ros-humble-navigator-py + version: 0.0.0 + build: hbf21a9e_0 + subdir: osx-arm64 + depends: + - libcxx >=21 + - python_abi 3.11.* *_cp311 + - numpy >=1.26.4,<2.0a0 + input: + hash: e168a14ea4b8c82c406adacf272c890557969f4bf6352d49f9445cdb2a5a36bc + globs: + - CMakeLists.txt + - package.xml + - setup.cfg + - setup.py +- conda: https://prefix.dev/robostack-staging/linux-64/ros-humble-orocos-kdl-vendor-0.2.5-np126py311hbc2a38a_13.conda + sha256: de46a2167d484f48c194054a1c03c933c0828070c7c4608102aaf7c5b13934c5 + md5: 62f2e860f99ce1163d32027820e0c49a + depends: + - eigen + - orocos-kdl + - python + - ros-humble-eigen3-cmake-module + - ros-humble-ros-workspace + - ros2-distro-mutex 0.7.* humble_* + - libgcc >=13 + - __glibc >=2.17,<3.0.a0 + - libstdcxx >=13 + - libgcc >=13 + - python_abi 3.11.* *_cp311 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + - numpy >=1.26.4,<2.0a0 + - orocos-kdl >=1.5.1,<1.6.0a0 + license: BSD-3-Clause + size: 26819 + timestamp: 1753309542357 +- conda: https://prefix.dev/robostack-staging/linux-aarch64/ros-humble-orocos-kdl-vendor-0.2.5-np126py311hbdd918e_13.conda + sha256: e3268363c6022194dcaf3167cff82536d8eae8cb2c348acc62672770971997bc + md5: 544df8e306cb89d2b9302cd27cf0a72a + depends: + - eigen + - orocos-kdl + - python + - ros-humble-eigen3-cmake-module + - ros-humble-ros-workspace + - ros2-distro-mutex 0.7.* humble_* + - libgcc >=13 + - libstdcxx >=13 + - libgcc >=13 + - numpy >=1.26.4,<2.0a0 + - orocos-kdl >=1.5.1,<1.6.0a0 + - python_abi 3.11.* *_cp311 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + license: BSD-3-Clause + size: 26694 + timestamp: 1753309398501 +- conda: https://prefix.dev/robostack-staging/osx-arm64/ros-humble-orocos-kdl-vendor-0.2.5-np126py311h2a51a2c_13.conda + sha256: 9f287dbe59b60380125bb399761f2a37d34303085989897c47a380a18c9025c9 + md5: a0a1e34f139a68847b84417657cab682 + depends: + - eigen + - orocos-kdl + - python + - ros-humble-eigen3-cmake-module + - ros-humble-ros-workspace + - ros2-distro-mutex 0.7.* humble_* + - libcxx >=18 + - __osx >=11.0 + - numpy >=1.26.4,<2.0a0 + - python_abi 3.11.* *_cp311 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + - orocos-kdl >=1.5.1,<1.6.0a0 + license: BSD-3-Clause + size: 26967 + timestamp: 1753310112173 +- conda: https://prefix.dev/robostack-staging/win-64/ros-humble-orocos-kdl-vendor-0.2.5-np126py311hd5de103_13.conda + sha256: a4bfebb23fe07bcb67263e841004db72e2bbc2df9186d621581eb4675e0ea923 + md5: d10b3efc18ef0c4496d810af9fe3f5be + depends: + - eigen + - orocos-kdl + - python + - ros-humble-eigen3-cmake-module + - ros-humble-ros-workspace + - ros2-distro-mutex 0.7.* humble_* + - vc >=14.3,<15 + - vc14_runtime >=14.44.35208 + - ucrt >=10.0.20348.0 + - vc >=14.3,<15 + - vc14_runtime >=14.44.35208 + - ucrt >=10.0.20348.0 + - orocos-kdl >=1.5.1,<1.6.0a0 + - numpy >=1.26.4,<2.0a0 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + - python_abi 3.11.* *_cp311 + license: BSD-3-Clause + size: 23472 + timestamp: 1753317577873 +- conda: https://prefix.dev/robostack-staging/linux-64/ros-humble-osrf-pycommon-2.1.6-np126py311hbc2a38a_13.conda + sha256: f98fb2e3c542b9600512acf317cbb418adc5d7f03730f0e28ca8ac7f05d13ea5 + md5: 63b2ce925db370d03a65c96a1dcd0bf6 + depends: + - importlib-metadata + - python + - ros-humble-ros-workspace + - ros2-distro-mutex 0.7.* humble_* + - __glibc >=2.17,<3.0.a0 + - libgcc >=13 + - libstdcxx >=13 + - libgcc >=13 + - python_abi 3.11.* *_cp311 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + - numpy >=1.26.4,<2.0a0 + license: BSD-3-Clause + size: 65730 + timestamp: 1753307882788 +- conda: https://prefix.dev/robostack-staging/linux-aarch64/ros-humble-osrf-pycommon-2.1.6-np126py311hbdd918e_13.conda + sha256: 1c6ea92f8aebaf0998fac3c0b13386c1b3903ee6828126e30d9e56587b045ede + md5: 97f69ec1ad377461d3d96bf89f9dab2a + depends: + - importlib-metadata + - python + - ros-humble-ros-workspace + - ros2-distro-mutex 0.7.* humble_* + - libgcc >=13 + - libstdcxx >=13 + - libgcc >=13 + - numpy >=1.26.4,<2.0a0 + - python_abi 3.11.* *_cp311 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + license: BSD-3-Clause + size: 65577 + timestamp: 1753308066519 +- conda: https://prefix.dev/robostack-staging/osx-arm64/ros-humble-osrf-pycommon-2.1.6-np126py311h2a51a2c_13.conda + sha256: 8201ff80475e7e05ba82f1cecf91c81d73bf967313878b41b0ca0dc2934059ac + md5: 52e2977d2bcb2d38b4bbc70297b81310 + depends: + - importlib-metadata + - python + - ros-humble-ros-workspace + - ros2-distro-mutex 0.7.* humble_* + - libcxx >=18 + - __osx >=11.0 + - python_abi 3.11.* *_cp311 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + - numpy >=1.26.4,<2.0a0 + license: BSD-3-Clause + size: 65809 + timestamp: 1753307964297 +- conda: https://prefix.dev/robostack-staging/win-64/ros-humble-osrf-pycommon-2.1.6-np126py311hd5de103_13.conda + sha256: dcc6d89ffc1c8dde48b949dff460289469203a212311637808b3a93c6983b3f0 + md5: 4dcea92f752c9652eac060045e38f361 + depends: + - importlib-metadata + - python + - ros-humble-ros-workspace + - ros2-distro-mutex 0.7.* humble_* + - vc >=14.3,<15 + - vc14_runtime >=14.44.35208 + - ucrt >=10.0.20348.0 + - vc >=14.3,<15 + - vc14_runtime >=14.44.35208 + - ucrt >=10.0.20348.0 + - numpy >=1.26.4,<2.0a0 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + - python_abi 3.11.* *_cp311 + license: BSD-3-Clause + size: 60683 + timestamp: 1753308348592 +- conda: https://prefix.dev/robostack-staging/linux-64/ros-humble-pcl-conversions-2.4.5-np126py311hbc2a38a_13.conda + sha256: 459e2dc8d0e71ea230ccc893b640383ac1b84c14907140f5aa93a564690189f0 + md5: 367b3edafd744b10d1df2797ee754ef1 + depends: + - eigen + - libboost-devel + - pcl + - python + - ros-humble-message-filters + - ros-humble-pcl-msgs + - ros-humble-rclcpp + - ros-humble-ros-workspace + - ros-humble-sensor-msgs + - ros-humble-std-msgs + - ros2-distro-mutex 0.7.* humble_* + - vtk-base + - xorg-libx11 + - xorg-libxext + - __glibc >=2.17,<3.0.a0 + - libstdcxx >=13 + - libgcc >=13 + - numpy >=1.26.4,<2.0a0 + - pcl >=1.15.0,<1.15.1.0a0 + - xorg-libx11 >=1.8.12,<2.0a0 + - vtk-base >=9.4.2,<9.4.3.0a0 + - libgl >=1.7.0,<2.0a0 + - xorg-libxext >=1.3.6,<2.0a0 + - python_abi 3.11.* *_cp311 + - libboost >=1.86.0,<1.87.0a0 + - libopengl >=1.7.0,<2.0a0 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + license: BSD-3-Clause + size: 65127 + timestamp: 1753313898103 +- conda: https://prefix.dev/robostack-staging/linux-aarch64/ros-humble-pcl-conversions-2.4.5-np126py311hbdd918e_13.conda + sha256: ea48268804bf2f278b34127da85b4a026b3cd4e93a790318d5ec96c5602ab6d1 + md5: 5f623e1ffcb70ca8e5aad9e8ac3c26a4 + depends: + - eigen + - libboost-devel + - pcl + - python + - ros-humble-message-filters + - ros-humble-pcl-msgs + - ros-humble-rclcpp + - ros-humble-ros-workspace + - ros-humble-sensor-msgs + - ros-humble-std-msgs + - ros2-distro-mutex 0.7.* humble_* + - vtk-base + - xorg-libx11 + - xorg-libxext + - libstdcxx >=13 + - libgcc >=13 + - vtk-base >=9.4.2,<9.4.3.0a0 + - pcl >=1.15.0,<1.15.1.0a0 + - python_abi 3.11.* *_cp311 + - libboost >=1.86.0,<1.87.0a0 + - libopengl >=1.7.0,<2.0a0 + - libgl >=1.7.0,<2.0a0 + - numpy >=1.26.4,<2.0a0 + - xorg-libx11 >=1.8.12,<2.0a0 + - xorg-libxext >=1.3.6,<2.0a0 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + license: BSD-3-Clause + size: 63988 + timestamp: 1753314002656 +- conda: https://prefix.dev/robostack-staging/osx-arm64/ros-humble-pcl-conversions-2.4.5-np126py311h2a51a2c_13.conda + sha256: 24db6c685b1dd8d4c1dd70860f8c60a7974705658da8569c3474523dbf3bbddf + md5: 5041e31ee2cb411b0d82f352bf710a0a + depends: + - eigen + - libboost-devel + - pcl + - python + - ros-humble-message-filters + - ros-humble-pcl-msgs + - ros-humble-rclcpp + - ros-humble-ros-workspace + - ros-humble-sensor-msgs + - ros-humble-std-msgs + - ros2-distro-mutex 0.7.* humble_* + - vtk-base + - xorg-libx11 + - xorg-libxext + - __osx >=11.0 + - libcxx >=18 + - pcl >=1.15.0,<1.15.1.0a0 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + - numpy >=1.26.4,<2.0a0 + - vtk-base >=9.4.2,<9.4.3.0a0 + - libboost >=1.86.0,<1.87.0a0 + - xorg-libx11 >=1.8.12,<2.0a0 + - python_abi 3.11.* *_cp311 + - xorg-libxext >=1.3.6,<2.0a0 + license: BSD-3-Clause + size: 57711 + timestamp: 1753313983514 +- conda: https://prefix.dev/robostack-staging/win-64/ros-humble-pcl-conversions-2.4.5-np126py311hd5de103_13.conda + sha256: 42d93164a495431c6ca71b94f55ba82605fecf3142ec98f608be423e8ab5fca7 + md5: 4333409706c4f89116b511f0f164fc66 + depends: + - eigen + - libboost-devel + - pcl + - python + - ros-humble-message-filters + - ros-humble-pcl-msgs + - ros-humble-rclcpp + - ros-humble-ros-workspace + - ros-humble-sensor-msgs + - ros-humble-std-msgs + - ros2-distro-mutex 0.7.* humble_* + - vtk-base + - vc >=14.3,<15 + - vc14_runtime >=14.44.35208 + - ucrt >=10.0.20348.0 + - vc >=14.3,<15 + - vc14_runtime >=14.44.35208 + - ucrt >=10.0.20348.0 + - python_abi 3.11.* *_cp311 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + - vtk-base >=9.4.2,<9.4.3.0a0 + - libboost >=1.86.0,<1.87.0a0 + - pcl >=1.15.0,<1.15.1.0a0 + - numpy >=1.26.4,<2.0a0 + license: BSD-3-Clause + size: 50568 + timestamp: 1753334849264 +- conda: https://prefix.dev/robostack-staging/linux-64/ros-humble-pcl-msgs-1.0.0-np126py311hbc2a38a_13.conda + sha256: 311415fe80325620ff0b6323d2a92dd564b902c5fef6e4cc40ed01eed8e5b691 + md5: b7674a58a6ffab3725a7ebcb57c49bfa + depends: + - python + - ros-humble-ros-workspace + - ros-humble-rosidl-default-runtime + - ros-humble-sensor-msgs + - ros-humble-std-msgs + - ros2-distro-mutex 0.7.* humble_* + - libgcc >=13 + - libstdcxx >=13 + - libgcc >=13 + - __glibc >=2.17,<3.0.a0 + - python_abi 3.11.* *_cp311 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + - numpy >=1.26.4,<2.0a0 + license: BSD-3-Clause + size: 131397 + timestamp: 1753312449946 +- conda: https://prefix.dev/robostack-staging/linux-aarch64/ros-humble-pcl-msgs-1.0.0-np126py311hbdd918e_13.conda + sha256: 816920239384790d78f0e1c8a5a986cb65f03f315e545a77d5de16fcb7bfe29a + md5: 21c35c2c80473db9ba5cfb1b047fe419 + depends: + - python + - ros-humble-ros-workspace + - ros-humble-rosidl-default-runtime + - ros-humble-sensor-msgs + - ros-humble-std-msgs + - ros2-distro-mutex 0.7.* humble_* + - libstdcxx >=13 + - libgcc >=13 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + - numpy >=1.26.4,<2.0a0 + - python_abi 3.11.* *_cp311 + license: BSD-3-Clause + size: 135831 + timestamp: 1753312832366 +- conda: https://prefix.dev/robostack-staging/osx-arm64/ros-humble-pcl-msgs-1.0.0-np126py311h2a51a2c_13.conda + sha256: 1e4b069a09ab6a03002062a37b563b1404d9f5a2765f6454aa0fc513f0c62c19 + md5: 46790719199fd4d8bd68d9926b25703e + depends: + - python + - ros-humble-ros-workspace + - ros-humble-rosidl-default-runtime + - ros-humble-sensor-msgs + - ros-humble-std-msgs + - ros2-distro-mutex 0.7.* humble_* + - libcxx >=18 + - __osx >=11.0 + - numpy >=1.26.4,<2.0a0 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + - python_abi 3.11.* *_cp311 + license: BSD-3-Clause + size: 119877 + timestamp: 1753312187808 +- conda: https://prefix.dev/robostack-staging/win-64/ros-humble-pcl-msgs-1.0.0-np126py311hd5de103_13.conda + sha256: 2f559f72a60332392480cf5814e58a511b69e6c0dd5ca4523e3dc1a3a547fcb1 + md5: 89dc252adde9c61b32ab67c1297178a0 + depends: + - python + - ros-humble-ros-workspace + - ros-humble-rosidl-default-runtime + - ros-humble-sensor-msgs + - ros-humble-std-msgs + - ros2-distro-mutex 0.7.* humble_* + - vc >=14.3,<15 + - vc14_runtime >=14.44.35208 + - ucrt >=10.0.20348.0 + - vc >=14.3,<15 + - vc14_runtime >=14.44.35208 + - ucrt >=10.0.20348.0 + - python_abi 3.11.* *_cp311 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + - numpy >=1.26.4,<2.0a0 + license: BSD-3-Clause + size: 129263 + timestamp: 1753328227436 +- conda: https://prefix.dev/robostack-staging/linux-64/ros-humble-pendulum-control-0.20.5-np126py311hbc2a38a_13.conda + sha256: 72942efaeaa3c2d5f21c4f5fa73757e05166d58165f62146e1a9ac51d671858a + md5: 4a7a11fcc9464cbc73fb41bfbca3816a + depends: + - python + - ros-humble-pendulum-msgs + - ros-humble-rclcpp + - ros-humble-ros-workspace + - ros-humble-rttest + - ros-humble-tlsf-cpp + - ros2-distro-mutex 0.7.* humble_* + - libgcc >=13 + - __glibc >=2.17,<3.0.a0 + - libstdcxx >=13 + - libgcc >=13 + - numpy >=1.26.4,<2.0a0 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + - python_abi 3.11.* *_cp311 + license: BSD-3-Clause + size: 328762 + timestamp: 1753314448461 +- conda: https://prefix.dev/robostack-staging/linux-aarch64/ros-humble-pendulum-control-0.20.5-np126py311hbdd918e_13.conda + sha256: 547bea590905629fcbad7c6298b7e212966f0d73bc277f4ff55889a62e11995a + md5: dd3181d41e8e6f081cd6705323c185ac + depends: + - python + - ros-humble-pendulum-msgs + - ros-humble-rclcpp + - ros-humble-ros-workspace + - ros-humble-rttest + - ros-humble-tlsf-cpp + - ros2-distro-mutex 0.7.* humble_* + - libstdcxx >=13 + - libgcc >=13 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + - python_abi 3.11.* *_cp311 + - numpy >=1.26.4,<2.0a0 + license: BSD-3-Clause + size: 326519 + timestamp: 1753314496533 +- conda: https://prefix.dev/robostack-staging/linux-64/ros-humble-pendulum-msgs-0.20.5-np126py311hbc2a38a_13.conda + sha256: d5b3d7c8828f622cfbe6fe00d6e29006a2b4c10e4a43a47e2980c92e229fa0fc + md5: 6f64428825e0edc60eca6b69344d82a0 + depends: + - python + - ros-humble-builtin-interfaces + - ros-humble-ros-workspace + - ros-humble-rosidl-default-runtime + - ros2-distro-mutex 0.7.* humble_* + - libstdcxx >=13 + - libgcc >=13 + - __glibc >=2.17,<3.0.a0 + - python_abi 3.11.* *_cp311 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + - numpy >=1.26.4,<2.0a0 + license: BSD-3-Clause + size: 87459 + timestamp: 1753311907719 +- conda: https://prefix.dev/robostack-staging/linux-aarch64/ros-humble-pendulum-msgs-0.20.5-np126py311hbdd918e_13.conda + sha256: 524e1c6abeac3d70f150eb9f886f56baff5b25a3998b0d14e2bdc0c84bc297a0 + md5: 88e3246cc007cccb6a71a83fdf218801 + depends: + - python + - ros-humble-builtin-interfaces + - ros-humble-ros-workspace + - ros-humble-rosidl-default-runtime + - ros2-distro-mutex 0.7.* humble_* + - libgcc >=13 + - libstdcxx >=13 + - libgcc >=13 + - numpy >=1.26.4,<2.0a0 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + - python_abi 3.11.* *_cp311 + license: BSD-3-Clause + size: 91695 + timestamp: 1753312387652 +- conda: https://prefix.dev/robostack-staging/osx-arm64/ros-humble-pendulum-msgs-0.20.5-np126py311h2a51a2c_13.conda + sha256: d5272add3645fd15a42a8ca66d72600d76b30afd656b95fc59722722a697bd34 + md5: 560e2005ca15743b1133bad711b5fb52 + depends: + - python + - ros-humble-builtin-interfaces + - ros-humble-ros-workspace + - ros-humble-rosidl-default-runtime + - ros2-distro-mutex 0.7.* humble_* + - libcxx >=18 + - __osx >=11.0 + - python_abi 3.11.* *_cp311 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + - numpy >=1.26.4,<2.0a0 + license: BSD-3-Clause + size: 82679 + timestamp: 1753311343137 +- conda: https://prefix.dev/robostack-staging/win-64/ros-humble-pendulum-msgs-0.20.5-np126py311hd5de103_13.conda + sha256: dbdeb1832d7e1ea1b31a51b7cfbbf8d8a3b49f4b0dd71fca4535c7128ece77eb + md5: 9919347cc19a89f7689c55f735d7e39c + depends: + - python + - ros-humble-builtin-interfaces + - ros-humble-ros-workspace + - ros-humble-rosidl-default-runtime + - ros2-distro-mutex 0.7.* humble_* + - vc >=14.3,<15 + - vc14_runtime >=14.44.35208 + - ucrt >=10.0.20348.0 + - vc >=14.3,<15 + - vc14_runtime >=14.44.35208 + - ucrt >=10.0.20348.0 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + - python_abi 3.11.* *_cp311 + - numpy >=1.26.4,<2.0a0 + license: BSD-3-Clause + size: 93121 + timestamp: 1753324120714 +- conda: https://prefix.dev/robostack-staging/linux-64/ros-humble-pluginlib-5.1.0-np126py311hbc2a38a_13.conda + sha256: 8775874f04996c5f33b54dd39e809d5fee684af3bd9daff75856160cf0ad62ad + md5: b3467319d31a545af309eaf4ad691df5 + depends: + - python + - ros-humble-ament-index-cpp + - ros-humble-class-loader + - ros-humble-rcpputils + - ros-humble-rcutils + - ros-humble-ros-workspace + - ros-humble-tinyxml2-vendor + - ros2-distro-mutex 0.7.* humble_* + - libstdcxx >=13 + - libgcc >=13 + - __glibc >=2.17,<3.0.a0 + - numpy >=1.26.4,<2.0a0 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + - python_abi 3.11.* *_cp311 + license: BSD-3-Clause + size: 41045 + timestamp: 1753310180492 +- conda: https://prefix.dev/robostack-staging/linux-aarch64/ros-humble-pluginlib-5.1.0-np126py311hbdd918e_13.conda + sha256: e09b0b5e753f67ea14891f2cfb61f0ddc2654012e904a121af8c861be5f6a17d + md5: e623f3d02682aea78e4a084605417575 + depends: + - python + - ros-humble-ament-index-cpp + - ros-humble-class-loader + - ros-humble-rcpputils + - ros-humble-rcutils + - ros-humble-ros-workspace + - ros-humble-tinyxml2-vendor + - ros2-distro-mutex 0.7.* humble_* + - libgcc >=13 + - libstdcxx >=13 + - libgcc >=13 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + - numpy >=1.26.4,<2.0a0 + - python_abi 3.11.* *_cp311 + license: BSD-3-Clause + size: 40838 + timestamp: 1753311878856 +- conda: https://prefix.dev/robostack-staging/osx-arm64/ros-humble-pluginlib-5.1.0-np126py311h2a51a2c_13.conda + sha256: d9be1b9114a52c5518fc944a29e7bbd690acd4124be34f3b48688a40a816524b + md5: 418580e39f919f4c8d2497bd1054c3f7 + depends: + - python + - ros-humble-ament-index-cpp + - ros-humble-class-loader + - ros-humble-rcpputils + - ros-humble-rcutils + - ros-humble-ros-workspace + - ros-humble-tinyxml2-vendor + - ros2-distro-mutex 0.7.* humble_* + - __osx >=11.0 + - libcxx >=18 + - numpy >=1.26.4,<2.0a0 + - python_abi 3.11.* *_cp311 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + license: BSD-3-Clause + size: 41301 + timestamp: 1753310741805 +- conda: https://prefix.dev/robostack-staging/win-64/ros-humble-pluginlib-5.1.0-np126py311hd5de103_13.conda + sha256: bec6955cd4d338e529b07cee63a2d34706636a3bae85cf32a42d027a8ca78861 + md5: b25514d33f0ad30568b973acd797c989 + depends: + - python + - ros-humble-ament-index-cpp + - ros-humble-class-loader + - ros-humble-rcpputils + - ros-humble-rcutils + - ros-humble-ros-workspace + - ros-humble-tinyxml2-vendor + - ros2-distro-mutex 0.7.* humble_* + - vc >=14.3,<15 + - vc14_runtime >=14.44.35208 + - ucrt >=10.0.20348.0 + - vc >=14.3,<15 + - vc14_runtime >=14.44.35208 + - ucrt >=10.0.20348.0 + - python_abi 3.11.* *_cp311 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + - numpy >=1.26.4,<2.0a0 + license: BSD-3-Clause + size: 37957 + timestamp: 1753321541610 +- conda: https://prefix.dev/robostack-staging/linux-64/ros-humble-pybind11-vendor-2.4.2-np126py311hbc2a38a_13.conda + sha256: 479252348c97d1d2325248795669e8fdf80669b646a038b47a4697dd0bf561a0 + md5: 605444c887765cda6db2342f29aa737b + depends: + - pybind11 + - python + - ros-humble-ros-workspace + - ros2-distro-mutex 0.7.* humble_* + - libstdcxx >=13 + - libgcc >=13 + - __glibc >=2.17,<3.0.a0 + - python_abi 3.11.* *_cp311 + - numpy >=1.26.4,<2.0a0 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + license: BSD-3-Clause + size: 22348 + timestamp: 1753308425968 +- conda: https://prefix.dev/robostack-staging/linux-aarch64/ros-humble-pybind11-vendor-2.4.2-np126py311hbdd918e_13.conda + sha256: b3da2486a1451ac8fe4a0b937c1c077f0e4ed2ac136374439a21573b4a8f3266 + md5: 04a4bee52e52ce90f63611620c58baae + depends: + - pybind11 + - python + - ros-humble-ros-workspace + - ros2-distro-mutex 0.7.* humble_* + - libgcc >=13 + - libstdcxx >=13 + - libgcc >=13 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + - numpy >=1.26.4,<2.0a0 + - python_abi 3.11.* *_cp311 + license: BSD-3-Clause + size: 22165 + timestamp: 1753308541837 +- conda: https://prefix.dev/robostack-staging/osx-arm64/ros-humble-pybind11-vendor-2.4.2-np126py311h2a51a2c_13.conda + sha256: 013ff107dbffc5fd89c533491f3e934e10d7bd5e377760a2a49e16f2499a50a6 + md5: 802fa2946fd7be99b27cf4235689dd59 + depends: + - pybind11 + - python + - ros-humble-ros-workspace + - ros2-distro-mutex 0.7.* humble_* + - libcxx >=18 + - __osx >=11.0 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + - python_abi 3.11.* *_cp311 + - numpy >=1.26.4,<2.0a0 + license: BSD-3-Clause + size: 22564 + timestamp: 1753308736568 +- conda: https://prefix.dev/robostack-staging/win-64/ros-humble-pybind11-vendor-2.4.2-np126py311hd5de103_13.conda + sha256: c1d31e48ad6a035f7baa5efb104087021f415b2b85994e16f5ab359419477b11 + md5: d113fafee46ebb90e3af7b2f60a083d1 + depends: + - pybind11 + - python + - ros-humble-ros-workspace + - ros2-distro-mutex 0.7.* humble_* + - vc >=14.3,<15 + - vc14_runtime >=14.44.35208 + - ucrt >=10.0.20348.0 + - vc >=14.3,<15 + - vc14_runtime >=14.44.35208 + - ucrt >=10.0.20348.0 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + - python_abi 3.11.* *_cp311 + - numpy >=1.26.4,<2.0a0 + license: BSD-3-Clause + size: 19166 + timestamp: 1753312981015 +- conda: https://prefix.dev/robostack-staging/linux-64/ros-humble-python-cmake-module-0.10.0-np126py311hbc2a38a_13.conda + sha256: 82183ca2a9bf24dab1889f2ca136bffc2463435c46c26548925ff1a1b3861d4a + md5: 4061bfeff2c08662e0f26000a9c56f65 + depends: + - python + - ros-humble-ros-workspace + - ros2-distro-mutex 0.7.* humble_* + - libgcc >=13 + - __glibc >=2.17,<3.0.a0 + - libstdcxx >=13 + - libgcc >=13 + - numpy >=1.26.4,<2.0a0 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + - python_abi 3.11.* *_cp311 + license: BSD-3-Clause + size: 27727 + timestamp: 1753309529232 +- conda: https://prefix.dev/robostack-staging/linux-aarch64/ros-humble-python-cmake-module-0.10.0-np126py311hbdd918e_13.conda + sha256: ecfe8733144ff4bf815df4b832c712625ad9b576daa389eb97f44accd2307807 + md5: 71993a6f4b9fb891b28f7d6419397574 + depends: + - python + - ros-humble-ros-workspace + - ros2-distro-mutex 0.7.* humble_* + - libgcc >=13 + - libstdcxx >=13 + - libgcc >=13 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + - numpy >=1.26.4,<2.0a0 + - python_abi 3.11.* *_cp311 + license: BSD-3-Clause + size: 27593 + timestamp: 1753309386762 +- conda: https://prefix.dev/robostack-staging/osx-arm64/ros-humble-python-cmake-module-0.10.0-np126py311h2a51a2c_13.conda + sha256: 8af108ed36cba5dd88ca8905cacb58d67fe936456fb622ce9503a511170315ca + md5: c2c76b73ec5e30bc67ad4b3da5b5988a + depends: + - python + - ros-humble-ros-workspace + - ros2-distro-mutex 0.7.* humble_* + - __osx >=11.0 + - libcxx >=18 + - python_abi 3.11.* *_cp311 + - numpy >=1.26.4,<2.0a0 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + license: BSD-3-Clause + size: 27866 + timestamp: 1753310181276 +- conda: https://prefix.dev/robostack-staging/win-64/ros-humble-python-cmake-module-0.10.0-np126py311hd5de103_13.conda + sha256: f2ce8f1c5867c19a1de7d249fd3b8f87f1db2e63be152da56bde6ad59ad7c329 + md5: 2ed431dded2a08a43f8071964a722aaa + depends: + - python + - ros-humble-ros-workspace + - ros2-distro-mutex 0.7.* humble_* + - vc >=14.3,<15 + - vc14_runtime >=14.44.35208 + - ucrt >=10.0.20348.0 + - vc >=14.3,<15 + - vc14_runtime >=14.44.35208 + - ucrt >=10.0.20348.0 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + - numpy >=1.26.4,<2.0a0 + - python_abi 3.11.* *_cp311 + license: BSD-3-Clause + size: 24422 + timestamp: 1753317472308 +- conda: https://prefix.dev/robostack-staging/linux-64/ros-humble-python-orocos-kdl-vendor-0.2.5-np126py311hbc2a38a_13.conda + sha256: dde27e015035a42b685e9eb3db4488e34af58fc807eb9b84260e5574cbda5bbc + md5: 00230d6542037c10aeb9edd09f9ee39b + depends: + - python + - python-orocos-kdl + - ros-humble-orocos-kdl-vendor + - ros-humble-pybind11-vendor + - ros-humble-ros-workspace + - ros2-distro-mutex 0.7.* humble_* + - libgcc >=13 + - libstdcxx >=13 + - libgcc >=13 + - __glibc >=2.17,<3.0.a0 + - python_abi 3.11.* *_cp311 + - numpy >=1.26.4,<2.0a0 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + - python-orocos-kdl >=1.5.1,<1.6.0a0 + license: BSD-3-Clause + size: 26837 + timestamp: 1753309841031 +- conda: https://prefix.dev/robostack-staging/linux-aarch64/ros-humble-python-orocos-kdl-vendor-0.2.5-np126py311hbdd918e_13.conda + sha256: 8ee2d80aafc2b1b9aae943da5276a504536d086e020729562e44137cf7cbdbd3 + md5: d4085a1905de0fa4be8e6bb5413fff7f + depends: + - python + - python-orocos-kdl + - ros-humble-orocos-kdl-vendor + - ros-humble-pybind11-vendor + - ros-humble-ros-workspace + - ros2-distro-mutex 0.7.* humble_* + - libstdcxx >=13 + - libgcc >=13 + - python_abi 3.11.* *_cp311 + - numpy >=1.26.4,<2.0a0 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + - python-orocos-kdl >=1.5.1,<1.6.0a0 + license: BSD-3-Clause + size: 26710 + timestamp: 1753309610769 +- conda: https://prefix.dev/robostack-staging/osx-arm64/ros-humble-python-orocos-kdl-vendor-0.2.5-np126py311h2a51a2c_13.conda + sha256: a2597d353852d759bb22725d0e036147c38ae151f761a957636cf4cf44ea1f3e + md5: f7ff9b97d4b7df6a5f749d64bb5efc81 + depends: + - python + - python-orocos-kdl + - ros-humble-orocos-kdl-vendor + - ros-humble-pybind11-vendor + - ros-humble-ros-workspace + - ros2-distro-mutex 0.7.* humble_* + - libcxx >=18 + - __osx >=11.0 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + - numpy >=1.26.4,<2.0a0 + - python-orocos-kdl >=1.5.1,<1.6.0a0 + - python_abi 3.11.* *_cp311 + license: BSD-3-Clause + size: 26978 + timestamp: 1753310313715 +- conda: https://prefix.dev/robostack-staging/win-64/ros-humble-python-orocos-kdl-vendor-0.2.5-np126py311hd5de103_13.conda + sha256: 5206eedccc925183e29cc15766b337b6da91432e242a3dd3133e71201ab2df31 + md5: a6bf34439cabae8383860d5228bfab7e + depends: + - python + - python-orocos-kdl + - ros-humble-orocos-kdl-vendor + - ros-humble-pybind11-vendor + - ros-humble-ros-workspace + - ros2-distro-mutex 0.7.* humble_* + - vc >=14.3,<15 + - vc14_runtime >=14.44.35208 + - ucrt >=10.0.20348.0 + - vc >=14.3,<15 + - vc14_runtime >=14.44.35208 + - ucrt >=10.0.20348.0 + - numpy >=1.26.4,<2.0a0 + - python_abi 3.11.* *_cp311 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + - python-orocos-kdl >=1.5.1,<1.6.0a0 + license: BSD-3-Clause + size: 23574 + timestamp: 1753318949933 +- conda: https://prefix.dev/robostack-staging/linux-64/ros-humble-python-qt-binding-1.1.2-np126py311hbc2a38a_13.conda + sha256: e4c876e3591986b6795a35f788bdee0496162cd65b117c08b9298a9677ee7369 + md5: f981587b0085d1099d23118839758910 + depends: + - pyqt + - pyqt-builder + - python + - ros-humble-ros-workspace + - ros2-distro-mutex 0.7.* humble_* + - xorg-libx11 + - xorg-libxext + - libstdcxx >=13 + - libgcc >=13 + - __glibc >=2.17,<3.0.a0 + - libgcc >=13 + - python_abi 3.11.* *_cp311 + - xorg-libx11 >=1.8.12,<2.0a0 + - xorg-libxext >=1.3.6,<2.0a0 + - qt-main >=5.15.15,<5.16.0a0 + - pyqt >=5.15.11,<5.16.0a0 + - libgl >=1.7.0,<2.0a0 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + - numpy >=1.26.4,<2.0a0 + - libopengl >=1.7.0,<2.0a0 + license: BSD-3-Clause + size: 58903 + timestamp: 1753309547353 +- conda: https://prefix.dev/robostack-staging/linux-aarch64/ros-humble-python-qt-binding-1.1.2-np126py311hbdd918e_13.conda + sha256: 6b272e76e7d78272666ec9de9b005d81ad0633e13984ea29cf1b812b930ad7b2 + md5: e7b9677c8b60a40a4425032e16f68cb5 + depends: + - pyqt + - pyqt-builder + - python + - ros-humble-ros-workspace + - ros2-distro-mutex 0.7.* humble_* + - xorg-libx11 + - xorg-libxext + - libgcc >=13 + - libstdcxx >=13 + - libgcc >=13 + - numpy >=1.26.4,<2.0a0 + - python_abi 3.11.* *_cp311 + - xorg-libx11 >=1.8.12,<2.0a0 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + - libgl >=1.7.0,<2.0a0 + - pyqt >=5.15.11,<5.16.0a0 + - libopengl >=1.7.0,<2.0a0 + - xorg-libxext >=1.3.6,<2.0a0 + - qt-main >=5.15.15,<5.16.0a0 + license: BSD-3-Clause + size: 58734 + timestamp: 1753309405262 +- conda: https://prefix.dev/robostack-staging/osx-arm64/ros-humble-python-qt-binding-1.1.2-np126py311h2a51a2c_13.conda + sha256: 021f29b6645b5f19c7ca48bd14d87cfe521d96188f57ce23ea5b4a8df7b94e3b + md5: 8a093247383131fdb871f11799da33e7 + depends: + - pyqt + - pyqt-builder + - python + - ros-humble-ros-workspace + - ros2-distro-mutex 0.7.* humble_* + - xorg-libx11 + - xorg-libxext + - libcxx >=18 + - __osx >=11.0 + - numpy >=1.26.4,<2.0a0 + - qt-main >=5.15.15,<5.16.0a0 + - pyqt >=5.15.11,<5.16.0a0 + - xorg-libx11 >=1.8.12,<2.0a0 + - python_abi 3.11.* *_cp311 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + - xorg-libxext >=1.3.6,<2.0a0 + license: BSD-3-Clause + size: 52017 + timestamp: 1753310121075 +- conda: https://prefix.dev/robostack-staging/win-64/ros-humble-python-qt-binding-1.1.2-np126py311hd5de103_13.conda + sha256: 3637fd0c67af0e0edee846bc086434c7691d8ae683aaca98ba4c789aefec3f0e + md5: 5a85acfeade5b2be71a721574798c3c0 + depends: + - pyqt + - pyqt-builder + - python + - ros-humble-ros-workspace + - ros2-distro-mutex 0.7.* humble_* + - vc >=14.3,<15 + - vc14_runtime >=14.44.35208 + - ucrt >=10.0.20348.0 + - vc >=14.3,<15 + - vc14_runtime >=14.44.35208 + - ucrt >=10.0.20348.0 + - pyqt >=5.15.11,<5.16.0a0 + - qt-main >=5.15.15,<5.16.0a0 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + - python_abi 3.11.* *_cp311 + - numpy >=1.26.4,<2.0a0 + license: BSD-3-Clause + size: 47141 + timestamp: 1753317625976 +- conda: https://prefix.dev/robostack-staging/linux-64/ros-humble-qt-dotgraph-2.2.4-np126py311hbc2a38a_13.conda + sha256: 8314ce7b6463490ceac8c66e28763265ae88f21a9c00afcac25315ee7dc735f4 + md5: ed076f1a868445168dea52b45b9d9f9c + depends: + - pydot + - python + - ros-humble-python-qt-binding + - ros-humble-ros-workspace + - ros2-distro-mutex 0.7.* humble_* + - libgcc >=13 + - libstdcxx >=13 + - libgcc >=13 + - __glibc >=2.17,<3.0.a0 + - numpy >=1.26.4,<2.0a0 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + - python_abi 3.11.* *_cp311 + license: BSD-3-Clause + size: 63348 + timestamp: 1753309839184 +- conda: https://prefix.dev/robostack-staging/linux-aarch64/ros-humble-qt-dotgraph-2.2.4-np126py311hbdd918e_13.conda + sha256: fbbad44fc03a6858b171dde78c1d1ef9104e914b256901371676f148f892fe0a + md5: b69b53b0c168d0cdcbf65b6dcda6df57 + depends: + - pydot + - python + - ros-humble-python-qt-binding + - ros-humble-ros-workspace + - ros2-distro-mutex 0.7.* humble_* + - libstdcxx >=13 + - libgcc >=13 + - python_abi 3.11.* *_cp311 + - numpy >=1.26.4,<2.0a0 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + license: BSD-3-Clause + size: 64355 + timestamp: 1753309611009 +- conda: https://prefix.dev/robostack-staging/osx-arm64/ros-humble-qt-dotgraph-2.2.4-np126py311h2a51a2c_13.conda + sha256: bc9e8c2cf28083690de54b611779f204216f952c1f87e6aa3513ba0a7e79fb4e + md5: 471619dbee901e0d645b8e744790f6be + depends: + - pydot + - python + - ros-humble-python-qt-binding + - ros-humble-ros-workspace + - ros2-distro-mutex 0.7.* humble_* + - __osx >=11.0 + - libcxx >=18 + - numpy >=1.26.4,<2.0a0 + - python_abi 3.11.* *_cp311 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + license: BSD-3-Clause + size: 61909 + timestamp: 1753310311310 +- conda: https://prefix.dev/robostack-staging/win-64/ros-humble-qt-dotgraph-2.2.4-np126py311hd5de103_13.conda + sha256: efec00972b5ef030fd9bbd29a7564b0e7b86c7d4d5cc0ce8e56e5b772db57f26 + md5: b753006289f99c938e0314d6b84471ae + depends: + - pydot + - python + - ros-humble-python-qt-binding + - ros-humble-ros-workspace + - ros2-distro-mutex 0.7.* humble_* + - vc >=14.3,<15 + - vc14_runtime >=14.44.35208 + - ucrt >=10.0.20348.0 + - vc >=14.3,<15 + - vc14_runtime >=14.44.35208 + - ucrt >=10.0.20348.0 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + - python_abi 3.11.* *_cp311 + - numpy >=1.26.4,<2.0a0 + license: BSD-3-Clause + size: 55044 + timestamp: 1753318685090 +- conda: https://prefix.dev/robostack-staging/linux-64/ros-humble-qt-gui-2.2.4-np126py311hbc2a38a_13.conda + sha256: 18f342c1b88e20cd212fe3224f434ac5e2f1cf58d1b3e840268dd43b48fe12db + md5: afc75265854b9f05b0c264f78b17cf2b + depends: + - catkin_pkg + - python + - ros-humble-ament-index-python + - ros-humble-python-qt-binding + - ros-humble-ros-workspace + - ros-humble-tango-icons-vendor + - ros2-distro-mutex 0.7.* humble_* + - xorg-libx11 + - xorg-libxext + - __glibc >=2.17,<3.0.a0 + - libgcc >=13 + - libstdcxx >=13 + - libgcc >=13 + - numpy >=1.26.4,<2.0a0 + - python_abi 3.11.* *_cp311 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + - qt-main >=5.15.15,<5.16.0a0 + - xorg-libxext >=1.3.6,<2.0a0 + - libopengl >=1.7.0,<2.0a0 + - libgl >=1.7.0,<2.0a0 + - xorg-libx11 >=1.8.12,<2.0a0 + - pyqt >=5.15.11,<5.16.0a0 + license: BSD-3-Clause + size: 175736 + timestamp: 1753309860434 +- conda: https://prefix.dev/robostack-staging/linux-aarch64/ros-humble-qt-gui-2.2.4-np126py311hbdd918e_13.conda + sha256: 6da3ee74cc9e616f2c2646dff1bd80698ef24cb9eac408afa598f736f4988057 + md5: 78df9e7c30c4d72a8ca4097af9f5ab53 + depends: + - catkin_pkg + - python + - ros-humble-ament-index-python + - ros-humble-python-qt-binding + - ros-humble-ros-workspace + - ros-humble-tango-icons-vendor + - ros2-distro-mutex 0.7.* humble_* + - xorg-libx11 + - xorg-libxext + - libgcc >=13 + - libstdcxx >=13 + - libgcc >=13 + - qt-main >=5.15.15,<5.16.0a0 + - python_abi 3.11.* *_cp311 + - numpy >=1.26.4,<2.0a0 + - xorg-libx11 >=1.8.12,<2.0a0 + - libgl >=1.7.0,<2.0a0 + - libopengl >=1.7.0,<2.0a0 + - pyqt >=5.15.11,<5.16.0a0 + - xorg-libxext >=1.3.6,<2.0a0 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + license: BSD-3-Clause + size: 175431 + timestamp: 1753309634470 +- conda: https://prefix.dev/robostack-staging/osx-arm64/ros-humble-qt-gui-2.2.4-np126py311h2a51a2c_13.conda + sha256: 66a1adc32c604d43f6db7944b847af30dd469949a414c5417dbc370c8397850b + md5: ec0f8fdff2a3b38fb4bfe768df54bca8 + depends: + - catkin_pkg + - python + - ros-humble-ament-index-python + - ros-humble-python-qt-binding + - ros-humble-ros-workspace + - ros-humble-tango-icons-vendor + - ros2-distro-mutex 0.7.* humble_* + - xorg-libx11 + - xorg-libxext + - libcxx >=18 + - __osx >=11.0 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + - qt-main >=5.15.15,<5.16.0a0 + - xorg-libxext >=1.3.6,<2.0a0 + - xorg-libx11 >=1.8.12,<2.0a0 + - numpy >=1.26.4,<2.0a0 + - pyqt >=5.15.11,<5.16.0a0 + - python_abi 3.11.* *_cp311 + license: BSD-3-Clause + size: 169014 + timestamp: 1753310348663 +- conda: https://prefix.dev/robostack-staging/win-64/ros-humble-qt-gui-2.2.4-np126py311hd5de103_13.conda + sha256: 7062a0027c1470d601766108a2c81f37bc5a6b0541d16bbfd2fda57cb796163e + md5: 4a853053433898262b6f79323975601e + depends: + - catkin_pkg + - python + - ros-humble-ament-index-python + - ros-humble-python-qt-binding + - ros-humble-ros-workspace + - ros-humble-tango-icons-vendor + - ros2-distro-mutex 0.7.* humble_* + - vc >=14.3,<15 + - vc14_runtime >=14.44.35208 + - ucrt >=10.0.20348.0 + - vc >=14.3,<15 + - vc14_runtime >=14.44.35208 + - ucrt >=10.0.20348.0 + - numpy >=1.26.4,<2.0a0 + - python_abi 3.11.* *_cp311 + - qt-main >=5.15.15,<5.16.0a0 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + - pyqt >=5.15.11,<5.16.0a0 + license: BSD-3-Clause + size: 164134 + timestamp: 1753319061176 +- conda: https://prefix.dev/robostack-staging/linux-64/ros-humble-qt-gui-cpp-2.2.4-np126py311hbc2a38a_13.conda + sha256: d86e13514fa2cd92858f0c469e3803cb8067aa562cce0f962c497b275c590061 + md5: 2b500ee6dcb76ca0ace39c316ede91d4 + depends: + - pep517 + - pyqt-builder + - python + - ros-humble-pluginlib + - ros-humble-qt-gui + - ros-humble-rcpputils + - ros-humble-ros-workspace + - ros-humble-tinyxml2-vendor + - ros2-distro-mutex 0.7.* humble_* + - xorg-libx11 + - xorg-libxext + - libgcc >=13 + - libstdcxx >=13 + - libgcc >=13 + - __glibc >=2.17,<3.0.a0 + - xorg-libxext >=1.3.6,<2.0a0 + - python_abi 3.11.* *_cp311 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + - xorg-libx11 >=1.8.12,<2.0a0 + - qt-main >=5.15.15,<5.16.0a0 + - libopengl >=1.7.0,<2.0a0 + - libgl >=1.7.0,<2.0a0 + - numpy >=1.26.4,<2.0a0 + license: BSD-3-Clause + size: 500871 + timestamp: 1753310233057 +- conda: https://prefix.dev/robostack-staging/linux-aarch64/ros-humble-qt-gui-cpp-2.2.4-np126py311hbdd918e_13.conda + sha256: e4a166ef1a783e72e10d0a6c46e676b1c3ec2f2b76743045e5a760839796261a + md5: d38eeb1b1fb616b60ef6fba0d3a30f5b + depends: + - pep517 + - pyqt-builder + - python + - ros-humble-pluginlib + - ros-humble-qt-gui + - ros-humble-rcpputils + - ros-humble-ros-workspace + - ros-humble-tinyxml2-vendor + - ros2-distro-mutex 0.7.* humble_* + - xorg-libx11 + - xorg-libxext + - libgcc >=13 + - libstdcxx >=13 + - libgcc >=13 + - qt-main >=5.15.15,<5.16.0a0 + - libopengl >=1.7.0,<2.0a0 + - python_abi 3.11.* *_cp311 + - libgl >=1.7.0,<2.0a0 + - xorg-libxext >=1.3.6,<2.0a0 + - numpy >=1.26.4,<2.0a0 + - xorg-libx11 >=1.8.12,<2.0a0 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + license: BSD-3-Clause + size: 499446 + timestamp: 1753311941168 +- conda: https://prefix.dev/robostack-staging/osx-arm64/ros-humble-qt-gui-cpp-2.2.4-np126py311h2a51a2c_13.conda + sha256: 598e70aafecc495ac13ac6fdd256d0884eefdc3ad9f6c7d4bbc86b2292aeea7b + md5: c44bcc045d059e19114a3cd1c81e87b2 + depends: + - pep517 + - pyqt-builder + - python + - ros-humble-pluginlib + - ros-humble-qt-gui + - ros-humble-rcpputils + - ros-humble-ros-workspace + - ros-humble-tinyxml2-vendor + - ros2-distro-mutex 0.7.* humble_* + - xorg-libx11 + - xorg-libxext + - libcxx >=18 + - __osx >=11.0 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + - python_abi 3.11.* *_cp311 + - xorg-libx11 >=1.8.12,<2.0a0 + - numpy >=1.26.4,<2.0a0 + - xorg-libxext >=1.3.6,<2.0a0 + - qt-main >=5.15.15,<5.16.0a0 + license: BSD-3-Clause + size: 329374 + timestamp: 1753310808466 +- conda: https://prefix.dev/robostack-staging/win-64/ros-humble-qt-gui-cpp-2.2.4-np126py311hd5de103_13.conda + sha256: 1f28b52c5bf1200cc8812ddb08550f3561419a7eb9203df282ab53ed508da604 + md5: 673485368d0158770a233322b2355e55 + depends: + - pep517 + - pyqt-builder + - python + - ros-humble-pluginlib + - ros-humble-qt-gui + - ros-humble-rcpputils + - ros-humble-ros-workspace + - ros-humble-tinyxml2-vendor + - ros2-distro-mutex 0.7.* humble_* + - vc >=14.3,<15 + - vc14_runtime >=14.44.35208 + - ucrt >=10.0.20348.0 + - vc >=14.3,<15 + - vc14_runtime >=14.44.35208 + - ucrt >=10.0.20348.0 + - numpy >=1.26.4,<2.0a0 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + - python_abi 3.11.* *_cp311 + - qt-main >=5.15.15,<5.16.0a0 + license: BSD-3-Clause + size: 25205 + timestamp: 1753321745794 +- conda: https://prefix.dev/robostack-staging/linux-64/ros-humble-qt-gui-py-common-2.2.4-np126py311hbc2a38a_13.conda + sha256: 17430e606390eb57d31fc998aa1968fb24118a6de5edf1183da90e965f1a815f + md5: 10b4e57f992537a8e04c4712a4efb53a + depends: + - python + - ros-humble-ament-index-python + - ros-humble-python-qt-binding + - ros-humble-ros-workspace + - ros2-distro-mutex 0.7.* humble_* + - __glibc >=2.17,<3.0.a0 + - libstdcxx >=13 + - libgcc >=13 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + - python_abi 3.11.* *_cp311 + - numpy >=1.26.4,<2.0a0 + license: BSD-3-Clause + size: 39071 + timestamp: 1753309879217 +- conda: https://prefix.dev/robostack-staging/linux-aarch64/ros-humble-qt-gui-py-common-2.2.4-np126py311hbdd918e_13.conda + sha256: 73a24655672db7caaab5acbd78959794c6108b9ee9912163107b6cfdc0a5e0ed + md5: 93a26f04560095e2c04b735be97d2fa1 + depends: + - python + - ros-humble-ament-index-python + - ros-humble-python-qt-binding + - ros-humble-ros-workspace + - ros2-distro-mutex 0.7.* humble_* + - libstdcxx >=13 + - libgcc >=13 + - python_abi 3.11.* *_cp311 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + - numpy >=1.26.4,<2.0a0 + license: BSD-3-Clause + size: 38942 + timestamp: 1753309660923 +- conda: https://prefix.dev/robostack-staging/osx-arm64/ros-humble-qt-gui-py-common-2.2.4-np126py311h2a51a2c_13.conda + sha256: 095d697af789bd318232d142bb96efe73b8ce94704b5e01fce8f59aecfb65dc6 + md5: 92f01f4d9bc844b972005c716f77f8bc + depends: + - python + - ros-humble-ament-index-python + - ros-humble-python-qt-binding + - ros-humble-ros-workspace + - ros2-distro-mutex 0.7.* humble_* + - __osx >=11.0 + - libcxx >=18 + - python_abi 3.11.* *_cp311 + - numpy >=1.26.4,<2.0a0 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + license: BSD-3-Clause + size: 39290 + timestamp: 1753310381586 +- conda: https://prefix.dev/robostack-staging/win-64/ros-humble-qt-gui-py-common-2.2.4-np126py311hd5de103_13.conda + sha256: 8755c7de57937adda8333490feaf00844374bcc7aea3f3658d217d23c59fbc66 + md5: 2ca966455e87eaf65abe5f0e5134d015 + depends: + - python + - ros-humble-ament-index-python + - ros-humble-python-qt-binding + - ros-humble-ros-workspace + - ros2-distro-mutex 0.7.* humble_* + - vc >=14.3,<15 + - vc14_runtime >=14.44.35208 + - ucrt >=10.0.20348.0 + - vc >=14.3,<15 + - vc14_runtime >=14.44.35208 + - ucrt >=10.0.20348.0 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + - numpy >=1.26.4,<2.0a0 + - python_abi 3.11.* *_cp311 + license: BSD-3-Clause + size: 35734 + timestamp: 1753319202294 +- conda: https://prefix.dev/robostack-staging/linux-64/ros-humble-quality-of-service-demo-cpp-0.20.5-np126py311hbc2a38a_13.conda + sha256: d1e084152fd6e35e81c0568b13d6de0637166cc40d9cbe62777232800f2f483d + md5: 6038a06df912cbd5793a923b9840d034 + depends: + - python + - ros-humble-example-interfaces + - ros-humble-launch-ros + - ros-humble-rclcpp + - ros-humble-rclcpp-components + - ros-humble-rcutils + - ros-humble-rmw + - ros-humble-ros-workspace + - ros-humble-sensor-msgs + - ros-humble-std-msgs + - ros2-distro-mutex 0.7.* humble_* + - libgcc >=13 + - libstdcxx >=13 + - libgcc >=13 + - __glibc >=2.17,<3.0.a0 + - python_abi 3.11.* *_cp311 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + - numpy >=1.26.4,<2.0a0 + license: BSD-3-Clause + size: 587985 + timestamp: 1753313494679 +- conda: https://prefix.dev/robostack-staging/linux-aarch64/ros-humble-quality-of-service-demo-cpp-0.20.5-np126py311hbdd918e_13.conda + sha256: ea86ba1d84d4f579c86c0b474bb68d9acae9a277b784a27e00506fc94ab15d15 + md5: be655a960cbac87c4e4f67f41dc5260f + depends: + - python + - ros-humble-example-interfaces + - ros-humble-launch-ros + - ros-humble-rclcpp + - ros-humble-rclcpp-components + - ros-humble-rcutils + - ros-humble-rmw + - ros-humble-ros-workspace + - ros-humble-sensor-msgs + - ros-humble-std-msgs + - ros2-distro-mutex 0.7.* humble_* + - libgcc >=13 + - libstdcxx >=13 + - libgcc >=13 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + - numpy >=1.26.4,<2.0a0 + - python_abi 3.11.* *_cp311 + license: BSD-3-Clause + size: 586849 + timestamp: 1753313651782 +- conda: https://prefix.dev/robostack-staging/osx-arm64/ros-humble-quality-of-service-demo-cpp-0.20.5-np126py311h2a51a2c_13.conda + sha256: 4b014b33990524e3695e14d481b5ca87c9de74f40bcb7cd7df1ee369b614218b + md5: e525441ec2838d73e2f834d4e9829cb2 + depends: + - python + - ros-humble-example-interfaces + - ros-humble-launch-ros + - ros-humble-rclcpp + - ros-humble-rclcpp-components + - ros-humble-rcutils + - ros-humble-rmw + - ros-humble-ros-workspace + - ros-humble-sensor-msgs + - ros-humble-std-msgs + - ros2-distro-mutex 0.7.* humble_* + - __osx >=11.0 + - libcxx >=18 + - python_abi 3.11.* *_cp311 + - numpy >=1.26.4,<2.0a0 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + license: BSD-3-Clause + size: 464760 + timestamp: 1753313522890 +- conda: https://prefix.dev/robostack-staging/win-64/ros-humble-quality-of-service-demo-cpp-0.20.5-np126py311hd5de103_13.conda + sha256: 01cbe17b6df6e679dbfb05e9264ab8574a02b8827eea73e5626e9dad2c6d0418 + md5: 0b7cce8ed040962892cd0787e7b6f992 + depends: + - python + - ros-humble-example-interfaces + - ros-humble-launch-ros + - ros-humble-rclcpp + - ros-humble-rclcpp-components + - ros-humble-rcutils + - ros-humble-rmw + - ros-humble-ros-workspace + - ros-humble-sensor-msgs + - ros-humble-std-msgs + - ros2-distro-mutex 0.7.* humble_* + - vc >=14.3,<15 + - vc14_runtime >=14.44.35208 + - ucrt >=10.0.20348.0 + - vc >=14.3,<15 + - vc14_runtime >=14.44.35208 + - ucrt >=10.0.20348.0 + - python_abi 3.11.* *_cp311 + - numpy >=1.26.4,<2.0a0 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + license: BSD-3-Clause + size: 352010 + timestamp: 1753333296711 +- conda: https://prefix.dev/robostack-staging/linux-64/ros-humble-quality-of-service-demo-py-0.20.5-np126py311hbc2a38a_13.conda + sha256: 6adc42de869471fea750162bfd496798d9bddf1e2d999e1d7ff7a009336fe264 + md5: 5a7d98e9c71ad5c71110ca2298b674ee + depends: + - python + - ros-humble-rclpy + - ros-humble-ros-workspace + - ros-humble-std-msgs + - ros2-distro-mutex 0.7.* humble_* + - libgcc >=13 + - libstdcxx >=13 + - libgcc >=13 + - __glibc >=2.17,<3.0.a0 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + - python_abi 3.11.* *_cp311 + - numpy >=1.26.4,<2.0a0 + license: BSD-3-Clause + size: 34455 + timestamp: 1753313132708 +- conda: https://prefix.dev/robostack-staging/linux-aarch64/ros-humble-quality-of-service-demo-py-0.20.5-np126py311hbdd918e_13.conda + sha256: af8ae495880bae88101d9480fe670c2371b5d1114feb21c3f3563d39c3590abb + md5: b3aaba6eb4092e06de8267949c25fae2 + depends: + - python + - ros-humble-rclpy + - ros-humble-ros-workspace + - ros-humble-std-msgs + - ros2-distro-mutex 0.7.* humble_* + - libgcc >=13 + - libstdcxx >=13 + - libgcc >=13 + - python_abi 3.11.* *_cp311 + - numpy >=1.26.4,<2.0a0 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + license: BSD-3-Clause + size: 34338 + timestamp: 1753313370212 +- conda: https://prefix.dev/robostack-staging/osx-arm64/ros-humble-quality-of-service-demo-py-0.20.5-np126py311h2a51a2c_13.conda + sha256: c70ac00997fccb476d50489660d4f66e7c85246fb573cd622d701c20f9c795fc + md5: 6ee4ee9fde0f25e41d2a5fae917a5bed + depends: + - python + - ros-humble-rclpy + - ros-humble-ros-workspace + - ros-humble-std-msgs + - ros2-distro-mutex 0.7.* humble_* + - __osx >=11.0 + - libcxx >=18 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + - python_abi 3.11.* *_cp311 + - numpy >=1.26.4,<2.0a0 + license: BSD-3-Clause + size: 34541 + timestamp: 1753313044232 +- conda: https://prefix.dev/robostack-staging/win-64/ros-humble-quality-of-service-demo-py-0.20.5-np126py311hd5de103_13.conda + sha256: 8e4cb7c5d261bfedcebebc328b570a140b3860b0cb9cd87323535d85ec2c38a0 + md5: c37ce0f6996d39cb94e37e1ae2925bdb + depends: + - python + - ros-humble-rclpy + - ros-humble-ros-workspace + - ros-humble-std-msgs + - ros2-distro-mutex 0.7.* humble_* + - vc >=14.3,<15 + - vc14_runtime >=14.44.35208 + - ucrt >=10.0.20348.0 + - vc >=14.3,<15 + - vc14_runtime >=14.44.35208 + - ucrt >=10.0.20348.0 + - numpy >=1.26.4,<2.0a0 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + - python_abi 3.11.* *_cp311 + license: BSD-3-Clause + size: 40486 + timestamp: 1753331948402 +- conda: https://prefix.dev/robostack-staging/linux-64/ros-humble-rcl-5.3.9-np126py311hbc2a38a_13.conda + sha256: ec48fadd9812801265fab47865db3f9f63ed1669614be50cddd8ff4a1dd4830b + md5: a71af214c801802909a4af2c48b2c8f1 + depends: + - python + - ros-humble-rcl-interfaces + - ros-humble-rcl-logging-interface + - ros-humble-rcl-logging-spdlog + - ros-humble-rcl-yaml-param-parser + - ros-humble-rcutils + - ros-humble-rmw + - ros-humble-rmw-implementation + - ros-humble-ros-workspace + - ros-humble-rosidl-runtime-c + - ros-humble-tracetools + - ros2-distro-mutex 0.7.* humble_* + - __glibc >=2.17,<3.0.a0 + - libgcc >=13 + - libstdcxx >=13 + - libgcc >=13 + - python_abi 3.11.* *_cp311 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + - numpy >=1.26.4,<2.0a0 + license: BSD-3-Clause + size: 176139 + timestamp: 1753312600779 +- conda: https://prefix.dev/robostack-staging/linux-aarch64/ros-humble-rcl-5.3.9-np126py311hbdd918e_13.conda + sha256: e57c4b342cd89890feb9a243bf01ad49b5076a77cf345607a8c925ffcceac63a + md5: 1f1221d2ce610a4573e26e6e964512ad + depends: + - python + - ros-humble-rcl-interfaces + - ros-humble-rcl-logging-interface + - ros-humble-rcl-logging-spdlog + - ros-humble-rcl-yaml-param-parser + - ros-humble-rcutils + - ros-humble-rmw + - ros-humble-rmw-implementation + - ros-humble-ros-workspace + - ros-humble-rosidl-runtime-c + - ros-humble-tracetools + - ros2-distro-mutex 0.7.* humble_* + - libgcc >=13 + - libstdcxx >=13 + - libgcc >=13 + - numpy >=1.26.4,<2.0a0 + - python_abi 3.11.* *_cp311 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + license: BSD-3-Clause + size: 179612 + timestamp: 1753312937826 +- conda: https://prefix.dev/robostack-staging/osx-arm64/ros-humble-rcl-5.3.9-np126py311h2a51a2c_13.conda + sha256: 9d34d7082cb4b0ff6b38b673ff4fee003b4e9f8810080c1fa711b8046b459936 + md5: 1528671e4471088d397f6d0bea6cf777 + depends: + - python + - ros-humble-rcl-interfaces + - ros-humble-rcl-logging-interface + - ros-humble-rcl-logging-spdlog + - ros-humble-rcl-yaml-param-parser + - ros-humble-rcutils + - ros-humble-rmw + - ros-humble-rmw-implementation + - ros-humble-ros-workspace + - ros-humble-rosidl-runtime-c + - ros-humble-tracetools + - ros2-distro-mutex 0.7.* humble_* + - libcxx >=18 + - __osx >=11.0 + - numpy >=1.26.4,<2.0a0 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + - python_abi 3.11.* *_cp311 + license: BSD-3-Clause + size: 160619 + timestamp: 1753312401528 +- conda: https://prefix.dev/robostack-staging/win-64/ros-humble-rcl-5.3.9-np126py311hd5de103_13.conda + sha256: 3e5b958c700e8d031b4b8033350cdbac633c17176f93037d80392e5f231a3fc8 + md5: 9ff8a1acad810a154fb68762ea715ba2 + depends: + - python + - ros-humble-rcl-interfaces + - ros-humble-rcl-logging-interface + - ros-humble-rcl-logging-spdlog + - ros-humble-rcl-yaml-param-parser + - ros-humble-rcutils + - ros-humble-rmw + - ros-humble-rmw-implementation + - ros-humble-ros-workspace + - ros-humble-rosidl-runtime-c + - ros-humble-tracetools + - ros2-distro-mutex 0.7.* humble_* + - vc >=14.3,<15 + - vc14_runtime >=14.44.35208 + - ucrt >=10.0.20348.0 + - vc >=14.3,<15 + - vc14_runtime >=14.44.35208 + - ucrt >=10.0.20348.0 + - python_abi 3.11.* *_cp311 + - numpy >=1.26.4,<2.0a0 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + license: BSD-3-Clause + size: 173366 + timestamp: 1753328900761 +- conda: https://prefix.dev/robostack-staging/linux-64/ros-humble-rcl-action-5.3.9-np126py311hbc2a38a_13.conda + sha256: 89fe80a8ee1ade928a7712263d84ad73b3ca373cbfd740c6f85bfcbff3e57c1b + md5: 29ad41e27718df471f0e58b7252f92bd + depends: + - python + - ros-humble-action-msgs + - ros-humble-rcl + - ros-humble-rcutils + - ros-humble-rmw + - ros-humble-ros-workspace + - ros-humble-rosidl-runtime-c + - ros2-distro-mutex 0.7.* humble_* + - __glibc >=2.17,<3.0.a0 + - libgcc >=13 + - libstdcxx >=13 + - libgcc >=13 + - python_abi 3.11.* *_cp311 + - numpy >=1.26.4,<2.0a0 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + license: BSD-3-Clause + size: 74784 + timestamp: 1753312897992 +- conda: https://prefix.dev/robostack-staging/linux-aarch64/ros-humble-rcl-action-5.3.9-np126py311hbdd918e_13.conda + sha256: c4116a50ba370fc7897d2d99b4b3a17501f0a35e1232664c9a202061e043c0b8 + md5: f1177a4c631c2af472b0d302bcf4de37 + depends: + - python + - ros-humble-action-msgs + - ros-humble-rcl + - ros-humble-rcutils + - ros-humble-rmw + - ros-humble-ros-workspace + - ros-humble-rosidl-runtime-c + - ros2-distro-mutex 0.7.* humble_* + - libstdcxx >=13 + - libgcc >=13 + - numpy >=1.26.4,<2.0a0 + - python_abi 3.11.* *_cp311 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + license: BSD-3-Clause + size: 78003 + timestamp: 1753313175367 +- conda: https://prefix.dev/robostack-staging/osx-arm64/ros-humble-rcl-action-5.3.9-np126py311h2a51a2c_13.conda + sha256: c735dc774b1ccce827af5ac552880c68868dc2959d897d5caa13d6acbcd8eef2 + md5: dca98b7152bf672f7d98dbfd4fd4aa15 + depends: + - python + - ros-humble-action-msgs + - ros-humble-rcl + - ros-humble-rcutils + - ros-humble-rmw + - ros-humble-ros-workspace + - ros-humble-rosidl-runtime-c + - ros2-distro-mutex 0.7.* humble_* + - __osx >=11.0 + - libcxx >=18 + - python_abi 3.11.* *_cp311 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + - numpy >=1.26.4,<2.0a0 + license: BSD-3-Clause + size: 73216 + timestamp: 1753312721988 +- conda: https://prefix.dev/robostack-staging/win-64/ros-humble-rcl-action-5.3.9-np126py311hd5de103_13.conda + sha256: ee4b1d50c860f8eaacca0e092a519909a60f955063e31d2131564e0b5dfc91e8 + md5: 3e74a7576218ff4693353cf1f4750757 + depends: + - python + - ros-humble-action-msgs + - ros-humble-rcl + - ros-humble-rcutils + - ros-humble-rmw + - ros-humble-ros-workspace + - ros-humble-rosidl-runtime-c + - ros2-distro-mutex 0.7.* humble_* + - vc >=14.3,<15 + - vc14_runtime >=14.44.35208 + - ucrt >=10.0.20348.0 + - vc >=14.3,<15 + - vc14_runtime >=14.44.35208 + - ucrt >=10.0.20348.0 + - numpy >=1.26.4,<2.0a0 + - python_abi 3.11.* *_cp311 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + license: BSD-3-Clause + size: 79978 + timestamp: 1753330353128 +- conda: https://prefix.dev/robostack-staging/linux-64/ros-humble-rcl-interfaces-1.2.1-np126py311hbc2a38a_13.conda + sha256: 5c35bd127812982949bc175728ae854b02d5d88b618490cd4c49a7775428d604 + md5: 948f4ad973c3dbd634755c5fb38b1ea5 + depends: + - python + - ros-humble-builtin-interfaces + - ros-humble-ros-workspace + - ros-humble-rosidl-default-runtime + - ros2-distro-mutex 0.7.* humble_* + - libgcc >=13 + - __glibc >=2.17,<3.0.a0 + - libstdcxx >=13 + - libgcc >=13 + - python_abi 3.11.* *_cp311 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + - numpy >=1.26.4,<2.0a0 + license: BSD-3-Clause + size: 335237 + timestamp: 1753311949710 +- conda: https://prefix.dev/robostack-staging/linux-aarch64/ros-humble-rcl-interfaces-1.2.1-np126py311hbdd918e_13.conda + sha256: 5b23794b40d7a98493f51a3b3e71d1ead41293cb0be430a2129b2b343c141ffd + md5: cd21ffba5a9c438310be2fdcb75c3605 + depends: + - python + - ros-humble-builtin-interfaces + - ros-humble-ros-workspace + - ros-humble-rosidl-default-runtime + - ros2-distro-mutex 0.7.* humble_* + - libstdcxx >=13 + - libgcc >=13 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + - python_abi 3.11.* *_cp311 + - numpy >=1.26.4,<2.0a0 + license: BSD-3-Clause + size: 339742 + timestamp: 1753312422428 +- conda: https://prefix.dev/robostack-staging/osx-arm64/ros-humble-rcl-interfaces-1.2.1-np126py311h2a51a2c_13.conda + sha256: 716d97b5e2f0d6af14da1118911ad4a17a81166da691167ab700ef084591f80b + md5: d748ace26bb4d5715072358924d3cb6d + depends: + - python + - ros-humble-builtin-interfaces + - ros-humble-ros-workspace + - ros-humble-rosidl-default-runtime + - ros2-distro-mutex 0.7.* humble_* + - libcxx >=18 + - __osx >=11.0 + - numpy >=1.26.4,<2.0a0 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + - python_abi 3.11.* *_cp311 + license: BSD-3-Clause + size: 280129 + timestamp: 1753311327277 +- conda: https://prefix.dev/robostack-staging/win-64/ros-humble-rcl-interfaces-1.2.1-np126py311hd5de103_13.conda + sha256: 91e3a3b8e5125fbe93d1ed3b11968c0aabfa45738638942904ababc447f71424 + md5: ca443aca57d2a760490c1e8327d35b9b + depends: + - python + - ros-humble-builtin-interfaces + - ros-humble-ros-workspace + - ros-humble-rosidl-default-runtime + - ros2-distro-mutex 0.7.* humble_* + - vc >=14.3,<15 + - vc14_runtime >=14.44.35208 + - ucrt >=10.0.20348.0 + - vc >=14.3,<15 + - vc14_runtime >=14.44.35208 + - ucrt >=10.0.20348.0 + - numpy >=1.26.4,<2.0a0 + - python_abi 3.11.* *_cp311 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + license: BSD-3-Clause + size: 293584 + timestamp: 1753324150773 +- conda: https://prefix.dev/robostack-staging/linux-64/ros-humble-rcl-lifecycle-5.3.9-np126py311hbc2a38a_13.conda + sha256: 2ea8275733662faf3ce68fbc8371e21ec3624300177829b2180eea214eb310ee + md5: 9fd745f0480c67725a8ef56212b4b709 + depends: + - python + - ros-humble-lifecycle-msgs + - ros-humble-rcl + - ros-humble-rcutils + - ros-humble-rmw + - ros-humble-ros-workspace + - ros-humble-rosidl-runtime-c + - ros-humble-tracetools + - ros2-distro-mutex 0.7.* humble_* + - __glibc >=2.17,<3.0.a0 + - libgcc >=13 + - libstdcxx >=13 + - libgcc >=13 + - python_abi 3.11.* *_cp311 + - numpy >=1.26.4,<2.0a0 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + license: BSD-3-Clause + size: 55850 + timestamp: 1753312882636 +- conda: https://prefix.dev/robostack-staging/linux-aarch64/ros-humble-rcl-lifecycle-5.3.9-np126py311hbdd918e_13.conda + sha256: dcd92275a10ba83b5bc4b52c7f823d2efbf67e6e79c52552e10b550ac276221e + md5: 7b4a74e04dac5428d6eee230ed66a01a + depends: + - python + - ros-humble-lifecycle-msgs + - ros-humble-rcl + - ros-humble-rcutils + - ros-humble-rmw + - ros-humble-ros-workspace + - ros-humble-rosidl-runtime-c + - ros-humble-tracetools + - ros2-distro-mutex 0.7.* humble_* + - libstdcxx >=13 + - libgcc >=13 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + - numpy >=1.26.4,<2.0a0 + - python_abi 3.11.* *_cp311 + license: BSD-3-Clause + size: 56330 + timestamp: 1753313159075 +- conda: https://prefix.dev/robostack-staging/osx-arm64/ros-humble-rcl-lifecycle-5.3.9-np126py311h2a51a2c_13.conda + sha256: ee6444a97b5fb4f89ca8489b003aa1420668ec348f7ad3c749be61d3e9f9b10e + md5: ce1cbfa7be1c20583ce677bb6e870a20 + depends: + - python + - ros-humble-lifecycle-msgs + - ros-humble-rcl + - ros-humble-rcutils + - ros-humble-rmw + - ros-humble-ros-workspace + - ros-humble-rosidl-runtime-c + - ros-humble-tracetools + - ros2-distro-mutex 0.7.* humble_* + - libcxx >=18 + - __osx >=11.0 + - numpy >=1.26.4,<2.0a0 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + - python_abi 3.11.* *_cp311 + license: BSD-3-Clause + size: 52689 + timestamp: 1753312701917 +- conda: https://prefix.dev/robostack-staging/win-64/ros-humble-rcl-lifecycle-5.3.9-np126py311hd5de103_13.conda + sha256: 673678008c9033f145e337329129384eabb05147e46ced6936688953c956bd6e + md5: 316b628523f1f54d4e4da4f4d8f3e69c + depends: + - python + - ros-humble-lifecycle-msgs + - ros-humble-rcl + - ros-humble-rcutils + - ros-humble-rmw + - ros-humble-ros-workspace + - ros-humble-rosidl-runtime-c + - ros-humble-tracetools + - ros2-distro-mutex 0.7.* humble_* + - vc >=14.3,<15 + - vc14_runtime >=14.44.35208 + - ucrt >=10.0.20348.0 + - vc >=14.3,<15 + - vc14_runtime >=14.44.35208 + - ucrt >=10.0.20348.0 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + - numpy >=1.26.4,<2.0a0 + - python_abi 3.11.* *_cp311 + license: BSD-3-Clause + size: 54793 + timestamp: 1753330067524 +- conda: https://prefix.dev/robostack-staging/linux-64/ros-humble-rcl-logging-interface-2.3.1-np126py311hbc2a38a_13.conda + sha256: 9906776e2466f2d3544f7d54aafee81ef2108f97e5978e00a8aa39aabefc1151 + md5: 758ed3e070662712de0f7009f9152fe0 + depends: + - python + - ros-humble-rcutils + - ros-humble-ros-workspace + - ros2-distro-mutex 0.7.* humble_* + - libgcc >=13 + - libstdcxx >=13 + - libgcc >=13 + - __glibc >=2.17,<3.0.a0 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + - numpy >=1.26.4,<2.0a0 + - python_abi 3.11.* *_cp311 + license: BSD-3-Clause + size: 34985 + timestamp: 1753310081246 +- conda: https://prefix.dev/robostack-staging/linux-aarch64/ros-humble-rcl-logging-interface-2.3.1-np126py311hbdd918e_13.conda + sha256: 5cd6c4a2df6770fb12f414c4b5b57e80288ecc4dc1fe6ea20956cfcbc4172c4e + md5: 4bc8006e096af9c18ab1e43022c74221 + depends: + - python + - ros-humble-rcutils + - ros-humble-ros-workspace + - ros2-distro-mutex 0.7.* humble_* + - libgcc >=13 + - libstdcxx >=13 + - libgcc >=13 + - python_abi 3.11.* *_cp311 + - numpy >=1.26.4,<2.0a0 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + license: BSD-3-Clause + size: 35190 + timestamp: 1753309862386 +- conda: https://prefix.dev/robostack-staging/osx-arm64/ros-humble-rcl-logging-interface-2.3.1-np126py311h2a51a2c_13.conda + sha256: a5965f362aa8292c142d80cc4dc16e08ba28b62173cf314ec8d3824345ae3c71 + md5: 9c8da46e43a3fb9c49f15aa297c0534f + depends: + - python + - ros-humble-rcutils + - ros-humble-ros-workspace + - ros2-distro-mutex 0.7.* humble_* + - libcxx >=18 + - __osx >=11.0 + - python_abi 3.11.* *_cp311 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + - numpy >=1.26.4,<2.0a0 + license: BSD-3-Clause + size: 34468 + timestamp: 1753310618732 +- conda: https://prefix.dev/robostack-staging/win-64/ros-humble-rcl-logging-interface-2.3.1-np126py311hd5de103_13.conda + sha256: 0fe584e991a65d3b9079b1526e9130d735be15265116e3ab7938a9216f13e476 + md5: 69673f8fe1c5cd4295f84a4968625908 + depends: + - python + - ros-humble-rcutils + - ros-humble-ros-workspace + - ros2-distro-mutex 0.7.* humble_* + - vc >=14.3,<15 + - vc14_runtime >=14.44.35208 + - ucrt >=10.0.20348.0 + - vc >=14.3,<15 + - vc14_runtime >=14.44.35208 + - ucrt >=10.0.20348.0 + - numpy >=1.26.4,<2.0a0 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + - python_abi 3.11.* *_cp311 + license: BSD-3-Clause + size: 34689 + timestamp: 1753320909693 +- conda: https://prefix.dev/robostack-staging/linux-64/ros-humble-rcl-logging-spdlog-2.3.1-np126py311h11365e7_13.conda + sha256: 68389479ac66668419a34c3880b4be0a0988e9040db5d8bc7295884b3e23a63e + md5: 2903cf0402e13981e8253df996b2f085 + depends: + - python + - ros-humble-rcl-logging-interface + - ros-humble-rcpputils + - ros-humble-rcutils + - ros-humble-ros-workspace + - ros-humble-spdlog-vendor + - ros2-distro-mutex 0.7.* humble_* + - spdlog + - libgcc >=13 + - __glibc >=2.17,<3.0.a0 + - libstdcxx >=13 + - libgcc >=13 + - spdlog >=1.15.3,<1.16.0a0 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + - python_abi 3.11.* *_cp311 + - numpy >=1.26.4,<2.0a0 + license: BSD-3-Clause + size: 42096 + timestamp: 1753310174125 +- conda: https://prefix.dev/robostack-staging/linux-aarch64/ros-humble-rcl-logging-spdlog-2.3.1-np126py311h5f8052a_13.conda + sha256: 61a86ca2e37f0821a5bf22cfeb9ba5e9e1a2d7cd22cbe38db8faa3dcbc82ac0a + md5: 29a893c6a5d5b8cd528dd1cfd1793242 + depends: + - python + - ros-humble-rcl-logging-interface + - ros-humble-rcpputils + - ros-humble-rcutils + - ros-humble-ros-workspace + - ros-humble-spdlog-vendor + - ros2-distro-mutex 0.7.* humble_* + - spdlog + - libstdcxx >=13 + - libgcc >=13 + - numpy >=1.26.4,<2.0a0 + - python_abi 3.11.* *_cp311 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + - spdlog >=1.15.3,<1.16.0a0 + license: BSD-3-Clause + size: 43168 + timestamp: 1753311870011 +- conda: https://prefix.dev/robostack-staging/osx-arm64/ros-humble-rcl-logging-spdlog-2.3.1-np126py311h6932ae0_13.conda + sha256: bdea417f3712e8d78fb8d9e83ac6593056c239c4254de0a85da1cbdc7b5826ad + md5: 496f5822f5ca3f1079b6a4510d0dee67 + depends: + - python + - ros-humble-rcl-logging-interface + - ros-humble-rcpputils + - ros-humble-rcutils + - ros-humble-ros-workspace + - ros-humble-spdlog-vendor + - ros2-distro-mutex 0.7.* humble_* + - spdlog + - libcxx >=18 + - __osx >=11.0 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + - python_abi 3.11.* *_cp311 + - numpy >=1.26.4,<2.0a0 + - spdlog >=1.15.3,<1.16.0a0 + license: BSD-3-Clause + size: 39276 + timestamp: 1753310732116 +- conda: https://prefix.dev/robostack-staging/win-64/ros-humble-rcl-logging-spdlog-2.3.1-np126py311hc120487_13.conda + sha256: 078fdb62c4f57ffe34a9dd9419e2be713f0ac3fcb7191e6e4654c08f65f2c39f + md5: d0b5d34c089633037b40dd8f34f83be3 + depends: + - python + - ros-humble-rcl-logging-interface + - ros-humble-rcpputils + - ros-humble-rcutils + - ros-humble-ros-workspace + - ros-humble-spdlog-vendor + - ros2-distro-mutex 0.7.* humble_* + - spdlog + - vc >=14.3,<15 + - vc14_runtime >=14.44.35208 + - ucrt >=10.0.20348.0 + - vc >=14.3,<15 + - vc14_runtime >=14.44.35208 + - ucrt >=10.0.20348.0 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + - numpy >=1.26.4,<2.0a0 + - python_abi 3.11.* *_cp311 + - spdlog >=1.15.3,<1.16.0a0 + license: BSD-3-Clause + size: 39002 + timestamp: 1753321462221 +- conda: https://prefix.dev/robostack-staging/linux-64/ros-humble-rcl-yaml-param-parser-5.3.9-np126py311hbc2a38a_13.conda + sha256: 3ae31e7758ebf046295d4bf46cce8d29fab93db1f36c93173b4c332c38cc0011 + md5: 80ecce29505f3a0c15e9e810202fcafc + depends: + - python + - ros-humble-libyaml-vendor + - ros-humble-rmw + - ros-humble-ros-workspace + - ros2-distro-mutex 0.7.* humble_* + - yaml + - yaml-cpp + - __glibc >=2.17,<3.0.a0 + - libgcc >=13 + - libstdcxx >=13 + - libgcc >=13 + - numpy >=1.26.4,<2.0a0 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + - yaml >=0.2.5,<0.3.0a0 + - python_abi 3.11.* *_cp311 + - yaml-cpp >=0.8.0,<0.9.0a0 + license: BSD-3-Clause + size: 51015 + timestamp: 1753310167467 +- conda: https://prefix.dev/robostack-staging/linux-aarch64/ros-humble-rcl-yaml-param-parser-5.3.9-np126py311hbdd918e_13.conda + sha256: 22fd5ad832945296342b159978171158f009c1998f364d1eebb391602b7af0a9 + md5: 13578198046aa4561b1e49356b9762c7 + depends: + - python + - ros-humble-libyaml-vendor + - ros-humble-rmw + - ros-humble-ros-workspace + - ros2-distro-mutex 0.7.* humble_* + - yaml + - yaml-cpp + - libstdcxx >=13 + - libgcc >=13 + - python_abi 3.11.* *_cp311 + - numpy >=1.26.4,<2.0a0 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + - yaml-cpp >=0.8.0,<0.9.0a0 + - yaml >=0.2.5,<0.3.0a0 + license: BSD-3-Clause + size: 52156 + timestamp: 1753311863138 +- conda: https://prefix.dev/robostack-staging/osx-arm64/ros-humble-rcl-yaml-param-parser-5.3.9-np126py311h2a51a2c_13.conda + sha256: 0b2d60e6e73d5c18aa5c438e20f8829bfab08fd6fe6fc50de671c36b5c18755c + md5: 2910e29c5e347098186b95536c20729a + depends: + - python + - ros-humble-libyaml-vendor + - ros-humble-rmw + - ros-humble-ros-workspace + - ros2-distro-mutex 0.7.* humble_* + - yaml + - yaml-cpp + - libcxx >=18 + - __osx >=11.0 + - yaml >=0.2.5,<0.3.0a0 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + - yaml-cpp >=0.8.0,<0.9.0a0 + - numpy >=1.26.4,<2.0a0 + - python_abi 3.11.* *_cp311 + license: BSD-3-Clause + size: 48577 + timestamp: 1753310720310 +- conda: https://prefix.dev/robostack-staging/win-64/ros-humble-rcl-yaml-param-parser-5.3.9-np126py311hd5de103_13.conda + sha256: 85d4c32f9e52226fa752cdf146cacc9ecb2cf1654beaca1b95bfbb25992098f0 + md5: 256119470cd02d5929d5bd42c86deef9 + depends: + - python + - ros-humble-libyaml-vendor + - ros-humble-rmw + - ros-humble-ros-workspace + - ros2-distro-mutex 0.7.* humble_* + - yaml + - yaml-cpp + - vc >=14.3,<15 + - vc14_runtime >=14.44.35208 + - ucrt >=10.0.20348.0 + - vc >=14.3,<15 + - vc14_runtime >=14.44.35208 + - ucrt >=10.0.20348.0 + - python_abi 3.11.* *_cp311 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + - yaml-cpp >=0.8.0,<0.9.0a0 + - numpy >=1.26.4,<2.0a0 + - yaml >=0.2.5,<0.3.0a0 + license: BSD-3-Clause + size: 51811 + timestamp: 1753321376262 +- conda: https://prefix.dev/robostack-staging/linux-64/ros-humble-rclcpp-16.0.13-np126py311hbc2a38a_13.conda + sha256: 2839988694063391c24e6ac3d4aa2a8b26bc5fa1bf5f5a693ee6bb803b0292dd + md5: 860d1f1567685bc02e793c6053dd38cd + depends: + - python + - ros-humble-ament-index-cpp + - ros-humble-builtin-interfaces + - ros-humble-libstatistics-collector + - ros-humble-rcl + - ros-humble-rcl-interfaces + - ros-humble-rcl-yaml-param-parser + - ros-humble-rcpputils + - ros-humble-rcutils + - ros-humble-rmw + - ros-humble-ros-workspace + - ros-humble-rosgraph-msgs + - ros-humble-rosidl-runtime-cpp + - ros-humble-rosidl-typesupport-c + - ros-humble-rosidl-typesupport-cpp + - ros-humble-statistics-msgs + - ros-humble-tracetools + - ros2-distro-mutex 0.7.* humble_* + - __glibc >=2.17,<3.0.a0 + - libgcc >=13 + - libstdcxx >=13 + - libgcc >=13 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + - numpy >=1.26.4,<2.0a0 + - python_abi 3.11.* *_cp311 + license: BSD-3-Clause + size: 877794 + timestamp: 1753313037836 +- conda: https://prefix.dev/robostack-staging/linux-aarch64/ros-humble-rclcpp-16.0.13-np126py311hbdd918e_13.conda + sha256: 9644c68a8d1f17a5e25927a5b528ef5bffd01dad206a8d4785e962aa46cf041b + md5: 8bb329e9c4ec9a3b1e5a6f6de482c946 + depends: + - python + - ros-humble-ament-index-cpp + - ros-humble-builtin-interfaces + - ros-humble-libstatistics-collector + - ros-humble-rcl + - ros-humble-rcl-interfaces + - ros-humble-rcl-yaml-param-parser + - ros-humble-rcpputils + - ros-humble-rcutils + - ros-humble-rmw + - ros-humble-ros-workspace + - ros-humble-rosgraph-msgs + - ros-humble-rosidl-runtime-cpp + - ros-humble-rosidl-typesupport-c + - ros-humble-rosidl-typesupport-cpp + - ros-humble-statistics-msgs + - ros-humble-tracetools + - ros2-distro-mutex 0.7.* humble_* + - libgcc >=13 + - libstdcxx >=13 + - libgcc >=13 + - numpy >=1.26.4,<2.0a0 + - python_abi 3.11.* *_cp311 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + license: BSD-3-Clause + size: 850697 + timestamp: 1753313289431 +- conda: https://prefix.dev/robostack-staging/osx-arm64/ros-humble-rclcpp-16.0.13-np126py311h2a51a2c_13.conda + sha256: 460c0b9caeef52a5fd805bac921f1d073cb21507e711ea3b54042090c9defa0f + md5: e1b4732346107feaa66bf026ed528051 + depends: + - python + - ros-humble-ament-index-cpp + - ros-humble-builtin-interfaces + - ros-humble-libstatistics-collector + - ros-humble-rcl + - ros-humble-rcl-interfaces + - ros-humble-rcl-yaml-param-parser + - ros-humble-rcpputils + - ros-humble-rcutils + - ros-humble-rmw + - ros-humble-ros-workspace + - ros-humble-rosgraph-msgs + - ros-humble-rosidl-runtime-cpp + - ros-humble-rosidl-typesupport-c + - ros-humble-rosidl-typesupport-cpp + - ros-humble-statistics-msgs + - ros-humble-tracetools + - ros2-distro-mutex 0.7.* humble_* + - __osx >=11.0 + - libcxx >=18 + - python_abi 3.11.* *_cp311 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + - numpy >=1.26.4,<2.0a0 + license: BSD-3-Clause + size: 647593 + timestamp: 1753312847180 +- conda: https://prefix.dev/robostack-staging/win-64/ros-humble-rclcpp-16.0.13-np126py311hd5de103_13.conda + sha256: aa879880ab696995e848ef6cb7a112c3abf514c3761689777f5105bca2f07f44 + md5: 2d45fc89bdf5467b691662c84fea25d2 + depends: + - python + - ros-humble-ament-index-cpp + - ros-humble-builtin-interfaces + - ros-humble-libstatistics-collector + - ros-humble-rcl + - ros-humble-rcl-interfaces + - ros-humble-rcl-yaml-param-parser + - ros-humble-rcpputils + - ros-humble-rcutils + - ros-humble-rmw + - ros-humble-ros-workspace + - ros-humble-rosgraph-msgs + - ros-humble-rosidl-runtime-cpp + - ros-humble-rosidl-typesupport-c + - ros-humble-rosidl-typesupport-cpp + - ros-humble-statistics-msgs + - ros-humble-tracetools + - ros2-distro-mutex 0.7.* humble_* + - vc >=14.3,<15 + - vc14_runtime >=14.44.35208 + - ucrt >=10.0.20348.0 + - vc >=14.3,<15 + - vc14_runtime >=14.44.35208 + - ucrt >=10.0.20348.0 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + - numpy >=1.26.4,<2.0a0 + - python_abi 3.11.* *_cp311 + license: BSD-3-Clause + size: 587686 + timestamp: 1753330840560 +- conda: https://prefix.dev/robostack-staging/linux-64/ros-humble-rclcpp-action-16.0.13-np126py311hbc2a38a_13.conda + sha256: 97445fa2022a84e86918f4295df2727861abeb21b529a01e27d7c35230116796 + md5: c3c1ed416292c7651c7ca045f965c0b4 + depends: + - python + - ros-humble-action-msgs + - ros-humble-ament-cmake + - ros-humble-rcl-action + - ros-humble-rclcpp + - ros-humble-rcpputils + - ros-humble-ros-workspace + - ros-humble-rosidl-runtime-c + - ros2-distro-mutex 0.7.* humble_* + - libstdcxx >=13 + - libgcc >=13 + - __glibc >=2.17,<3.0.a0 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + - numpy >=1.26.4,<2.0a0 + - python_abi 3.11.* *_cp311 + license: BSD-3-Clause + size: 116171 + timestamp: 1753313185616 +- conda: https://prefix.dev/robostack-staging/linux-aarch64/ros-humble-rclcpp-action-16.0.13-np126py311hbdd918e_13.conda + sha256: 0b07a6277d281446b52ef42d27274e13f366e1b740282d1e95c569648b92dc6a + md5: ed607d8f9a0a4ccc5096d1f8a3ec9f27 + depends: + - python + - ros-humble-action-msgs + - ros-humble-ament-cmake + - ros-humble-rcl-action + - ros-humble-rclcpp + - ros-humble-rcpputils + - ros-humble-ros-workspace + - ros-humble-rosidl-runtime-c + - ros2-distro-mutex 0.7.* humble_* + - libstdcxx >=13 + - libgcc >=13 + - python_abi 3.11.* *_cp311 + - numpy >=1.26.4,<2.0a0 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + license: BSD-3-Clause + size: 116244 + timestamp: 1753313428171 +- conda: https://prefix.dev/robostack-staging/osx-arm64/ros-humble-rclcpp-action-16.0.13-np126py311h2a51a2c_13.conda + sha256: 67cc9989a70e9abb38e80efdd14beafc6ae2e99fd0bfef46630a4f63593c640b + md5: adf99ded6ccd314794db290e130a3556 + depends: + - python + - ros-humble-action-msgs + - ros-humble-ament-cmake + - ros-humble-rcl-action + - ros-humble-rclcpp + - ros-humble-rcpputils + - ros-humble-ros-workspace + - ros-humble-rosidl-runtime-c + - ros2-distro-mutex 0.7.* humble_* + - __osx >=11.0 + - libcxx >=18 + - numpy >=1.26.4,<2.0a0 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + - python_abi 3.11.* *_cp311 + license: BSD-3-Clause + size: 101181 + timestamp: 1753313286673 +- conda: https://prefix.dev/robostack-staging/win-64/ros-humble-rclcpp-action-16.0.13-np126py311hd5de103_13.conda + sha256: 52c12c1f1a985809bb58ed028ccfcbcdcd7eebcb06ae21c6c8a347976cc79cd4 + md5: 9b7d617efcbf88f7aa01fd63035af1ed + depends: + - python + - ros-humble-action-msgs + - ros-humble-ament-cmake + - ros-humble-rcl-action + - ros-humble-rclcpp + - ros-humble-rcpputils + - ros-humble-ros-workspace + - ros-humble-rosidl-runtime-c + - ros2-distro-mutex 0.7.* humble_* + - vc >=14.3,<15 + - vc14_runtime >=14.44.35208 + - ucrt >=10.0.20348.0 + - vc >=14.3,<15 + - vc14_runtime >=14.44.35208 + - ucrt >=10.0.20348.0 + - python_abi 3.11.* *_cp311 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + - numpy >=1.26.4,<2.0a0 + license: BSD-3-Clause + size: 101594 + timestamp: 1753331618880 +- conda: https://prefix.dev/robostack-staging/linux-64/ros-humble-rclcpp-components-16.0.13-np126py311hbc2a38a_13.conda + sha256: 61599ffe40a6feed191ff8c45ccaac0222eb438ad334fec80ca8dc836eb84d02 + md5: e6b02bcbb9f57eedd570a42c93f69ab4 + depends: + - python + - ros-humble-ament-index-cpp + - ros-humble-class-loader + - ros-humble-composition-interfaces + - ros-humble-rclcpp + - ros-humble-ros-workspace + - ros2-distro-mutex 0.7.* humble_* + - __glibc >=2.17,<3.0.a0 + - libstdcxx >=13 + - libgcc >=13 + - python_abi 3.11.* *_cp311 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + - numpy >=1.26.4,<2.0a0 + license: BSD-3-Clause + size: 134276 + timestamp: 1753313170024 +- conda: https://prefix.dev/robostack-staging/linux-aarch64/ros-humble-rclcpp-components-16.0.13-np126py311hbdd918e_13.conda + sha256: 6e87d414149762d185f149819d3f3dba1d2aadbce196a56d4e06fe50faa1486f + md5: dcb66fe4fd9a2299ea80beff9ab8d8b2 + depends: + - python + - ros-humble-ament-index-cpp + - ros-humble-class-loader + - ros-humble-composition-interfaces + - ros-humble-rclcpp + - ros-humble-ros-workspace + - ros2-distro-mutex 0.7.* humble_* + - libgcc >=13 + - libstdcxx >=13 + - libgcc >=13 + - numpy >=1.26.4,<2.0a0 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + - python_abi 3.11.* *_cp311 + license: BSD-3-Clause + size: 137683 + timestamp: 1753313411481 +- conda: https://prefix.dev/robostack-staging/osx-arm64/ros-humble-rclcpp-components-16.0.13-np126py311h2a51a2c_13.conda + sha256: 9562902e63ffb0f57c07b2d890869398c9f87787e85c9a2ea57d74cb5af8acfb + md5: 8674f50ac3ea1845e5a6e15fe85ea016 + depends: + - python + - ros-humble-ament-index-cpp + - ros-humble-class-loader + - ros-humble-composition-interfaces + - ros-humble-rclcpp + - ros-humble-ros-workspace + - ros2-distro-mutex 0.7.* humble_* + - __osx >=11.0 + - libcxx >=18 + - python_abi 3.11.* *_cp311 + - numpy >=1.26.4,<2.0a0 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + license: BSD-3-Clause + size: 115479 + timestamp: 1753313263176 +- conda: https://prefix.dev/robostack-staging/win-64/ros-humble-rclcpp-components-16.0.13-np126py311hd5de103_13.conda + sha256: 24f0320c3483a180c9f256fcbb71aa4a6dd0181d5ca5964db24c221b9337c28f + md5: 3c894422d7abef06f40d1f12c21db5c1 + depends: + - python + - ros-humble-ament-index-cpp + - ros-humble-class-loader + - ros-humble-composition-interfaces + - ros-humble-rclcpp + - ros-humble-ros-workspace + - ros2-distro-mutex 0.7.* humble_* + - vc >=14.3,<15 + - vc14_runtime >=14.44.35208 + - ucrt >=10.0.20348.0 + - vc >=14.3,<15 + - vc14_runtime >=14.44.35208 + - ucrt >=10.0.20348.0 + - python_abi 3.11.* *_cp311 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + - numpy >=1.26.4,<2.0a0 + license: BSD-3-Clause + size: 109708 + timestamp: 1753331518648 +- conda: https://prefix.dev/robostack-staging/linux-64/ros-humble-rclcpp-lifecycle-16.0.13-np126py311hbc2a38a_13.conda + sha256: 563e0004cf1a4a7f9fc751303bf6aed0ed462601702db49a00b6a56d5ee740d0 + md5: 899fd9086a7ff8797b70203435bfd0f5 + depends: + - python + - ros-humble-lifecycle-msgs + - ros-humble-rcl-lifecycle + - ros-humble-rclcpp + - ros-humble-rmw + - ros-humble-ros-workspace + - ros-humble-rosidl-typesupport-cpp + - ros2-distro-mutex 0.7.* humble_* + - libstdcxx >=13 + - libgcc >=13 + - __glibc >=2.17,<3.0.a0 + - numpy >=1.26.4,<2.0a0 + - python_abi 3.11.* *_cp311 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + license: BSD-3-Clause + size: 127909 + timestamp: 1753313146439 +- conda: https://prefix.dev/robostack-staging/linux-aarch64/ros-humble-rclcpp-lifecycle-16.0.13-np126py311hbdd918e_13.conda + sha256: 57e8675f8a681a00a86c8c9ef91c8d3ff00974a6bb786f7399b2195536875f47 + md5: c1f325e009439e53982a3faa68c9d2c5 + depends: + - python + - ros-humble-lifecycle-msgs + - ros-humble-rcl-lifecycle + - ros-humble-rclcpp + - ros-humble-rmw + - ros-humble-ros-workspace + - ros-humble-rosidl-typesupport-cpp + - ros2-distro-mutex 0.7.* humble_* + - libgcc >=13 + - libstdcxx >=13 + - libgcc >=13 + - numpy >=1.26.4,<2.0a0 + - python_abi 3.11.* *_cp311 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + license: BSD-3-Clause + size: 125170 + timestamp: 1753313383586 +- conda: https://prefix.dev/robostack-staging/osx-arm64/ros-humble-rclcpp-lifecycle-16.0.13-np126py311h2a51a2c_13.conda + sha256: d805a292d148bcfd9f95345cb6703c1e14332ab3e9c77153e0e5c37ed7ae1e21 + md5: 4688aa0bb888caaa034456e2147a0944 + depends: + - python + - ros-humble-lifecycle-msgs + - ros-humble-rcl-lifecycle + - ros-humble-rclcpp + - ros-humble-rmw + - ros-humble-ros-workspace + - ros-humble-rosidl-typesupport-cpp + - ros2-distro-mutex 0.7.* humble_* + - libcxx >=18 + - __osx >=11.0 + - numpy >=1.26.4,<2.0a0 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + - python_abi 3.11.* *_cp311 + license: BSD-3-Clause + size: 106637 + timestamp: 1753313222584 +- conda: https://prefix.dev/robostack-staging/win-64/ros-humble-rclcpp-lifecycle-16.0.13-np126py311hd5de103_13.conda + sha256: 48752c0151c218f9ea27fb9b3bfbac0c0b04404d2ed6ea62f1e7437f7c8514fc + md5: 44f3a3f36ed015d9c7c5fb3dde3b612b + depends: + - python + - ros-humble-lifecycle-msgs + - ros-humble-rcl-lifecycle + - ros-humble-rclcpp + - ros-humble-rmw + - ros-humble-ros-workspace + - ros-humble-rosidl-typesupport-cpp + - ros2-distro-mutex 0.7.* humble_* + - vc >=14.3,<15 + - vc14_runtime >=14.44.35208 + - ucrt >=10.0.20348.0 + - vc >=14.3,<15 + - vc14_runtime >=14.44.35208 + - ucrt >=10.0.20348.0 + - numpy >=1.26.4,<2.0a0 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + - python_abi 3.11.* *_cp311 + license: BSD-3-Clause + size: 96874 + timestamp: 1753331329373 +- conda: https://prefix.dev/robostack-staging/linux-64/ros-humble-rclpy-3.3.16-np126py311hbc2a38a_13.conda + sha256: 577b4aaf553afee7a35d1802bb6bdbd75604175afcb167fbc5893842e597f0f2 + md5: 71e12d143133342cfb60921cdf1a7d4e + depends: + - python + - ros-humble-ament-index-python + - ros-humble-builtin-interfaces + - ros-humble-rcl + - ros-humble-rcl-action + - ros-humble-rcl-interfaces + - ros-humble-rcl-lifecycle + - ros-humble-rcl-logging-interface + - ros-humble-rcl-yaml-param-parser + - ros-humble-rmw + - ros-humble-rmw-implementation + - ros-humble-ros-workspace + - ros-humble-rosgraph-msgs + - ros-humble-rosidl-runtime-c + - ros-humble-rpyutils + - ros-humble-unique-identifier-msgs + - ros2-distro-mutex 0.7.* humble_* + - typing_extensions + - __glibc >=2.17,<3.0.a0 + - libgcc >=13 + - libstdcxx >=13 + - libgcc >=13 + - python_abi 3.11.* *_cp311 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + - numpy >=1.26.4,<2.0a0 + license: BSD-3-Clause + size: 590462 + timestamp: 1753312960811 +- conda: https://prefix.dev/robostack-staging/linux-aarch64/ros-humble-rclpy-3.3.16-np126py311hbdd918e_13.conda + sha256: db430ca0afb54b40b8784fb33b109483676be44ba145afc04dafc5c40894a643 + md5: 43bfd50700be8ba8248b315da5029496 + depends: + - python + - ros-humble-ament-index-python + - ros-humble-builtin-interfaces + - ros-humble-rcl + - ros-humble-rcl-action + - ros-humble-rcl-interfaces + - ros-humble-rcl-lifecycle + - ros-humble-rcl-logging-interface + - ros-humble-rcl-yaml-param-parser + - ros-humble-rmw + - ros-humble-rmw-implementation + - ros-humble-ros-workspace + - ros-humble-rosgraph-msgs + - ros-humble-rosidl-runtime-c + - ros-humble-rpyutils + - ros-humble-unique-identifier-msgs + - ros2-distro-mutex 0.7.* humble_* + - typing_extensions + - libstdcxx >=13 + - libgcc >=13 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + - python_abi 3.11.* *_cp311 + - numpy >=1.26.4,<2.0a0 + license: BSD-3-Clause + size: 555019 + timestamp: 1753313222243 +- conda: https://prefix.dev/robostack-staging/osx-arm64/ros-humble-rclpy-3.3.16-np126py311h2a51a2c_13.conda + sha256: 6417a61da3c2ee0ead374794805715a8cb842862a441be1b110e6c7ccbf629a4 + md5: da16d9744c22ce688332c24cab0f855f + depends: + - python + - ros-humble-ament-index-python + - ros-humble-builtin-interfaces + - ros-humble-rcl + - ros-humble-rcl-action + - ros-humble-rcl-interfaces + - ros-humble-rcl-lifecycle + - ros-humble-rcl-logging-interface + - ros-humble-rcl-yaml-param-parser + - ros-humble-rmw + - ros-humble-rmw-implementation + - ros-humble-ros-workspace + - ros-humble-rosgraph-msgs + - ros-humble-rosidl-runtime-c + - ros-humble-rpyutils + - ros-humble-unique-identifier-msgs + - ros2-distro-mutex 0.7.* humble_* + - typing_extensions + - __osx >=11.0 + - libcxx >=18 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + - numpy >=1.26.4,<2.0a0 + - python_abi 3.11.* *_cp311 + license: BSD-3-Clause + size: 597166 + timestamp: 1753312784236 +- conda: https://prefix.dev/robostack-staging/win-64/ros-humble-rclpy-3.3.16-np126py311hd5de103_13.conda + sha256: 944cf214aed474cc2e61558f15661678785b3d072c26591802954026e41f9882 + md5: a91670aa7988d383483bfae2059118f2 + depends: + - python + - ros-humble-ament-index-python + - ros-humble-builtin-interfaces + - ros-humble-rcl + - ros-humble-rcl-action + - ros-humble-rcl-interfaces + - ros-humble-rcl-lifecycle + - ros-humble-rcl-logging-interface + - ros-humble-rcl-yaml-param-parser + - ros-humble-rmw + - ros-humble-rmw-implementation + - ros-humble-ros-workspace + - ros-humble-rosgraph-msgs + - ros-humble-rosidl-runtime-c + - ros-humble-rpyutils + - ros-humble-unique-identifier-msgs + - ros2-distro-mutex 0.7.* humble_* + - typing_extensions + - vc >=14.3,<15 + - vc14_runtime >=14.44.35208 + - ucrt >=10.0.20348.0 + - vc >=14.3,<15 + - vc14_runtime >=14.44.35208 + - ucrt >=10.0.20348.0 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + - numpy >=1.26.4,<2.0a0 + - python_abi 3.11.* *_cp311 + license: BSD-3-Clause + size: 457552 + timestamp: 1753330658786 +- conda: https://prefix.dev/robostack-staging/linux-64/ros-humble-rcpputils-2.4.5-np126py311hbc2a38a_13.conda + sha256: 8bf4164e40f60d66f50ea03bb0a8f945bcc6f11b83f5d1afcac44c55e8c9a29f + md5: 86083e1abd190d37b0e90d62433175d3 + depends: + - python + - ros-humble-rcutils + - ros-humble-ros-workspace + - ros2-distro-mutex 0.7.* humble_* + - libstdcxx >=13 + - libgcc >=13 + - __glibc >=2.17,<3.0.a0 + - libgcc >=13 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + - python_abi 3.11.* *_cp311 + - numpy >=1.26.4,<2.0a0 + license: BSD-3-Clause + size: 79144 + timestamp: 1753310027795 +- conda: https://prefix.dev/robostack-staging/linux-aarch64/ros-humble-rcpputils-2.4.5-np126py311hbdd918e_13.conda + sha256: 41f58bf2a62411a66e4861661571dc266d24becdb987dd97c739354179e641c6 + md5: dec38e17cc7685f4ea62af4eefd73165 + depends: + - python + - ros-humble-rcutils + - ros-humble-ros-workspace + - ros2-distro-mutex 0.7.* humble_* + - libgcc >=13 + - libstdcxx >=13 + - libgcc >=13 + - python_abi 3.11.* *_cp311 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + - numpy >=1.26.4,<2.0a0 + license: BSD-3-Clause + size: 79734 + timestamp: 1753309812372 +- conda: https://prefix.dev/robostack-staging/osx-arm64/ros-humble-rcpputils-2.4.5-np126py311h2a51a2c_13.conda + sha256: 371f4adce73df132dc4a5e8970b08f14932e5c2b21a32f888d638ad1cf8293c1 + md5: be031b7c4624af4db612902d4eb5a3c9 + depends: + - python + - ros-humble-rcutils + - ros-humble-ros-workspace + - ros2-distro-mutex 0.7.* humble_* + - libcxx >=18 + - __osx >=11.0 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + - python_abi 3.11.* *_cp311 + - numpy >=1.26.4,<2.0a0 + license: BSD-3-Clause + size: 77506 + timestamp: 1753310556108 +- conda: https://prefix.dev/robostack-staging/win-64/ros-humble-rcpputils-2.4.5-np126py311hd5de103_13.conda + sha256: bd98f41b51fb8dfe2ce09b01bd76fa4e00d0476097d4289bdc858ed1cf79d09d + md5: 61a0d289071a13c4eabc43d20203044e + depends: + - python + - ros-humble-rcutils + - ros-humble-ros-workspace + - ros2-distro-mutex 0.7.* humble_* + - vc >=14.3,<15 + - vc14_runtime >=14.44.35208 + - ucrt >=10.0.20348.0 + - vc >=14.3,<15 + - vc14_runtime >=14.44.35208 + - ucrt >=10.0.20348.0 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + - python_abi 3.11.* *_cp311 + - numpy >=1.26.4,<2.0a0 + license: BSD-3-Clause + size: 85781 + timestamp: 1753319909035 +- conda: https://prefix.dev/robostack-staging/linux-64/ros-humble-rcutils-5.1.6-np126py311hbc2a38a_13.conda + sha256: f76782bbb98634da2df968711dc887c71077b01eadc4a356d9b7e7759c2d6746 + md5: 5e2ad7993f6500a99bc7400a22d5351b + depends: + - python + - ros-humble-ros-workspace + - ros2-distro-mutex 0.7.* humble_* + - libstdcxx >=13 + - libgcc >=13 + - __glibc >=2.17,<3.0.a0 + - libgcc >=13 + - python_abi 3.11.* *_cp311 + - numpy >=1.26.4,<2.0a0 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + license: BSD-3-Clause + size: 116997 + timestamp: 1753309923669 +- conda: https://prefix.dev/robostack-staging/linux-aarch64/ros-humble-rcutils-5.1.6-np126py311hbdd918e_13.conda + sha256: 2e09a8632056cfc151afe95ee90b19af1cdbc14285ae2d42aff735d9096063f1 + md5: 1d0f24f6b535a20ff569e9ca90bccb9c + depends: + - python + - ros-humble-ros-workspace + - ros2-distro-mutex 0.7.* humble_* + - libgcc >=13 + - libstdcxx >=13 + - libgcc >=13 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + - numpy >=1.26.4,<2.0a0 + - python_abi 3.11.* *_cp311 + license: BSD-3-Clause + size: 120302 + timestamp: 1753309706612 +- conda: https://prefix.dev/robostack-staging/osx-arm64/ros-humble-rcutils-5.1.6-np126py311h2a51a2c_13.conda + sha256: c43d0446191d0133e4df3d2d144d6ecba632217c04c0ef8b25f58ba78ead4516 + md5: 7f5f55167d346079355bf6870a3939cd + depends: + - python + - ros-humble-ros-workspace + - ros2-distro-mutex 0.7.* humble_* + - libcxx >=18 + - __osx >=11.0 + - python_abi 3.11.* *_cp311 + - numpy >=1.26.4,<2.0a0 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + license: BSD-3-Clause + size: 111037 + timestamp: 1753310419689 +- conda: https://prefix.dev/robostack-staging/win-64/ros-humble-rcutils-5.1.6-np126py311hd5de103_13.conda + sha256: 4ae7c6c7b95615fce6ba3e38bba25ce50d53d06878730f7a796bdc45ea14da27 + md5: 7f7bdac9548f9a1388b7f9d7d40d5509 + depends: + - python + - ros-humble-ros-workspace + - ros2-distro-mutex 0.7.* humble_* + - vc >=14.3,<15 + - vc14_runtime >=14.44.35208 + - ucrt >=10.0.20348.0 + - vc >=14.3,<15 + - vc14_runtime >=14.44.35208 + - ucrt >=10.0.20348.0 + - numpy >=1.26.4,<2.0a0 + - python_abi 3.11.* *_cp311 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + license: BSD-3-Clause + size: 122738 + timestamp: 1753319362169 +- conda: https://prefix.dev/robostack-staging/linux-64/ros-humble-resource-retriever-3.1.3-np126py311hbc2a38a_13.conda + sha256: 1fe8a82e34404d287e8f7dd4485970201f5ed0823c368a035b90df3815799b63 + md5: 704afea002142605922162c06a9d0c3d + depends: + - python + - ros-humble-ament-index-cpp + - ros-humble-ament-index-python + - ros-humble-libcurl-vendor + - ros-humble-ros-workspace + - ros2-distro-mutex 0.7.* humble_* + - libgcc >=13 + - __glibc >=2.17,<3.0.a0 + - libstdcxx >=13 + - libgcc >=13 + - python_abi 3.11.* *_cp311 + - numpy >=1.26.4,<2.0a0 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + license: BSD-3-Clause + size: 44364 + timestamp: 1753309853232 +- conda: https://prefix.dev/robostack-staging/linux-aarch64/ros-humble-resource-retriever-3.1.3-np126py311hbdd918e_13.conda + sha256: 3f8eb8a260260f546a03363bd76dbed41bc8279dd6d2fde3c7affa89a20e8adc + md5: 51254d1135ac4e998c4527ad394f629c + depends: + - python + - ros-humble-ament-index-cpp + - ros-humble-ament-index-python + - ros-humble-libcurl-vendor + - ros-humble-ros-workspace + - ros2-distro-mutex 0.7.* humble_* + - libgcc >=13 + - libstdcxx >=13 + - libgcc >=13 + - numpy >=1.26.4,<2.0a0 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + - python_abi 3.11.* *_cp311 + license: BSD-3-Clause + size: 45254 + timestamp: 1753309625369 +- conda: https://prefix.dev/robostack-staging/osx-arm64/ros-humble-resource-retriever-3.1.3-np126py311h2a51a2c_13.conda + sha256: 68a0150b783e17bb421aae9e7c755501dd75aa4daa6baa639b6e9cfc0a55c809 + md5: cc317da1acc8445a165aca1b224c28f6 + depends: + - python + - ros-humble-ament-index-cpp + - ros-humble-ament-index-python + - ros-humble-libcurl-vendor + - ros-humble-ros-workspace + - ros2-distro-mutex 0.7.* humble_* + - __osx >=11.0 + - libcxx >=18 + - python_abi 3.11.* *_cp311 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + - numpy >=1.26.4,<2.0a0 + license: BSD-3-Clause + size: 42302 + timestamp: 1753310335920 +- conda: https://prefix.dev/robostack-staging/win-64/ros-humble-resource-retriever-3.1.3-np126py311hd5de103_13.conda + sha256: 21fbe05b2b77efe6cf2ea73b70477d21409bab218852334173e8459e8ad7cf6c + md5: 31c3dcada28548e0ae085d51032094bd + depends: + - python + - ros-humble-ament-index-cpp + - ros-humble-ament-index-python + - ros-humble-libcurl-vendor + - ros-humble-ros-workspace + - ros2-distro-mutex 0.7.* humble_* + - vc >=14.3,<15 + - vc14_runtime >=14.44.35208 + - ucrt >=10.0.20348.0 + - vc >=14.3,<15 + - vc14_runtime >=14.44.35208 + - ucrt >=10.0.20348.0 + - numpy >=1.26.4,<2.0a0 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + - python_abi 3.11.* *_cp311 + license: BSD-3-Clause + size: 45233 + timestamp: 1753319001567 +- conda: https://prefix.dev/robostack-staging/linux-64/ros-humble-rmw-6.1.2-np126py311hbc2a38a_13.conda + sha256: 4a520f33478d4a02dd5e5806a6d43d217db391bde5bdeab9083a7e1a3d22980c + md5: 3af9d608b90b0c525075a8d47e02ae85 + depends: + - python + - ros-humble-rcutils + - ros-humble-ros-workspace + - ros-humble-rosidl-runtime-c + - ros2-distro-mutex 0.7.* humble_* + - __glibc >=2.17,<3.0.a0 + - libgcc >=13 + - libstdcxx >=13 + - libgcc >=13 + - python_abi 3.11.* *_cp311 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + - numpy >=1.26.4,<2.0a0 + license: BSD-3-Clause + size: 91341 + timestamp: 1753310099315 +- conda: https://prefix.dev/robostack-staging/linux-aarch64/ros-humble-rmw-6.1.2-np126py311hbdd918e_13.conda + sha256: ac6bce6d01a40b002d412678e737ca07a59fce509ae8fd50430eeda6800aaec0 + md5: 6fb7b0ce5b85339921d555efe20a7842 + depends: + - python + - ros-humble-rcutils + - ros-humble-ros-workspace + - ros-humble-rosidl-runtime-c + - ros2-distro-mutex 0.7.* humble_* + - libgcc >=13 + - libstdcxx >=13 + - libgcc >=13 + - numpy >=1.26.4,<2.0a0 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + - python_abi 3.11.* *_cp311 + license: BSD-3-Clause + size: 92490 + timestamp: 1753311789750 +- conda: https://prefix.dev/robostack-staging/osx-arm64/ros-humble-rmw-6.1.2-np126py311h2a51a2c_13.conda + sha256: c883d1a6958fd50b3af27ed9be31ebdb34dc0a510040b4a392b58bc2d90e5657 + md5: 1fc5641dd31531ee9636fb3a53f5aa5e + depends: + - python + - ros-humble-rcutils + - ros-humble-ros-workspace + - ros-humble-rosidl-runtime-c + - ros2-distro-mutex 0.7.* humble_* + - __osx >=11.0 + - libcxx >=18 + - python_abi 3.11.* *_cp311 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + - numpy >=1.26.4,<2.0a0 + license: BSD-3-Clause + size: 88495 + timestamp: 1753310640397 +- conda: https://prefix.dev/robostack-staging/win-64/ros-humble-rmw-6.1.2-np126py311hd5de103_13.conda + sha256: ba14411a402b68e9bacc4307967e49a02b32deea36474b1cd6375694bb66b1cd + md5: 388627b5da544a429b781c7df595cfb8 + depends: + - python + - ros-humble-rcutils + - ros-humble-ros-workspace + - ros-humble-rosidl-runtime-c + - ros2-distro-mutex 0.7.* humble_* + - vc >=14.3,<15 + - vc14_runtime >=14.44.35208 + - ucrt >=10.0.20348.0 + - vc >=14.3,<15 + - vc14_runtime >=14.44.35208 + - ucrt >=10.0.20348.0 + - numpy >=1.26.4,<2.0a0 + - python_abi 3.11.* *_cp311 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + license: BSD-3-Clause + size: 93014 + timestamp: 1753320643957 +- conda: https://prefix.dev/robostack-staging/linux-64/ros-humble-rmw-connextdds-0.11.3-np126py311hbc2a38a_13.conda + sha256: 7f24c31537ba467e69443c347e0a540935671170f5c7bd1e309c78cf7b4afed6 + md5: 236bed93c962e3d664f18f718e5c212b + depends: + - python + - ros-humble-ament-cmake + - ros-humble-rmw-connextdds-common + - ros-humble-ros-workspace + - ros2-distro-mutex 0.7.* humble_* + - libgcc >=13 + - __glibc >=2.17,<3.0.a0 + - libstdcxx >=13 + - libgcc >=13 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + - numpy >=1.26.4,<2.0a0 + - python_abi 3.11.* *_cp311 + license: BSD-3-Clause + size: 30341 + timestamp: 1753312074339 +- conda: https://prefix.dev/robostack-staging/linux-aarch64/ros-humble-rmw-connextdds-0.11.3-np126py311hbdd918e_13.conda + sha256: 34d13f44c30cebabbc0eafe8199848d2c32bbb8a6078522c12a51257437f534b + md5: b740e33694203c247ffab18700cfce47 + depends: + - python + - ros-humble-ament-cmake + - ros-humble-rmw-connextdds-common + - ros-humble-ros-workspace + - ros2-distro-mutex 0.7.* humble_* + - libstdcxx >=13 + - libgcc >=13 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + - python_abi 3.11.* *_cp311 + - numpy >=1.26.4,<2.0a0 + license: BSD-3-Clause + size: 30169 + timestamp: 1753312524916 +- conda: https://prefix.dev/robostack-staging/osx-arm64/ros-humble-rmw-connextdds-0.11.3-np126py311h2a51a2c_13.conda + sha256: c8c0ec39eb12630b7d2a9d8e8d9dbead7135368c237abeb5e3a237336654da26 + md5: 87d68774d71e13ca55acb779ec716f96 + depends: + - python + - ros-humble-ament-cmake + - ros-humble-rmw-connextdds-common + - ros-humble-ros-workspace + - ros2-distro-mutex 0.7.* humble_* + - libcxx >=18 + - __osx >=11.0 + - numpy >=1.26.4,<2.0a0 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + - python_abi 3.11.* *_cp311 + license: BSD-3-Clause + size: 30426 + timestamp: 1753311441526 +- conda: https://prefix.dev/robostack-staging/win-64/ros-humble-rmw-connextdds-0.11.3-np126py311hd5de103_13.conda + sha256: 56cb159f2ec563c30fc75bfedf12a2a998b6a2fc1882888a540e85270eef54db + md5: 760150258fa6391cf20caa50df529d83 + depends: + - python + - ros-humble-ament-cmake + - ros-humble-rmw-connextdds-common + - ros-humble-ros-workspace + - ros2-distro-mutex 0.7.* humble_* + - vc >=14.3,<15 + - vc14_runtime >=14.44.35208 + - ucrt >=10.0.20348.0 + - vc >=14.3,<15 + - vc14_runtime >=14.44.35208 + - ucrt >=10.0.20348.0 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + - python_abi 3.11.* *_cp311 + - numpy >=1.26.4,<2.0a0 + license: BSD-3-Clause + size: 27018 + timestamp: 1753325094575 +- conda: https://prefix.dev/robostack-staging/linux-64/ros-humble-rmw-connextdds-common-0.11.3-np126py311hbc2a38a_13.conda + sha256: 37fb8ace38e57c03ea77494d7bf2487ea5dd73ebea180a837f38b02fca93ebee + md5: fb69ab40bd0d1350798b878a78aa643d + depends: + - python + - ros-humble-ament-cmake + - ros-humble-fastcdr + - ros-humble-rcpputils + - ros-humble-rcutils + - ros-humble-rmw + - ros-humble-rmw-dds-common + - ros-humble-ros-workspace + - ros-humble-rosidl-runtime-c + - ros-humble-rosidl-runtime-cpp + - ros-humble-rosidl-typesupport-fastrtps-c + - ros-humble-rosidl-typesupport-fastrtps-cpp + - ros-humble-rosidl-typesupport-introspection-c + - ros-humble-rosidl-typesupport-introspection-cpp + - ros-humble-rti-connext-dds-cmake-module + - ros2-distro-mutex 0.7.* humble_* + - libgcc >=13 + - __glibc >=2.17,<3.0.a0 + - libstdcxx >=13 + - libgcc >=13 + - python_abi 3.11.* *_cp311 + - numpy >=1.26.4,<2.0a0 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + license: BSD-3-Clause + size: 52039 + timestamp: 1753311925472 +- conda: https://prefix.dev/robostack-staging/linux-aarch64/ros-humble-rmw-connextdds-common-0.11.3-np126py311hbdd918e_13.conda + sha256: 04f0c2267ed5e06b27f75f90219f5dbc64f4ad60fcf6853d2cb7389f877f8928 + md5: 39b100682e43c6ba509c3d4d4fa25aab + depends: + - python + - ros-humble-ament-cmake + - ros-humble-fastcdr + - ros-humble-rcpputils + - ros-humble-rcutils + - ros-humble-rmw + - ros-humble-rmw-dds-common + - ros-humble-ros-workspace + - ros-humble-rosidl-runtime-c + - ros-humble-rosidl-runtime-cpp + - ros-humble-rosidl-typesupport-fastrtps-c + - ros-humble-rosidl-typesupport-fastrtps-cpp + - ros-humble-rosidl-typesupport-introspection-c + - ros-humble-rosidl-typesupport-introspection-cpp + - ros-humble-rti-connext-dds-cmake-module + - ros2-distro-mutex 0.7.* humble_* + - libgcc >=13 + - libstdcxx >=13 + - libgcc >=13 + - python_abi 3.11.* *_cp311 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + - numpy >=1.26.4,<2.0a0 + license: BSD-3-Clause + size: 51847 + timestamp: 1753312401561 +- conda: https://prefix.dev/robostack-staging/osx-arm64/ros-humble-rmw-connextdds-common-0.11.3-np126py311h2a51a2c_13.conda + sha256: 38555f738a312f35ee989b2a8532537acd7cf4c65c6a5e18095ea8655c8c76da + md5: f2b06f1d73be218a8035d4d94c287546 + depends: + - python + - ros-humble-ament-cmake + - ros-humble-fastcdr + - ros-humble-rcpputils + - ros-humble-rcutils + - ros-humble-rmw + - ros-humble-rmw-dds-common + - ros-humble-ros-workspace + - ros-humble-rosidl-runtime-c + - ros-humble-rosidl-runtime-cpp + - ros-humble-rosidl-typesupport-fastrtps-c + - ros-humble-rosidl-typesupport-fastrtps-cpp + - ros-humble-rosidl-typesupport-introspection-c + - ros-humble-rosidl-typesupport-introspection-cpp + - ros-humble-rti-connext-dds-cmake-module + - ros2-distro-mutex 0.7.* humble_* + - __osx >=11.0 + - libcxx >=18 + - numpy >=1.26.4,<2.0a0 + - python_abi 3.11.* *_cp311 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + license: BSD-3-Clause + size: 52072 + timestamp: 1753311299360 +- conda: https://prefix.dev/robostack-staging/win-64/ros-humble-rmw-connextdds-common-0.11.3-np126py311hd5de103_13.conda + sha256: ad2cecd09775200e3946f34b3ba32b16885eceb04ab7c877d650a1778ed81359 + md5: 7c91da993bfb6b48ed768123e0bd4d20 + depends: + - python + - ros-humble-ament-cmake + - ros-humble-fastcdr + - ros-humble-rcpputils + - ros-humble-rcutils + - ros-humble-rmw + - ros-humble-rmw-dds-common + - ros-humble-ros-workspace + - ros-humble-rosidl-runtime-c + - ros-humble-rosidl-runtime-cpp + - ros-humble-rosidl-typesupport-fastrtps-c + - ros-humble-rosidl-typesupport-fastrtps-cpp + - ros-humble-rosidl-typesupport-introspection-c + - ros-humble-rosidl-typesupport-introspection-cpp + - ros-humble-rti-connext-dds-cmake-module + - ros2-distro-mutex 0.7.* humble_* + - vc >=14.3,<15 + - vc14_runtime >=14.44.35208 + - ucrt >=10.0.20348.0 + - vc >=14.3,<15 + - vc14_runtime >=14.44.35208 + - ucrt >=10.0.20348.0 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + - numpy >=1.26.4,<2.0a0 + - python_abi 3.11.* *_cp311 + license: BSD-3-Clause + size: 48568 + timestamp: 1753323994774 +- conda: https://prefix.dev/robostack-staging/linux-64/ros-humble-rmw-cyclonedds-cpp-1.3.4-np126py311hbc2a38a_13.conda + sha256: db072de767df4a5eab3909841adc8269b5ae62d03d5d33304b5b89cdfd563129 + md5: 0c7ce8203707a3ae2c048383c3149f91 + depends: + - python + - ros-humble-cyclonedds + - ros-humble-iceoryx-binding-c + - ros-humble-rcpputils + - ros-humble-rcutils + - ros-humble-rmw + - ros-humble-rmw-dds-common + - ros-humble-ros-workspace + - ros-humble-rosidl-runtime-c + - ros-humble-rosidl-typesupport-introspection-c + - ros-humble-rosidl-typesupport-introspection-cpp + - ros-humble-tracetools + - ros2-distro-mutex 0.7.* humble_* + - libgcc >=13 + - __glibc >=2.17,<3.0.a0 + - libstdcxx >=13 + - libgcc >=13 + - numpy >=1.26.4,<2.0a0 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + - python_abi 3.11.* *_cp311 + license: BSD-3-Clause + size: 253024 + timestamp: 1753311931661 +- conda: https://prefix.dev/robostack-staging/linux-aarch64/ros-humble-rmw-cyclonedds-cpp-1.3.4-np126py311hbdd918e_13.conda + sha256: ace6df086ccd323a2cba0c3673d9d92648e65994d7c1c208f6c3216ee86f1519 + md5: 64e965f2607761652cce7342ea13507c + depends: + - python + - ros-humble-cyclonedds + - ros-humble-iceoryx-binding-c + - ros-humble-rcpputils + - ros-humble-rcutils + - ros-humble-rmw + - ros-humble-rmw-dds-common + - ros-humble-ros-workspace + - ros-humble-rosidl-runtime-c + - ros-humble-rosidl-typesupport-introspection-c + - ros-humble-rosidl-typesupport-introspection-cpp + - ros-humble-tracetools + - ros2-distro-mutex 0.7.* humble_* + - libgcc >=13 + - libstdcxx >=13 + - libgcc >=13 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + - numpy >=1.26.4,<2.0a0 + - python_abi 3.11.* *_cp311 + license: BSD-3-Clause + size: 254235 + timestamp: 1753312407084 +- conda: https://prefix.dev/robostack-staging/osx-arm64/ros-humble-rmw-cyclonedds-cpp-1.3.4-np126py311h2a51a2c_13.conda + sha256: a695b3c4f58f99b0d4844bc37622288835a502183d86c8c9b155cde76499b27c + md5: 3b3a94c72e1a52adcc73ea265039669d + depends: + - python + - ros-humble-cyclonedds + - ros-humble-iceoryx-binding-c + - ros-humble-rcpputils + - ros-humble-rcutils + - ros-humble-rmw + - ros-humble-rmw-dds-common + - ros-humble-ros-workspace + - ros-humble-rosidl-runtime-c + - ros-humble-rosidl-typesupport-introspection-c + - ros-humble-rosidl-typesupport-introspection-cpp + - ros-humble-tracetools + - ros2-distro-mutex 0.7.* humble_* + - __osx >=11.0 + - libcxx >=18 + - python_abi 3.11.* *_cp311 + - numpy >=1.26.4,<2.0a0 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + license: BSD-3-Clause + size: 183074 + timestamp: 1753311309113 +- conda: https://prefix.dev/robostack-staging/win-64/ros-humble-rmw-cyclonedds-cpp-1.3.4-np126py311hd5de103_13.conda + sha256: 2c7804070a7dd9b1439a9afe778867c4d538e81544214b56e1bd70a47f1fd9f8 + md5: 44f8cf97a4c17122299ead107b66b534 + depends: + - python + - ros-humble-cyclonedds + - ros-humble-iceoryx-binding-c + - ros-humble-rcpputils + - ros-humble-rcutils + - ros-humble-rmw + - ros-humble-rmw-dds-common + - ros-humble-ros-workspace + - ros-humble-rosidl-runtime-c + - ros-humble-rosidl-typesupport-introspection-c + - ros-humble-rosidl-typesupport-introspection-cpp + - ros-humble-tracetools + - ros2-distro-mutex 0.7.* humble_* + - vc >=14.3,<15 + - vc14_runtime >=14.44.35208 + - ucrt >=10.0.20348.0 + - vc >=14.3,<15 + - vc14_runtime >=14.44.35208 + - ucrt >=10.0.20348.0 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + - python_abi 3.11.* *_cp311 + - numpy >=1.26.4,<2.0a0 + license: BSD-3-Clause + size: 175854 + timestamp: 1753324075661 +- conda: https://prefix.dev/robostack-staging/linux-64/ros-humble-rmw-dds-common-1.6.0-np126py311hbc2a38a_13.conda + sha256: 19911a549f96b21628ac0e0b623db8324efbb4b89457e96b19e67f0f699eb59c + md5: 90d4d80c925d32e3a6280b10e247ba2a + depends: + - python + - ros-humble-rcpputils + - ros-humble-rcutils + - ros-humble-rmw + - ros-humble-ros-workspace + - ros-humble-rosidl-default-runtime + - ros-humble-rosidl-runtime-cpp + - ros2-distro-mutex 0.7.* humble_* + - libstdcxx >=13 + - libgcc >=13 + - __glibc >=2.17,<3.0.a0 + - python_abi 3.11.* *_cp311 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + - numpy >=1.26.4,<2.0a0 + license: BSD-3-Clause + size: 148791 + timestamp: 1753310585467 +- conda: https://prefix.dev/robostack-staging/linux-aarch64/ros-humble-rmw-dds-common-1.6.0-np126py311hbdd918e_13.conda + sha256: fc9e9bfddaec11aaa812facc06ad18955409fbe682bd877ad28cb7a5bedb6eb8 + md5: b8ed0ee72554fdefe5f26e6072fd5bff + depends: + - python + - ros-humble-rcpputils + - ros-humble-rcutils + - ros-humble-rmw + - ros-humble-ros-workspace + - ros-humble-rosidl-default-runtime + - ros-humble-rosidl-runtime-cpp + - ros2-distro-mutex 0.7.* humble_* + - libgcc >=13 + - libstdcxx >=13 + - libgcc >=13 + - python_abi 3.11.* *_cp311 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + - numpy >=1.26.4,<2.0a0 + license: BSD-3-Clause + size: 152464 + timestamp: 1753312294482 +- conda: https://prefix.dev/robostack-staging/osx-arm64/ros-humble-rmw-dds-common-1.6.0-np126py311h2a51a2c_13.conda + sha256: 4dab87597791768a2e9ce8c303280edeea365b7e8b25d0f15c0f62a8d63d4670 + md5: 2e250e11e360d966e13260f3a941c7c5 + depends: + - python + - ros-humble-rcpputils + - ros-humble-rcutils + - ros-humble-rmw + - ros-humble-ros-workspace + - ros-humble-rosidl-default-runtime + - ros-humble-rosidl-runtime-cpp + - ros2-distro-mutex 0.7.* humble_* + - libcxx >=18 + - __osx >=11.0 + - numpy >=1.26.4,<2.0a0 + - python_abi 3.11.* *_cp311 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + license: BSD-3-Clause + size: 135957 + timestamp: 1753311172231 +- conda: https://prefix.dev/robostack-staging/win-64/ros-humble-rmw-dds-common-1.6.0-np126py311hd5de103_13.conda + sha256: 5c211de5b958de7bde5613fa189256341b8cd8754d9b9f686b1bae64f36dd026 + md5: e66fd584f3b8958e118a3f170b971c73 + depends: + - python + - ros-humble-rcpputils + - ros-humble-rcutils + - ros-humble-rmw + - ros-humble-ros-workspace + - ros-humble-rosidl-default-runtime + - ros-humble-rosidl-runtime-cpp + - ros2-distro-mutex 0.7.* humble_* + - vc >=14.3,<15 + - vc14_runtime >=14.44.35208 + - ucrt >=10.0.20348.0 + - vc >=14.3,<15 + - vc14_runtime >=14.44.35208 + - ucrt >=10.0.20348.0 + - numpy >=1.26.4,<2.0a0 + - python_abi 3.11.* *_cp311 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + license: BSD-3-Clause + size: 150518 + timestamp: 1753323163199 +- conda: https://prefix.dev/robostack-staging/linux-64/ros-humble-rmw-fastrtps-cpp-6.2.7-np126py311hbc2a38a_13.conda + sha256: 1b6dc05eba91783fecdbbcdb685a849579cad52542d0ff05de59aed88e105828 + md5: fb946901653a93735a6cbc0265240d92 + depends: + - python + - ros-humble-ament-cmake + - ros-humble-fastcdr + - ros-humble-fastrtps + - ros-humble-fastrtps-cmake-module + - ros-humble-rcpputils + - ros-humble-rcutils + - ros-humble-rmw + - ros-humble-rmw-dds-common + - ros-humble-rmw-fastrtps-shared-cpp + - ros-humble-ros-workspace + - ros-humble-rosidl-cmake + - ros-humble-rosidl-runtime-c + - ros-humble-rosidl-runtime-cpp + - ros-humble-rosidl-typesupport-fastrtps-c + - ros-humble-rosidl-typesupport-fastrtps-cpp + - ros-humble-tracetools + - ros2-distro-mutex 0.7.* humble_* + - __glibc >=2.17,<3.0.a0 + - libstdcxx >=13 + - libgcc >=13 + - numpy >=1.26.4,<2.0a0 + - python_abi 3.11.* *_cp311 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + license: BSD-3-Clause + size: 141768 + timestamp: 1753312217506 +- conda: https://prefix.dev/robostack-staging/linux-aarch64/ros-humble-rmw-fastrtps-cpp-6.2.7-np126py311hbdd918e_13.conda + sha256: 7941758bc7da7f49152d182bf18eb6f2973fa4559dc7fa6d6d7bc97afb498efa + md5: 4b3f404ecb89145bf299a290b5779d20 + depends: + - python + - ros-humble-ament-cmake + - ros-humble-fastcdr + - ros-humble-fastrtps + - ros-humble-fastrtps-cmake-module + - ros-humble-rcpputils + - ros-humble-rcutils + - ros-humble-rmw + - ros-humble-rmw-dds-common + - ros-humble-rmw-fastrtps-shared-cpp + - ros-humble-ros-workspace + - ros-humble-rosidl-cmake + - ros-humble-rosidl-runtime-c + - ros-humble-rosidl-runtime-cpp + - ros-humble-rosidl-typesupport-fastrtps-c + - ros-humble-rosidl-typesupport-fastrtps-cpp + - ros-humble-tracetools + - ros2-distro-mutex 0.7.* humble_* + - libstdcxx >=13 + - libgcc >=13 + - python_abi 3.11.* *_cp311 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + - numpy >=1.26.4,<2.0a0 + license: BSD-3-Clause + size: 140022 + timestamp: 1753312639708 +- conda: https://prefix.dev/robostack-staging/osx-arm64/ros-humble-rmw-fastrtps-cpp-6.2.7-np126py311h2a51a2c_13.conda + sha256: b7f675dc82e874736c292fc0f0dac686be6dcf2ff000b192b8e33a3e342446bd + md5: 7da9f978e000b72a5d37038cdeaef3c4 + depends: + - python + - ros-humble-ament-cmake + - ros-humble-fastcdr + - ros-humble-fastrtps + - ros-humble-fastrtps-cmake-module + - ros-humble-rcpputils + - ros-humble-rcutils + - ros-humble-rmw + - ros-humble-rmw-dds-common + - ros-humble-rmw-fastrtps-shared-cpp + - ros-humble-ros-workspace + - ros-humble-rosidl-cmake + - ros-humble-rosidl-runtime-c + - ros-humble-rosidl-runtime-cpp + - ros-humble-rosidl-typesupport-fastrtps-c + - ros-humble-rosidl-typesupport-fastrtps-cpp + - ros-humble-tracetools + - ros2-distro-mutex 0.7.* humble_* + - __osx >=11.0 + - libcxx >=18 + - python_abi 3.11.* *_cp311 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + - numpy >=1.26.4,<2.0a0 + license: BSD-3-Clause + size: 113525 + timestamp: 1753311751836 +- conda: https://prefix.dev/robostack-staging/win-64/ros-humble-rmw-fastrtps-cpp-6.2.7-np126py311hd5de103_13.conda + sha256: 299d30573b56aab42153efc1bd617d9096e3d62734d711bb10ff3c6a7e3872e4 + md5: 96d188a7f78b34f47a4218bdf216da32 + depends: + - python + - ros-humble-ament-cmake + - ros-humble-fastcdr + - ros-humble-fastrtps + - ros-humble-fastrtps-cmake-module + - ros-humble-rcpputils + - ros-humble-rcutils + - ros-humble-rmw + - ros-humble-rmw-dds-common + - ros-humble-rmw-fastrtps-shared-cpp + - ros-humble-ros-workspace + - ros-humble-rosidl-cmake + - ros-humble-rosidl-runtime-c + - ros-humble-rosidl-runtime-cpp + - ros-humble-rosidl-typesupport-fastrtps-c + - ros-humble-rosidl-typesupport-fastrtps-cpp + - ros-humble-tracetools + - ros2-distro-mutex 0.7.* humble_* + - vc >=14.3,<15 + - vc14_runtime >=14.44.35208 + - ucrt >=10.0.20348.0 + - vc >=14.3,<15 + - vc14_runtime >=14.44.35208 + - ucrt >=10.0.20348.0 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + - numpy >=1.26.4,<2.0a0 + - python_abi 3.11.* *_cp311 + license: BSD-3-Clause + size: 140432 + timestamp: 1753326397239 +- conda: https://prefix.dev/robostack-staging/linux-64/ros-humble-rmw-fastrtps-dynamic-cpp-6.2.7-np126py311hbc2a38a_13.conda + sha256: efde44592faf7de42a0661fc2f53e03c3b2693ed4d198c8e86dce3454375504d + md5: 72134d164121c146bf035b4617845384 + depends: + - python + - ros-humble-ament-cmake + - ros-humble-fastcdr + - ros-humble-fastrtps + - ros-humble-fastrtps-cmake-module + - ros-humble-rcpputils + - ros-humble-rcutils + - ros-humble-rmw + - ros-humble-rmw-dds-common + - ros-humble-rmw-fastrtps-shared-cpp + - ros-humble-ros-workspace + - ros-humble-rosidl-runtime-c + - ros-humble-rosidl-typesupport-fastrtps-c + - ros-humble-rosidl-typesupport-fastrtps-cpp + - ros-humble-rosidl-typesupport-introspection-c + - ros-humble-rosidl-typesupport-introspection-cpp + - ros2-distro-mutex 0.7.* humble_* + - libgcc >=13 + - libstdcxx >=13 + - libgcc >=13 + - __glibc >=2.17,<3.0.a0 + - python_abi 3.11.* *_cp311 + - numpy >=1.26.4,<2.0a0 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + license: BSD-3-Clause + size: 173248 + timestamp: 1753312185917 +- conda: https://prefix.dev/robostack-staging/linux-aarch64/ros-humble-rmw-fastrtps-dynamic-cpp-6.2.7-np126py311hbdd918e_13.conda + sha256: 0f2f176ac8ef71e953d6cf3301460abcd1b5bf4fcf1971b97901f57e7cb15e89 + md5: dac2888dad24c08c9e54867138a7aae6 + depends: + - python + - ros-humble-ament-cmake + - ros-humble-fastcdr + - ros-humble-fastrtps + - ros-humble-fastrtps-cmake-module + - ros-humble-rcpputils + - ros-humble-rcutils + - ros-humble-rmw + - ros-humble-rmw-dds-common + - ros-humble-rmw-fastrtps-shared-cpp + - ros-humble-ros-workspace + - ros-humble-rosidl-runtime-c + - ros-humble-rosidl-typesupport-fastrtps-c + - ros-humble-rosidl-typesupport-fastrtps-cpp + - ros-humble-rosidl-typesupport-introspection-c + - ros-humble-rosidl-typesupport-introspection-cpp + - ros2-distro-mutex 0.7.* humble_* + - libgcc >=13 + - libstdcxx >=13 + - libgcc >=13 + - numpy >=1.26.4,<2.0a0 + - python_abi 3.11.* *_cp311 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + license: BSD-3-Clause + size: 168683 + timestamp: 1753312613032 +- conda: https://prefix.dev/robostack-staging/osx-arm64/ros-humble-rmw-fastrtps-dynamic-cpp-6.2.7-np126py311h2a51a2c_13.conda + sha256: 89f476be13d24af80ccaaac4c3dc4bca9def0a5f260b3bbc4426b9220fd4e7ad + md5: 4fe9c5bc5557407b54c1e3cc6af72b01 + depends: + - python + - ros-humble-ament-cmake + - ros-humble-fastcdr + - ros-humble-fastrtps + - ros-humble-fastrtps-cmake-module + - ros-humble-rcpputils + - ros-humble-rcutils + - ros-humble-rmw + - ros-humble-rmw-dds-common + - ros-humble-rmw-fastrtps-shared-cpp + - ros-humble-ros-workspace + - ros-humble-rosidl-runtime-c + - ros-humble-rosidl-typesupport-fastrtps-c + - ros-humble-rosidl-typesupport-fastrtps-cpp + - ros-humble-rosidl-typesupport-introspection-c + - ros-humble-rosidl-typesupport-introspection-cpp + - ros2-distro-mutex 0.7.* humble_* + - __osx >=11.0 + - libcxx >=18 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + - numpy >=1.26.4,<2.0a0 + - python_abi 3.11.* *_cp311 + license: BSD-3-Clause + size: 137498 + timestamp: 1753311714929 +- conda: https://prefix.dev/robostack-staging/win-64/ros-humble-rmw-fastrtps-dynamic-cpp-6.2.7-np126py311hd5de103_13.conda + sha256: a3f4c0e83be8d51ba7f5a713d8544af2874c8366a3030bd28e3a36ffefa95328 + md5: 45b63c29cd4783ad5f8d6c92cacdf41e + depends: + - python + - ros-humble-ament-cmake + - ros-humble-fastcdr + - ros-humble-fastrtps + - ros-humble-fastrtps-cmake-module + - ros-humble-rcpputils + - ros-humble-rcutils + - ros-humble-rmw + - ros-humble-rmw-dds-common + - ros-humble-rmw-fastrtps-shared-cpp + - ros-humble-ros-workspace + - ros-humble-rosidl-runtime-c + - ros-humble-rosidl-typesupport-fastrtps-c + - ros-humble-rosidl-typesupport-fastrtps-cpp + - ros-humble-rosidl-typesupport-introspection-c + - ros-humble-rosidl-typesupport-introspection-cpp + - ros2-distro-mutex 0.7.* humble_* + - vc >=14.3,<15 + - vc14_runtime >=14.44.35208 + - ucrt >=10.0.20348.0 + - vc >=14.3,<15 + - vc14_runtime >=14.44.35208 + - ucrt >=10.0.20348.0 + - numpy >=1.26.4,<2.0a0 + - python_abi 3.11.* *_cp311 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + license: BSD-3-Clause + size: 175454 + timestamp: 1753326252818 +- conda: https://prefix.dev/robostack-staging/linux-64/ros-humble-rmw-fastrtps-shared-cpp-6.2.7-np126py311hbc2a38a_13.conda + sha256: 8815be9d597397a9c05745de45007d9c04ff8f2d78ada14d3a27ecd0bd555fc5 + md5: 658223d46ec46354c2a32b2cab778678 + depends: + - python + - ros-humble-ament-cmake + - ros-humble-fastcdr + - ros-humble-fastrtps + - ros-humble-fastrtps-cmake-module + - ros-humble-rcpputils + - ros-humble-rcutils + - ros-humble-rmw + - ros-humble-rmw-dds-common + - ros-humble-ros-workspace + - ros-humble-rosidl-typesupport-introspection-c + - ros-humble-rosidl-typesupport-introspection-cpp + - ros-humble-tracetools + - ros2-distro-mutex 0.7.* humble_* + - libstdcxx >=13 + - libgcc >=13 + - __glibc >=2.17,<3.0.a0 + - libgcc >=13 + - numpy >=1.26.4,<2.0a0 + - python_abi 3.11.* *_cp311 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + license: BSD-3-Clause + size: 209275 + timestamp: 1753311893445 +- conda: https://prefix.dev/robostack-staging/linux-aarch64/ros-humble-rmw-fastrtps-shared-cpp-6.2.7-np126py311hbdd918e_13.conda + sha256: cabcf0b2163d9613d54dbbe88a095521421ecfa2861bfeb1ac9902026102ce5f + md5: 563a869448f8c1c984c1ab8fe3174ceb + depends: + - python + - ros-humble-ament-cmake + - ros-humble-fastcdr + - ros-humble-fastrtps + - ros-humble-fastrtps-cmake-module + - ros-humble-rcpputils + - ros-humble-rcutils + - ros-humble-rmw + - ros-humble-rmw-dds-common + - ros-humble-ros-workspace + - ros-humble-rosidl-typesupport-introspection-c + - ros-humble-rosidl-typesupport-introspection-cpp + - ros-humble-tracetools + - ros2-distro-mutex 0.7.* humble_* + - libstdcxx >=13 + - libgcc >=13 + - numpy >=1.26.4,<2.0a0 + - python_abi 3.11.* *_cp311 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + license: BSD-3-Clause + size: 199204 + timestamp: 1753312379817 +- conda: https://prefix.dev/robostack-staging/osx-arm64/ros-humble-rmw-fastrtps-shared-cpp-6.2.7-np126py311h2a51a2c_13.conda + sha256: 2d447906888931e5d2202cc1f12602d2279aaaf79d78c6ec543204f777a4b33e + md5: cc3d121ed8fa398fa5396d5fafda3a48 + depends: + - python + - ros-humble-ament-cmake + - ros-humble-fastcdr + - ros-humble-fastrtps + - ros-humble-fastrtps-cmake-module + - ros-humble-rcpputils + - ros-humble-rcutils + - ros-humble-rmw + - ros-humble-rmw-dds-common + - ros-humble-ros-workspace + - ros-humble-rosidl-typesupport-introspection-c + - ros-humble-rosidl-typesupport-introspection-cpp + - ros-humble-tracetools + - ros2-distro-mutex 0.7.* humble_* + - __osx >=11.0 + - libcxx >=18 + - numpy >=1.26.4,<2.0a0 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + - python_abi 3.11.* *_cp311 + license: BSD-3-Clause + size: 170138 + timestamp: 1753311269303 +- conda: https://prefix.dev/robostack-staging/win-64/ros-humble-rmw-fastrtps-shared-cpp-6.2.7-np126py311hd5de103_13.conda + sha256: 6cf3dc280e3d098e36a04016f3f43b7d9666ff21a790897f087cf8caef5a5d78 + md5: 031ae6555fd0b2dcb7eaba75ddeaf135 + depends: + - python + - ros-humble-ament-cmake + - ros-humble-fastcdr + - ros-humble-fastrtps + - ros-humble-fastrtps-cmake-module + - ros-humble-rcpputils + - ros-humble-rcutils + - ros-humble-rmw + - ros-humble-rmw-dds-common + - ros-humble-ros-workspace + - ros-humble-rosidl-typesupport-introspection-c + - ros-humble-rosidl-typesupport-introspection-cpp + - ros-humble-tracetools + - ros2-distro-mutex 0.7.* humble_* + - vc >=14.3,<15 + - vc14_runtime >=14.44.35208 + - ucrt >=10.0.20348.0 + - vc >=14.3,<15 + - vc14_runtime >=14.44.35208 + - ucrt >=10.0.20348.0 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + - python_abi 3.11.* *_cp311 + - numpy >=1.26.4,<2.0a0 + license: BSD-3-Clause + size: 221675 + timestamp: 1753323867527 +- conda: https://prefix.dev/robostack-staging/linux-64/ros-humble-rmw-implementation-2.8.4-np126py311hbc2a38a_13.conda + sha256: 570f3285348f78ba5fda5ca4a0e1d97f6a6c28f28340a0c08ce2dec4fcad777a + md5: 31834425147f85a3e35f7abdc7c3dcd8 + depends: + - python + - ros-humble-ament-index-cpp + - ros-humble-rcpputils + - ros-humble-rcutils + - ros-humble-rmw-connextdds + - ros-humble-rmw-cyclonedds-cpp + - ros-humble-rmw-fastrtps-cpp + - ros-humble-rmw-fastrtps-dynamic-cpp + - ros-humble-rmw-implementation-cmake + - ros-humble-ros-workspace + - ros2-distro-mutex 0.7.* humble_* + - libstdcxx >=13 + - libgcc >=13 + - __glibc >=2.17,<3.0.a0 + - libgcc >=13 + - fmt >=11.2.0,<11.3.0a0 + - python_abi 3.11.* *_cp311 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + - numpy >=1.26.4,<2.0a0 + license: BSD-3-Clause + size: 52264 + timestamp: 1753312347656 +- conda: https://prefix.dev/robostack-staging/linux-aarch64/ros-humble-rmw-implementation-2.8.4-np126py311hbdd918e_13.conda + sha256: 27c869fd0344b4d37ebd2139f47a5b0ff50d978a5866536eeb1a84979bc01a3b + md5: 4c9d7fcac08ccc12ee8c0f36b3aae26d + depends: + - python + - ros-humble-ament-index-cpp + - ros-humble-rcpputils + - ros-humble-rcutils + - ros-humble-rmw-connextdds + - ros-humble-rmw-cyclonedds-cpp + - ros-humble-rmw-fastrtps-cpp + - ros-humble-rmw-fastrtps-dynamic-cpp + - ros-humble-rmw-implementation-cmake + - ros-humble-ros-workspace + - ros2-distro-mutex 0.7.* humble_* + - libstdcxx >=13 + - libgcc >=13 + - fmt >=11.2.0,<11.3.0a0 + - python_abi 3.11.* *_cp311 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + - numpy >=1.26.4,<2.0a0 + license: BSD-3-Clause + size: 54036 + timestamp: 1753312746878 +- conda: https://prefix.dev/robostack-staging/osx-arm64/ros-humble-rmw-implementation-2.8.4-np126py311h2a51a2c_13.conda + sha256: a0b80b1b1c0468eae2eb31dbe56b04b384e0e1c4db447e2b1d2895001f7c759c + md5: c08fdee00d7cb097175811d5018ef7e4 + depends: + - python + - ros-humble-ament-index-cpp + - ros-humble-rcpputils + - ros-humble-rcutils + - ros-humble-rmw-connextdds + - ros-humble-rmw-cyclonedds-cpp + - ros-humble-rmw-fastrtps-cpp + - ros-humble-rmw-fastrtps-dynamic-cpp + - ros-humble-rmw-implementation-cmake + - ros-humble-ros-workspace + - ros2-distro-mutex 0.7.* humble_* + - __osx >=11.0 + - libcxx >=18 + - numpy >=1.26.4,<2.0a0 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + - fmt >=11.2.0,<11.3.0a0 + - python_abi 3.11.* *_cp311 + license: BSD-3-Clause + size: 49260 + timestamp: 1753312095539 +- conda: https://prefix.dev/robostack-staging/win-64/ros-humble-rmw-implementation-2.8.4-np126py311hd5de103_13.conda + sha256: 0e66351a21fee78d6f2bd50296562d09d86d04a11971bf018a3fe3dec61f0c42 + md5: e32a3136ce1ec6d9eccd287c72b6c4ea + depends: + - python + - ros-humble-ament-index-cpp + - ros-humble-rcpputils + - ros-humble-rcutils + - ros-humble-rmw-connextdds + - ros-humble-rmw-cyclonedds-cpp + - ros-humble-rmw-fastrtps-cpp + - ros-humble-rmw-fastrtps-dynamic-cpp + - ros-humble-rmw-implementation-cmake + - ros-humble-ros-workspace + - ros2-distro-mutex 0.7.* humble_* + - vc >=14.3,<15 + - vc14_runtime >=14.44.35208 + - ucrt >=10.0.20348.0 + - vc >=14.3,<15 + - vc14_runtime >=14.44.35208 + - ucrt >=10.0.20348.0 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + - fmt >=11.2.0,<11.3.0a0 + - numpy >=1.26.4,<2.0a0 + - python_abi 3.11.* *_cp311 + license: BSD-3-Clause + size: 55097 + timestamp: 1753327608400 +- conda: https://prefix.dev/robostack-staging/linux-64/ros-humble-rmw-implementation-cmake-6.1.2-np126py311hbc2a38a_13.conda + sha256: df9e683bda0069a87a1076b0fd18089d742b39b6c1b5feca044708b129d4f69b + md5: 9fff8270bb17e943748646c958fa1a72 + depends: + - python + - ros-humble-ament-cmake + - ros-humble-ros-workspace + - ros2-distro-mutex 0.7.* humble_* + - libgcc >=13 + - __glibc >=2.17,<3.0.a0 + - libstdcxx >=13 + - libgcc >=13 + - numpy >=1.26.4,<2.0a0 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + - python_abi 3.11.* *_cp311 + license: BSD-3-Clause + size: 28640 + timestamp: 1753309791287 +- conda: https://prefix.dev/robostack-staging/linux-aarch64/ros-humble-rmw-implementation-cmake-6.1.2-np126py311hbdd918e_13.conda + sha256: 4af3869534e07e41aad9662b5f0edf1b5acbb166e1272c101737f181a5434e99 + md5: 5094cf280f9d6777b3d5103237805620 + depends: + - python + - ros-humble-ament-cmake + - ros-humble-ros-workspace + - ros2-distro-mutex 0.7.* humble_* + - libgcc >=13 + - libstdcxx >=13 + - libgcc >=13 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + - numpy >=1.26.4,<2.0a0 + - python_abi 3.11.* *_cp311 + license: BSD-3-Clause + size: 28530 + timestamp: 1753309574840 +- conda: https://prefix.dev/robostack-staging/osx-arm64/ros-humble-rmw-implementation-cmake-6.1.2-np126py311h2a51a2c_13.conda + sha256: 8015eaf19f2e0f2d78c0b35c75616d2f62986dd5eb4e04e4c84ce2e76427389b + md5: 56d1e8ab65ebb899766da161d15b9c1b + depends: + - python + - ros-humble-ament-cmake + - ros-humble-ros-workspace + - ros2-distro-mutex 0.7.* humble_* + - __osx >=11.0 + - libcxx >=18 + - numpy >=1.26.4,<2.0a0 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + - python_abi 3.11.* *_cp311 + license: BSD-3-Clause + size: 29475 + timestamp: 1753310262634 +- conda: https://prefix.dev/robostack-staging/win-64/ros-humble-rmw-implementation-cmake-6.1.2-np126py311hd5de103_13.conda + sha256: 3f828b8da760faa60221465ce2a4dede5e4286bf87dabb912037f80e5cd4399a + md5: a0766e1d4488ceb5de41033ce2f9cfee + depends: + - python + - ros-humble-ament-cmake + - ros-humble-ros-workspace + - ros2-distro-mutex 0.7.* humble_* + - vc >=14.3,<15 + - vc14_runtime >=14.44.35208 + - ucrt >=10.0.20348.0 + - vc >=14.3,<15 + - vc14_runtime >=14.44.35208 + - ucrt >=10.0.20348.0 + - numpy >=1.26.4,<2.0a0 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + - python_abi 3.11.* *_cp311 + license: BSD-3-Clause + size: 25248 + timestamp: 1753318449142 +- conda: https://prefix.dev/robostack-staging/linux-64/ros-humble-robot-state-publisher-3.0.3-np126py311hbc2a38a_13.conda + sha256: 40c6a8d8ef522336ce37d48fe7aa24eadc84145f7980d2c3f93815de67497a8f + md5: 7b5d5e6ffbd7e8251db93b3ef0f5cf55 + depends: + - python + - ros-humble-builtin-interfaces + - ros-humble-geometry-msgs + - ros-humble-kdl-parser + - ros-humble-orocos-kdl-vendor + - ros-humble-rcl-interfaces + - ros-humble-rclcpp + - ros-humble-rclcpp-components + - ros-humble-ros-workspace + - ros-humble-sensor-msgs + - ros-humble-std-msgs + - ros-humble-tf2-ros + - ros-humble-urdf + - ros2-distro-mutex 0.7.* humble_* + - libgcc >=13 + - libstdcxx >=13 + - libgcc >=13 + - __glibc >=2.17,<3.0.a0 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + - python_abi 3.11.* *_cp311 + - numpy >=1.26.4,<2.0a0 + license: BSD-3-Clause + size: 257351 + timestamp: 1753314067571 +- conda: https://prefix.dev/robostack-staging/linux-aarch64/ros-humble-robot-state-publisher-3.0.3-np126py311hbdd918e_13.conda + sha256: 2f376cd3224a764e19f9f97b76a0d6d49192f1c17b0ca4090496600f1638a344 + md5: 7066452b03f1f812667ee4fc00a2f37f + depends: + - python + - ros-humble-builtin-interfaces + - ros-humble-geometry-msgs + - ros-humble-kdl-parser + - ros-humble-orocos-kdl-vendor + - ros-humble-rcl-interfaces + - ros-humble-rclcpp + - ros-humble-rclcpp-components + - ros-humble-ros-workspace + - ros-humble-sensor-msgs + - ros-humble-std-msgs + - ros-humble-tf2-ros + - ros-humble-urdf + - ros2-distro-mutex 0.7.* humble_* + - libgcc >=13 + - libstdcxx >=13 + - libgcc >=13 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + - python_abi 3.11.* *_cp311 + - numpy >=1.26.4,<2.0a0 + license: BSD-3-Clause + size: 252953 + timestamp: 1753314163503 +- conda: https://prefix.dev/robostack-staging/osx-arm64/ros-humble-robot-state-publisher-3.0.3-np126py311h2a51a2c_13.conda + sha256: 880e147f5ea150ecdf8463b822f8d97fda5378991d13b081ded70120423703bd + md5: f77e3be8094281aa9d3a449924df53b2 + depends: + - python + - ros-humble-builtin-interfaces + - ros-humble-geometry-msgs + - ros-humble-kdl-parser + - ros-humble-orocos-kdl-vendor + - ros-humble-rcl-interfaces + - ros-humble-rclcpp + - ros-humble-rclcpp-components + - ros-humble-ros-workspace + - ros-humble-sensor-msgs + - ros-humble-std-msgs + - ros-humble-tf2-ros + - ros-humble-urdf + - ros2-distro-mutex 0.7.* humble_* + - __osx >=11.0 + - libcxx >=18 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + - python_abi 3.11.* *_cp311 + - numpy >=1.26.4,<2.0a0 + license: BSD-3-Clause + size: 221366 + timestamp: 1753314212368 +- conda: https://prefix.dev/robostack-staging/win-64/ros-humble-robot-state-publisher-3.0.3-np126py311hd5de103_13.conda + sha256: e05d6bbda41e6e1c5b387c8abe3b1af7b4c5bda941db8c31450233162ae3601e + md5: a4b2684445c589e43d1f58a71f3ad3e3 + depends: + - python + - ros-humble-builtin-interfaces + - ros-humble-geometry-msgs + - ros-humble-kdl-parser + - ros-humble-orocos-kdl-vendor + - ros-humble-rcl-interfaces + - ros-humble-rclcpp + - ros-humble-rclcpp-components + - ros-humble-ros-workspace + - ros-humble-sensor-msgs + - ros-humble-std-msgs + - ros-humble-tf2-ros + - ros-humble-urdf + - ros2-distro-mutex 0.7.* humble_* + - vc >=14.3,<15 + - vc14_runtime >=14.44.35208 + - ucrt >=10.0.20348.0 + - vc >=14.3,<15 + - vc14_runtime >=14.44.35208 + - ucrt >=10.0.20348.0 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + - python_abi 3.11.* *_cp311 + - numpy >=1.26.4,<2.0a0 + license: BSD-3-Clause + size: 182365 + timestamp: 1753335461236 +- conda: https://prefix.dev/robostack-staging/linux-64/ros-humble-ros-base-0.10.0-np126py311hbc2a38a_13.conda + sha256: d55ac3afd35075fef92c54d84f0d755abe9bb6d1bb7d38fab470d8146242eb61 + md5: 9e2b6108114056ec5dc9037a10bd8c67 + depends: + - python + - ros-humble-geometry2 + - ros-humble-kdl-parser + - ros-humble-robot-state-publisher + - ros-humble-ros-core + - ros-humble-ros-workspace + - ros-humble-rosbag2 + - ros-humble-urdf + - ros2-distro-mutex 0.7.* humble_* + - libstdcxx >=13 + - libgcc >=13 + - __glibc >=2.17,<3.0.a0 + - libgcc >=13 + - python_abi 3.11.* *_cp311 + - numpy >=1.26.4,<2.0a0 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + license: BSD-3-Clause + size: 22199 + timestamp: 1753317075522 +- conda: https://prefix.dev/robostack-staging/linux-aarch64/ros-humble-ros-base-0.10.0-np126py311hbdd918e_13.conda + sha256: 4fb9732e832ba5ee75d7d413815b9f4ce227c738a14d53ac112061452da1caa5 + md5: 3af6446e5057502e2ad8e44097f21852 + depends: + - python + - ros-humble-geometry2 + - ros-humble-kdl-parser + - ros-humble-robot-state-publisher + - ros-humble-ros-core + - ros-humble-ros-workspace + - ros-humble-rosbag2 + - ros-humble-urdf + - ros2-distro-mutex 0.7.* humble_* + - libgcc >=13 + - libstdcxx >=13 + - libgcc >=13 + - numpy >=1.26.4,<2.0a0 + - python_abi 3.11.* *_cp311 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + license: BSD-3-Clause + size: 22013 + timestamp: 1753335970673 +- conda: https://prefix.dev/robostack-staging/osx-arm64/ros-humble-ros-base-0.10.0-np126py311h2a51a2c_13.conda + sha256: 81622f0c4536c745f881b20bb08df80ff8a90e8ec1d3eb86ff2dc875db768368 + md5: f1b4c27b4e808db311e874149e23448a + depends: + - python + - ros-humble-geometry2 + - ros-humble-kdl-parser + - ros-humble-robot-state-publisher + - ros-humble-ros-core + - ros-humble-ros-workspace + - ros-humble-rosbag2 + - ros-humble-urdf + - ros2-distro-mutex 0.7.* humble_* + - __osx >=11.0 + - libcxx >=18 + - python_abi 3.11.* *_cp311 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + - numpy >=1.26.4,<2.0a0 + license: BSD-3-Clause + size: 22401 + timestamp: 1753320398545 +- conda: https://prefix.dev/robostack-staging/win-64/ros-humble-ros-base-0.10.0-np126py311hd5de103_13.conda + sha256: fafc91e52ab96a1396da0cea86513ae2fd70301475b1941ef1d820ac8f39a7d8 + md5: 9a1724b7a0685b59ff68f03c8394708e + depends: + - python + - ros-humble-geometry2 + - ros-humble-kdl-parser + - ros-humble-robot-state-publisher + - ros-humble-ros-core + - ros-humble-ros-workspace + - ros-humble-rosbag2 + - ros-humble-urdf + - ros2-distro-mutex 0.7.* humble_* + - vc >=14.3,<15 + - vc14_runtime >=14.44.35208 + - ucrt >=10.0.20348.0 + - vc >=14.3,<15 + - vc14_runtime >=14.44.35208 + - ucrt >=10.0.20348.0 + - numpy >=1.26.4,<2.0a0 + - python_abi 3.11.* *_cp311 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + license: BSD-3-Clause + size: 19026 + timestamp: 1753353953912 +- conda: https://prefix.dev/robostack-staging/linux-64/ros-humble-ros-core-0.10.0-np126py311hbc2a38a_13.conda + sha256: c0ac7cfb4a52d4ad7e54b422f2b786ba0519be84c243c64d7218c9e47d053abc + md5: fad2b4bd8caa297bdf97da45ec77a34a + depends: + - python + - ros-humble-ament-cmake + - ros-humble-ament-cmake-auto + - ros-humble-ament-cmake-gmock + - ros-humble-ament-cmake-gtest + - ros-humble-ament-cmake-pytest + - ros-humble-ament-cmake-ros + - ros-humble-ament-index-cpp + - ros-humble-ament-index-python + - ros-humble-ament-lint-auto + - ros-humble-ament-lint-common + - ros-humble-class-loader + - ros-humble-common-interfaces + - ros-humble-launch + - ros-humble-launch-ros + - ros-humble-launch-testing + - ros-humble-launch-testing-ament-cmake + - ros-humble-launch-testing-ros + - ros-humble-launch-xml + - ros-humble-launch-yaml + - ros-humble-pluginlib + - ros-humble-rcl-lifecycle + - ros-humble-rclcpp + - ros-humble-rclcpp-action + - ros-humble-rclcpp-lifecycle + - ros-humble-rclpy + - ros-humble-ros-environment + - ros-humble-ros-workspace + - ros-humble-ros2cli-common-extensions + - ros-humble-ros2launch + - ros-humble-rosidl-default-generators + - ros-humble-rosidl-default-runtime + - ros-humble-sros2 + - ros-humble-sros2-cmake + - ros2-distro-mutex 0.7.* humble_* + - libstdcxx >=13 + - libgcc >=13 + - __glibc >=2.17,<3.0.a0 + - libgcc >=13 + - python_abi 3.11.* *_cp311 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + - numpy >=1.26.4,<2.0a0 + license: BSD-3-Clause + size: 22930 + timestamp: 1753314980880 +- conda: https://prefix.dev/robostack-staging/linux-aarch64/ros-humble-ros-core-0.10.0-np126py311hbdd918e_13.conda + sha256: ddafe991f88fb0ddf847784571582e7a9696e786114064f0f0891eab801f1224 + md5: 771d1d7630b60569337bbe11d1f4a6e8 + depends: + - python + - ros-humble-ament-cmake + - ros-humble-ament-cmake-auto + - ros-humble-ament-cmake-gmock + - ros-humble-ament-cmake-gtest + - ros-humble-ament-cmake-pytest + - ros-humble-ament-cmake-ros + - ros-humble-ament-index-cpp + - ros-humble-ament-index-python + - ros-humble-ament-lint-auto + - ros-humble-ament-lint-common + - ros-humble-class-loader + - ros-humble-common-interfaces + - ros-humble-launch + - ros-humble-launch-ros + - ros-humble-launch-testing + - ros-humble-launch-testing-ament-cmake + - ros-humble-launch-testing-ros + - ros-humble-launch-xml + - ros-humble-launch-yaml + - ros-humble-pluginlib + - ros-humble-rcl-lifecycle + - ros-humble-rclcpp + - ros-humble-rclcpp-action + - ros-humble-rclcpp-lifecycle + - ros-humble-rclpy + - ros-humble-ros-environment + - ros-humble-ros-workspace + - ros-humble-ros2cli-common-extensions + - ros-humble-ros2launch + - ros-humble-rosidl-default-generators + - ros-humble-rosidl-default-runtime + - ros-humble-sros2 + - ros-humble-sros2-cmake + - ros2-distro-mutex 0.7.* humble_* + - libgcc >=13 + - libstdcxx >=13 + - libgcc >=13 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + - numpy >=1.26.4,<2.0a0 + - python_abi 3.11.* *_cp311 + license: BSD-3-Clause + size: 22741 + timestamp: 1753314973044 +- conda: https://prefix.dev/robostack-staging/osx-arm64/ros-humble-ros-core-0.10.0-np126py311h2a51a2c_13.conda + sha256: ec79eb348d117341598450711f88ba85517a3548f8125e40330958b96c819007 + md5: e616f63d39e72c4520b6b7ff8644b3b2 + depends: + - python + - ros-humble-ament-cmake + - ros-humble-ament-cmake-auto + - ros-humble-ament-cmake-gmock + - ros-humble-ament-cmake-gtest + - ros-humble-ament-cmake-pytest + - ros-humble-ament-cmake-ros + - ros-humble-ament-index-cpp + - ros-humble-ament-index-python + - ros-humble-ament-lint-auto + - ros-humble-ament-lint-common + - ros-humble-class-loader + - ros-humble-common-interfaces + - ros-humble-launch + - ros-humble-launch-ros + - ros-humble-launch-testing + - ros-humble-launch-testing-ament-cmake + - ros-humble-launch-testing-ros + - ros-humble-launch-xml + - ros-humble-launch-yaml + - ros-humble-pluginlib + - ros-humble-rcl-lifecycle + - ros-humble-rclcpp + - ros-humble-rclcpp-action + - ros-humble-rclcpp-lifecycle + - ros-humble-rclpy + - ros-humble-ros-environment + - ros-humble-ros-workspace + - ros-humble-ros2cli-common-extensions + - ros-humble-ros2launch + - ros-humble-rosidl-default-generators + - ros-humble-rosidl-default-runtime + - ros-humble-sros2 + - ros-humble-sros2-cmake + - ros2-distro-mutex 0.7.* humble_* + - __osx >=11.0 + - libcxx >=18 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + - numpy >=1.26.4,<2.0a0 + - python_abi 3.11.* *_cp311 + license: BSD-3-Clause + size: 23101 + timestamp: 1753317455505 +- conda: https://prefix.dev/robostack-staging/win-64/ros-humble-ros-core-0.10.0-np126py311hd5de103_13.conda + sha256: 2617b21ac453ccdc3ca92e8309e04ae4910b20f5e134c0a935bb679350a303c6 + md5: 18f7a0c81a894a0fbef113661887911d + depends: + - python + - ros-humble-ament-cmake + - ros-humble-ament-cmake-auto + - ros-humble-ament-cmake-gmock + - ros-humble-ament-cmake-gtest + - ros-humble-ament-cmake-pytest + - ros-humble-ament-cmake-ros + - ros-humble-ament-index-cpp + - ros-humble-ament-index-python + - ros-humble-ament-lint-auto + - ros-humble-ament-lint-common + - ros-humble-class-loader + - ros-humble-common-interfaces + - ros-humble-launch + - ros-humble-launch-ros + - ros-humble-launch-testing + - ros-humble-launch-testing-ament-cmake + - ros-humble-launch-testing-ros + - ros-humble-launch-xml + - ros-humble-launch-yaml + - ros-humble-pluginlib + - ros-humble-rcl-lifecycle + - ros-humble-rclcpp + - ros-humble-rclcpp-action + - ros-humble-rclcpp-lifecycle + - ros-humble-rclpy + - ros-humble-ros-environment + - ros-humble-ros-workspace + - ros-humble-ros2cli-common-extensions + - ros-humble-ros2launch + - ros-humble-rosidl-default-generators + - ros-humble-rosidl-default-runtime + - ros-humble-sros2 + - ros-humble-sros2-cmake + - ros2-distro-mutex 0.7.* humble_* + - vc >=14.3,<15 + - vc14_runtime >=14.44.35208 + - ucrt >=10.0.20348.0 + - vc >=14.3,<15 + - vc14_runtime >=14.44.35208 + - ucrt >=10.0.20348.0 + - python_abi 3.11.* *_cp311 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + - numpy >=1.26.4,<2.0a0 + license: BSD-3-Clause + size: 19674 + timestamp: 1753341721767 +- conda: https://prefix.dev/robostack-staging/linux-64/ros-humble-ros-environment-3.2.2-np126py311hbc2a38a_13.conda + sha256: e6ba55554f85a458e9a5579f176ad77ed3b363a0e3f2bf466f1bcc5080a5a044 + md5: 2875f1cfc45864ad02559e3946236a65 + depends: + - python + - ros2-distro-mutex 0.7.* humble_* + - __glibc >=2.17,<3.0.a0 + - libstdcxx >=13 + - libgcc >=13 + - numpy >=1.26.4,<2.0a0 + - python_abi 3.11.* *_cp311 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + license: BSD-3-Clause + size: 21136 + timestamp: 1753307828221 +- conda: https://prefix.dev/robostack-staging/linux-aarch64/ros-humble-ros-environment-3.2.2-np126py311hbdd918e_13.conda + sha256: ca4055987b9d078de78fa8699b7bb0b26557649410cc411a25c9390975c4ab4b + md5: ae420c2d8184c730314b97b9c6b8b22d + depends: + - python + - ros2-distro-mutex 0.7.* humble_* + - libgcc >=13 + - libstdcxx >=13 + - libgcc >=13 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + - numpy >=1.26.4,<2.0a0 + - python_abi 3.11.* *_cp311 + license: BSD-3-Clause + size: 20990 + timestamp: 1753308019607 +- conda: https://prefix.dev/robostack-staging/osx-arm64/ros-humble-ros-environment-3.2.2-np126py311h2a51a2c_13.conda + sha256: b241fe75f7cddd6bd765dbca9f8c22e62bf4fc416695e3e5d0a983b4b48456a3 + md5: d283592ffe3f263474cece233e087841 + depends: + - python + - ros2-distro-mutex 0.7.* humble_* + - __osx >=11.0 + - libcxx >=18 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + - numpy >=1.26.4,<2.0a0 + - python_abi 3.11.* *_cp311 + license: BSD-3-Clause + size: 21408 + timestamp: 1753307917828 +- conda: https://prefix.dev/robostack-staging/win-64/ros-humble-ros-environment-3.2.2-np126py311hd5de103_13.conda + sha256: 71484045e7a3ce93c64ea44faf7f49aa798601ea143dcc16ef5caeddbd3dc021 + md5: 3d3acc24039f3a82c52ecca2c0979f03 + depends: + - python + - ros2-distro-mutex 0.7.* humble_* + - vc >=14.3,<15 + - vc14_runtime >=14.44.35208 + - ucrt >=10.0.20348.0 + - vc >=14.3,<15 + - vc14_runtime >=14.44.35208 + - ucrt >=10.0.20348.0 + - python_abi 3.11.* *_cp311 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + - numpy >=1.26.4,<2.0a0 + license: BSD-3-Clause + size: 17694 + timestamp: 1753308114637 +- conda: https://prefix.dev/robostack-staging/linux-64/ros-humble-ros-workspace-1.0.2-np126py311hbc2a38a_13.conda + sha256: 6af3bfaeb610b1c7487ef9985fc4df0aa1546369156f28d6256692fada67c4c1 + md5: e880fc309969c933f729e8174f6166e2 + depends: + - python + - ros2-distro-mutex 0.7.* humble_* + - __glibc >=2.17,<3.0.a0 + - libgcc >=13 + - libstdcxx >=13 + - libgcc >=13 + - numpy >=1.26.4,<2.0a0 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + - python_abi 3.11.* *_cp311 + license: BSD-3-Clause + size: 35953 + timestamp: 1753307817565 +- conda: https://prefix.dev/robostack-staging/linux-aarch64/ros-humble-ros-workspace-1.0.2-np126py311hbdd918e_13.conda + sha256: 104115defbaed0f2c5d5cfa78751edcaaf1f6b1037bdc7c190ca51ff9101e267 + md5: a20c36686ec49dc305077e3876c1ef8b + depends: + - python + - ros2-distro-mutex 0.7.* humble_* + - libgcc >=13 + - libstdcxx >=13 + - libgcc >=13 + - python_abi 3.11.* *_cp311 + - numpy >=1.26.4,<2.0a0 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + license: BSD-3-Clause + size: 35788 + timestamp: 1753307996232 +- conda: https://prefix.dev/robostack-staging/osx-arm64/ros-humble-ros-workspace-1.0.2-np126py311h2a51a2c_13.conda + sha256: f6fc33ac852a0c47a620427947ad78dfb769c1b1b6e7cd6b3867c3e6b6312ec8 + md5: b17dd6789d181ea59dcbfdaa9bf78590 + depends: + - python + - ros2-distro-mutex 0.7.* humble_* + - __osx >=11.0 + - libcxx >=18 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + - numpy >=1.26.4,<2.0a0 + - python_abi 3.11.* *_cp311 + license: BSD-3-Clause + size: 36223 + timestamp: 1753307904148 +- conda: https://prefix.dev/robostack-staging/win-64/ros-humble-ros-workspace-1.0.2-np126py311hd5de103_13.conda + sha256: 463876a0060ff9ca759bd6767fa3a7c14320cb8b0ac569b1490a0253149f82d9 + md5: 2a679ad4a38b72d1327f979f29b9afbf + depends: + - python + - ros2-distro-mutex 0.7.* humble_* + - vc >=14.3,<15 + - vc14_runtime >=14.44.35208 + - ucrt >=10.0.20348.0 + - vc >=14.3,<15 + - vc14_runtime >=14.44.35208 + - ucrt >=10.0.20348.0 + - python_abi 3.11.* *_cp311 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + - numpy >=1.26.4,<2.0a0 + license: BSD-3-Clause + size: 32597 + timestamp: 1753308072735 +- conda: https://prefix.dev/robostack-staging/linux-64/ros-humble-ros2action-0.18.12-np126py311hbc2a38a_13.conda + sha256: 48cb1cec6128f237a95d1b892f61c248c9dbe63015ff3d58e7935e76be166e4b + md5: b8be8730ff46f3b1e915fb3f0037946f + depends: + - python + - ros-humble-action-msgs + - ros-humble-ament-index-python + - ros-humble-rclpy + - ros-humble-ros-workspace + - ros-humble-ros2cli + - ros-humble-rosidl-runtime-py + - ros2-distro-mutex 0.7.* humble_* + - libgcc >=13 + - libstdcxx >=13 + - libgcc >=13 + - __glibc >=2.17,<3.0.a0 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + - python_abi 3.11.* *_cp311 + - numpy >=1.26.4,<2.0a0 + license: BSD-3-Clause + size: 43693 + timestamp: 1753313855181 +- conda: https://prefix.dev/robostack-staging/linux-aarch64/ros-humble-ros2action-0.18.12-np126py311hbdd918e_13.conda + sha256: b1887ec479cc2fb7e4ad46e7949a30b4e7dd094766dceaffa82a9b895fa8646b + md5: f2ad9e235786696feda4489ff15ad99f + depends: + - python + - ros-humble-action-msgs + - ros-humble-ament-index-python + - ros-humble-rclpy + - ros-humble-ros-workspace + - ros-humble-ros2cli + - ros-humble-rosidl-runtime-py + - ros2-distro-mutex 0.7.* humble_* + - libstdcxx >=13 + - libgcc >=13 + - numpy >=1.26.4,<2.0a0 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + - python_abi 3.11.* *_cp311 + license: BSD-3-Clause + size: 43555 + timestamp: 1753313959778 +- conda: https://prefix.dev/robostack-staging/osx-arm64/ros-humble-ros2action-0.18.12-np126py311h2a51a2c_13.conda + sha256: c3c39d0435af14b7087ce42ac2c1608a67fb2f18b37d114edbfebafa5c12c432 + md5: d37bcf34e50f16d78301a460e1cab5e8 + depends: + - python + - ros-humble-action-msgs + - ros-humble-ament-index-python + - ros-humble-rclpy + - ros-humble-ros-workspace + - ros-humble-ros2cli + - ros-humble-rosidl-runtime-py + - ros2-distro-mutex 0.7.* humble_* + - __osx >=11.0 + - libcxx >=18 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + - python_abi 3.11.* *_cp311 + - numpy >=1.26.4,<2.0a0 + license: BSD-3-Clause + size: 43418 + timestamp: 1753313996026 +- conda: https://prefix.dev/robostack-staging/win-64/ros-humble-ros2action-0.18.12-np126py311hd5de103_13.conda + sha256: 3798bb5ad808e069a7d633d53233c1c92887ae82f663def998a38d61e3eb20ec + md5: bb40d054ee233ffe566f1f330f0bc109 + depends: + - python + - ros-humble-action-msgs + - ros-humble-ament-index-python + - ros-humble-rclpy + - ros-humble-ros-workspace + - ros-humble-ros2cli + - ros-humble-rosidl-runtime-py + - ros2-distro-mutex 0.7.* humble_* + - vc >=14.3,<15 + - vc14_runtime >=14.44.35208 + - ucrt >=10.0.20348.0 + - vc >=14.3,<15 + - vc14_runtime >=14.44.35208 + - ucrt >=10.0.20348.0 + - python_abi 3.11.* *_cp311 + - numpy >=1.26.4,<2.0a0 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + license: BSD-3-Clause + size: 39757 + timestamp: 1753334235895 +- conda: https://prefix.dev/robostack-staging/linux-64/ros-humble-ros2bag-0.15.14-np126py311hbc2a38a_13.conda + sha256: b51f90a33a8b4879740e3f36e09007e3b7d31547370064f961993f54b6c1bc7d + md5: 8970b5a4fd0c8366c91fce88cd730f86 + depends: + - python + - ros-humble-ament-index-python + - ros-humble-rclpy + - ros-humble-ros-workspace + - ros-humble-ros2cli + - ros-humble-rosbag2-py + - ros2-distro-mutex 0.7.* humble_* + - libgcc >=13 + - libstdcxx >=13 + - libgcc >=13 + - __glibc >=2.17,<3.0.a0 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + - numpy >=1.26.4,<2.0a0 + - python_abi 3.11.* *_cp311 + license: BSD-3-Clause + size: 53745 + timestamp: 1753316162739 +- conda: https://prefix.dev/robostack-staging/linux-aarch64/ros-humble-ros2bag-0.15.14-np126py311hbdd918e_13.conda + sha256: 7a9a3c4522c0c209b668231f1fabec01ca3b12cb8bbf3b47d9cfcdc7888c8df3 + md5: 16001e9861515dfbe0d9b530f8d84be5 + depends: + - python + - ros-humble-ament-index-python + - ros-humble-rclpy + - ros-humble-ros-workspace + - ros-humble-ros2cli + - ros-humble-rosbag2-py + - ros2-distro-mutex 0.7.* humble_* + - libstdcxx >=13 + - libgcc >=13 + - python_abi 3.11.* *_cp311 + - numpy >=1.26.4,<2.0a0 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + license: BSD-3-Clause + size: 53417 + timestamp: 1753335208474 +- conda: https://prefix.dev/robostack-staging/osx-arm64/ros-humble-ros2bag-0.15.14-np126py311h2a51a2c_13.conda + sha256: 3ad33e2ca0b0d921ea5058d9835855e7a1f693b37feda5aceaf674b5473c66c7 + md5: 892f7f1ccc99b3688e5500ba10b17ea0 + depends: + - python + - ros-humble-ament-index-python + - ros-humble-rclpy + - ros-humble-ros-workspace + - ros-humble-ros2cli + - ros-humble-rosbag2-py + - ros2-distro-mutex 0.7.* humble_* + - libcxx >=18 + - __osx >=11.0 + - numpy >=1.26.4,<2.0a0 + - python_abi 3.11.* *_cp311 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + license: BSD-3-Clause + size: 53526 + timestamp: 1753318664905 +- conda: https://prefix.dev/robostack-staging/win-64/ros-humble-ros2bag-0.15.14-np126py311hd5de103_13.conda + sha256: 8af6872bb837bf40f493bc55c4452c0363ad89172c7b0b2eac0d7bf182ad1bab + md5: 2d176265562856f33b1606ebeda0690f + depends: + - python + - ros-humble-ament-index-python + - ros-humble-rclpy + - ros-humble-ros-workspace + - ros-humble-ros2cli + - ros-humble-rosbag2-py + - ros2-distro-mutex 0.7.* humble_* + - vc >=14.3,<15 + - vc14_runtime >=14.44.35208 + - ucrt >=10.0.20348.0 + - vc >=14.3,<15 + - vc14_runtime >=14.44.35208 + - ucrt >=10.0.20348.0 + - numpy >=1.26.4,<2.0a0 + - python_abi 3.11.* *_cp311 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + license: BSD-3-Clause + size: 50097 + timestamp: 1753348513705 +- conda: https://prefix.dev/robostack-staging/linux-64/ros-humble-ros2cli-0.18.12-np126py311hbc2a38a_13.conda + sha256: 6ea761b77bbcacd4e20f4349bfcda371a62f0701037c69e3e2a635b5e216bbf3 + md5: 3be00c1a629c93d77e827f40cc9a9bf2 + depends: + - argcomplete + - importlib-metadata + - netifaces + - packaging + - python + - ros-humble-rclpy + - ros-humble-ros-workspace + - ros2-distro-mutex 0.7.* humble_* + - __glibc >=2.17,<3.0.a0 + - libstdcxx >=13 + - libgcc >=13 + - numpy >=1.26.4,<2.0a0 + - python_abi 3.11.* *_cp311 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + license: BSD-3-Clause + size: 74467 + timestamp: 1753313161046 +- conda: https://prefix.dev/robostack-staging/linux-aarch64/ros-humble-ros2cli-0.18.12-np126py311hbdd918e_13.conda + sha256: af13464b86293627fdc64124b3cd5d8780059bef541f1d8fcb9266bb376309e8 + md5: e4b78d24bc6294a7c7ca5b403dc1d061 + depends: + - argcomplete + - importlib-metadata + - netifaces + - packaging + - python + - ros-humble-rclpy + - ros-humble-ros-workspace + - ros2-distro-mutex 0.7.* humble_* + - libstdcxx >=13 + - libgcc >=13 + - numpy >=1.26.4,<2.0a0 + - python_abi 3.11.* *_cp311 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + license: BSD-3-Clause + size: 74374 + timestamp: 1753313397425 +- conda: https://prefix.dev/robostack-staging/osx-arm64/ros-humble-ros2cli-0.18.12-np126py311h2a51a2c_13.conda + sha256: e84783e0a0f551f84e48d42d92be724ccfc0d6cfcc28e97cc35a5bf64596046e + md5: 8d22b31f3ea97d03b4bbda1f79c980e3 + depends: + - argcomplete + - importlib-metadata + - netifaces + - packaging + - python + - ros-humble-rclpy + - ros-humble-ros-workspace + - ros2-distro-mutex 0.7.* humble_* + - __osx >=11.0 + - libcxx >=18 + - python_abi 3.11.* *_cp311 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + - numpy >=1.26.4,<2.0a0 + license: BSD-3-Clause + size: 74592 + timestamp: 1753313246566 +- conda: https://prefix.dev/robostack-staging/win-64/ros-humble-ros2cli-0.18.12-np126py311hd5de103_13.conda + sha256: be0fc160234f629e41e09e337385250cc9ef9b715ab7c21153a1198816a4e4ae + md5: ec20c6da83cc68647898cc726340021a + depends: + - argcomplete + - importlib-metadata + - netifaces + - packaging + - python + - ros-humble-rclpy + - ros-humble-ros-workspace + - ros2-distro-mutex 0.7.* humble_* + - vc >=14.3,<15 + - vc14_runtime >=14.44.35208 + - ucrt >=10.0.20348.0 + - vc >=14.3,<15 + - vc14_runtime >=14.44.35208 + - ucrt >=10.0.20348.0 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + - numpy >=1.26.4,<2.0a0 + - python_abi 3.11.* *_cp311 + license: BSD-3-Clause + size: 81224 + timestamp: 1753331443450 +- conda: https://prefix.dev/robostack-staging/linux-64/ros-humble-ros2cli-common-extensions-0.1.1-np126py311hbc2a38a_13.conda + sha256: 0cdffb797c1bff63bd1b65c4855444a3c4dec5d8d145f4444c8ee95dc35cc597 + md5: 1bf9ff4ea2134b92ace98b03d4b0c4da + depends: + - python + - ros-humble-launch-xml + - ros-humble-launch-yaml + - ros-humble-ros-workspace + - ros-humble-ros2action + - ros-humble-ros2cli + - ros-humble-ros2component + - ros-humble-ros2doctor + - ros-humble-ros2interface + - ros-humble-ros2launch + - ros-humble-ros2lifecycle + - ros-humble-ros2multicast + - ros-humble-ros2node + - ros-humble-ros2param + - ros-humble-ros2pkg + - ros-humble-ros2run + - ros-humble-ros2service + - ros-humble-ros2topic + - ros-humble-sros2 + - ros2-distro-mutex 0.7.* humble_* + - __glibc >=2.17,<3.0.a0 + - libstdcxx >=13 + - libgcc >=13 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + - numpy >=1.26.4,<2.0a0 + - python_abi 3.11.* *_cp311 + license: BSD-3-Clause + size: 26006 + timestamp: 1753314687920 +- conda: https://prefix.dev/robostack-staging/linux-aarch64/ros-humble-ros2cli-common-extensions-0.1.1-np126py311hbdd918e_13.conda + sha256: 4383fb1c362c5a5f0d739059d3bbe7deabd42503cbc2eed397252854c0fc3a44 + md5: d6976e677e2b60e230c5b7a1fce03323 + depends: + - python + - ros-humble-launch-xml + - ros-humble-launch-yaml + - ros-humble-ros-workspace + - ros-humble-ros2action + - ros-humble-ros2cli + - ros-humble-ros2component + - ros-humble-ros2doctor + - ros-humble-ros2interface + - ros-humble-ros2launch + - ros-humble-ros2lifecycle + - ros-humble-ros2multicast + - ros-humble-ros2node + - ros-humble-ros2param + - ros-humble-ros2pkg + - ros-humble-ros2run + - ros-humble-ros2service + - ros-humble-ros2topic + - ros-humble-sros2 + - ros2-distro-mutex 0.7.* humble_* + - libgcc >=13 + - libstdcxx >=13 + - libgcc >=13 + - numpy >=1.26.4,<2.0a0 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + - python_abi 3.11.* *_cp311 + license: BSD-3-Clause + size: 25894 + timestamp: 1753314719389 +- conda: https://prefix.dev/robostack-staging/osx-arm64/ros-humble-ros2cli-common-extensions-0.1.1-np126py311h2a51a2c_13.conda + sha256: 7ece72e460e4e36437838c80d77a07828be7710d81e0640fde9e3db6d8e65bf8 + md5: 2aed5970f91e1c6dc6e4da90489b7a9c + depends: + - python + - ros-humble-launch-xml + - ros-humble-launch-yaml + - ros-humble-ros-workspace + - ros-humble-ros2action + - ros-humble-ros2cli + - ros-humble-ros2component + - ros-humble-ros2doctor + - ros-humble-ros2interface + - ros-humble-ros2launch + - ros-humble-ros2lifecycle + - ros-humble-ros2multicast + - ros-humble-ros2node + - ros-humble-ros2param + - ros-humble-ros2pkg + - ros-humble-ros2run + - ros-humble-ros2service + - ros-humble-ros2topic + - ros-humble-sros2 + - ros2-distro-mutex 0.7.* humble_* + - libcxx >=18 + - __osx >=11.0 + - python_abi 3.11.* *_cp311 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + - numpy >=1.26.4,<2.0a0 + license: BSD-3-Clause + size: 26107 + timestamp: 1753315524108 +- conda: https://prefix.dev/robostack-staging/win-64/ros-humble-ros2cli-common-extensions-0.1.1-np126py311hd5de103_13.conda + sha256: 5621d682fa1c098bc94bf36aa3f5e8b752fff1fe6917436b088556c1fa5da849 + md5: fd37e56a7f563aec045fb04c20be98ea + depends: + - python + - ros-humble-launch-xml + - ros-humble-launch-yaml + - ros-humble-ros-workspace + - ros-humble-ros2action + - ros-humble-ros2cli + - ros-humble-ros2component + - ros-humble-ros2doctor + - ros-humble-ros2interface + - ros-humble-ros2launch + - ros-humble-ros2lifecycle + - ros-humble-ros2multicast + - ros-humble-ros2node + - ros-humble-ros2param + - ros-humble-ros2pkg + - ros-humble-ros2run + - ros-humble-ros2service + - ros-humble-ros2topic + - ros-humble-sros2 + - ros2-distro-mutex 0.7.* humble_* + - vc >=14.3,<15 + - vc14_runtime >=14.44.35208 + - ucrt >=10.0.20348.0 + - vc >=14.3,<15 + - vc14_runtime >=14.44.35208 + - ucrt >=10.0.20348.0 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + - python_abi 3.11.* *_cp311 + - numpy >=1.26.4,<2.0a0 + license: BSD-3-Clause + size: 22635 + timestamp: 1753339757386 +- conda: https://prefix.dev/robostack-staging/linux-64/ros-humble-ros2component-0.18.12-np126py311hbc2a38a_13.conda + sha256: 112df535d6896880ce5a95c4586929c48f1229b39f19a8633d117f1ebf89e4df + md5: 69e6f0aaffc1c4b528b4ac459d4b8233 + depends: + - python + - ros-humble-ament-index-python + - ros-humble-composition-interfaces + - ros-humble-rcl-interfaces + - ros-humble-rclcpp-components + - ros-humble-rclpy + - ros-humble-ros-workspace + - ros-humble-ros2cli + - ros-humble-ros2node + - ros-humble-ros2param + - ros-humble-ros2pkg + - ros2-distro-mutex 0.7.* humble_* + - __glibc >=2.17,<3.0.a0 + - libgcc >=13 + - libstdcxx >=13 + - libgcc >=13 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + - numpy >=1.26.4,<2.0a0 + - python_abi 3.11.* *_cp311 + license: BSD-3-Clause + size: 38392 + timestamp: 1753314320106 +- conda: https://prefix.dev/robostack-staging/linux-aarch64/ros-humble-ros2component-0.18.12-np126py311hbdd918e_13.conda + sha256: c630cc6605380e6f645636575c01065a0695c2bfb4a76b2edf60b7e278a8897a + md5: 94e04453fbc8354384ba333b754ec24c + depends: + - python + - ros-humble-ament-index-python + - ros-humble-composition-interfaces + - ros-humble-rcl-interfaces + - ros-humble-rclcpp-components + - ros-humble-rclpy + - ros-humble-ros-workspace + - ros-humble-ros2cli + - ros-humble-ros2node + - ros-humble-ros2param + - ros-humble-ros2pkg + - ros2-distro-mutex 0.7.* humble_* + - libgcc >=13 + - libstdcxx >=13 + - libgcc >=13 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + - python_abi 3.11.* *_cp311 + - numpy >=1.26.4,<2.0a0 + license: BSD-3-Clause + size: 38343 + timestamp: 1753314383588 +- conda: https://prefix.dev/robostack-staging/osx-arm64/ros-humble-ros2component-0.18.12-np126py311h2a51a2c_13.conda + sha256: e872d31768f79f9415c4209c957365ce39beb06fef0b6576e29c51d969a1a620 + md5: a3ec180b70a3222c1c615b65584f32da + depends: + - python + - ros-humble-ament-index-python + - ros-humble-composition-interfaces + - ros-humble-rcl-interfaces + - ros-humble-rclcpp-components + - ros-humble-rclpy + - ros-humble-ros-workspace + - ros-humble-ros2cli + - ros-humble-ros2node + - ros-humble-ros2param + - ros-humble-ros2pkg + - ros2-distro-mutex 0.7.* humble_* + - __osx >=11.0 + - libcxx >=18 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + - python_abi 3.11.* *_cp311 + - numpy >=1.26.4,<2.0a0 + license: BSD-3-Clause + size: 38452 + timestamp: 1753314742164 +- conda: https://prefix.dev/robostack-staging/win-64/ros-humble-ros2component-0.18.12-np126py311hd5de103_13.conda + sha256: cb62876fe4e77ec5f90c0adb6082eb2374e8e7ca9210ca0e72d9a6e6b445d0a0 + md5: 3e803f065c5779c188f9f39677d0ed43 + depends: + - python + - ros-humble-ament-index-python + - ros-humble-composition-interfaces + - ros-humble-rcl-interfaces + - ros-humble-rclcpp-components + - ros-humble-rclpy + - ros-humble-ros-workspace + - ros-humble-ros2cli + - ros-humble-ros2node + - ros-humble-ros2param + - ros-humble-ros2pkg + - ros2-distro-mutex 0.7.* humble_* + - vc >=14.3,<15 + - vc14_runtime >=14.44.35208 + - ucrt >=10.0.20348.0 + - vc >=14.3,<15 + - vc14_runtime >=14.44.35208 + - ucrt >=10.0.20348.0 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + - python_abi 3.11.* *_cp311 + - numpy >=1.26.4,<2.0a0 + license: BSD-3-Clause + size: 34800 + timestamp: 1753336827536 +- conda: https://prefix.dev/robostack-staging/linux-64/ros-humble-ros2doctor-0.18.12-np126py311hbc2a38a_13.conda + sha256: b50da307b585bf6a7221cb9fa799c2f3723b2cb0a1685758ad9d921afbbd35a4 + md5: 6be8e0c427dda5bda218a71c1c185606 + depends: + - catkin_pkg + - importlib-metadata + - psutil + - python + - ros-humble-ament-index-python + - ros-humble-rclpy + - ros-humble-ros-environment + - ros-humble-ros-workspace + - ros-humble-ros2cli + - ros2-distro-mutex 0.7.* humble_* + - rosdistro + - __glibc >=2.17,<3.0.a0 + - libgcc >=13 + - libstdcxx >=13 + - libgcc >=13 + - python_abi 3.11.* *_cp311 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + - numpy >=1.26.4,<2.0a0 + license: BSD-3-Clause + size: 65818 + timestamp: 1753313927268 +- conda: https://prefix.dev/robostack-staging/linux-aarch64/ros-humble-ros2doctor-0.18.12-np126py311hbdd918e_13.conda + sha256: e49d9a58eebf99670cae50d254c17a9b8d940280be0c59b9b6a02ae374fb90e9 + md5: 6ed6eab1909e4b03c9f24ebca05d073d + depends: + - catkin_pkg + - importlib-metadata + - psutil + - python + - ros-humble-ament-index-python + - ros-humble-rclpy + - ros-humble-ros-environment + - ros-humble-ros-workspace + - ros-humble-ros2cli + - ros2-distro-mutex 0.7.* humble_* + - rosdistro + - libgcc >=13 + - libstdcxx >=13 + - libgcc >=13 + - numpy >=1.26.4,<2.0a0 + - python_abi 3.11.* *_cp311 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + license: BSD-3-Clause + size: 65669 + timestamp: 1753314044352 +- conda: https://prefix.dev/robostack-staging/osx-arm64/ros-humble-ros2doctor-0.18.12-np126py311h2a51a2c_13.conda + sha256: 74326fb0e7831f3b8cb75b40662d9de1ae47ea2364e3ef0b774605c6cc0789bc + md5: 78f318411f428863b59f0adc7d7d191d + depends: + - catkin_pkg + - importlib-metadata + - psutil + - python + - ros-humble-ament-index-python + - ros-humble-rclpy + - ros-humble-ros-environment + - ros-humble-ros-workspace + - ros-humble-ros2cli + - ros2-distro-mutex 0.7.* humble_* + - rosdistro + - libcxx >=18 + - __osx >=11.0 + - python_abi 3.11.* *_cp311 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + - numpy >=1.26.4,<2.0a0 + license: BSD-3-Clause + size: 65565 + timestamp: 1753314024095 +- conda: https://prefix.dev/robostack-staging/win-64/ros-humble-ros2doctor-0.18.12-np126py311hd5de103_13.conda + sha256: b19cd338cc2ab252ad3e1608bc97c73d29988f9dbc472f8b326e16428bd50792 + md5: dd3b3bba6c811183b28e48b26265b535 + depends: + - catkin_pkg + - importlib-metadata + - psutil + - python + - ros-humble-ament-index-python + - ros-humble-rclpy + - ros-humble-ros-environment + - ros-humble-ros-workspace + - ros-humble-ros2cli + - ros2-distro-mutex 0.7.* humble_* + - rosdistro + - vc >=14.3,<15 + - vc14_runtime >=14.44.35208 + - ucrt >=10.0.20348.0 + - vc >=14.3,<15 + - vc14_runtime >=14.44.35208 + - ucrt >=10.0.20348.0 + - python_abi 3.11.* *_cp311 + - numpy >=1.26.4,<2.0a0 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + license: BSD-3-Clause + size: 61848 + timestamp: 1753335137282 +- conda: https://prefix.dev/robostack-staging/linux-64/ros-humble-ros2interface-0.18.12-np126py311hbc2a38a_13.conda + sha256: 881de6ac7ad9a29dc53dd9801d237314b96373e3567c1e870a8de0cf11ea5b11 + md5: 51dc853e97541234241441dfed9a88a0 + depends: + - python + - ros-humble-ament-index-python + - ros-humble-ros-workspace + - ros-humble-ros2cli + - ros-humble-rosidl-runtime-py + - ros2-distro-mutex 0.7.* humble_* + - libgcc >=13 + - libstdcxx >=13 + - libgcc >=13 + - __glibc >=2.17,<3.0.a0 + - python_abi 3.11.* *_cp311 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + - numpy >=1.26.4,<2.0a0 + license: BSD-3-Clause + size: 44025 + timestamp: 1753313918661 +- conda: https://prefix.dev/robostack-staging/linux-aarch64/ros-humble-ros2interface-0.18.12-np126py311hbdd918e_13.conda + sha256: 2190d0040a2e0eca4907230d145d6b4dc794350ff46b25cd951e72824c9dfcdc + md5: ff1be36fd2da00c518764bf5d2571f9f + depends: + - python + - ros-humble-ament-index-python + - ros-humble-ros-workspace + - ros-humble-ros2cli + - ros-humble-rosidl-runtime-py + - ros2-distro-mutex 0.7.* humble_* + - libgcc >=13 + - libstdcxx >=13 + - libgcc >=13 + - python_abi 3.11.* *_cp311 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + - numpy >=1.26.4,<2.0a0 + license: BSD-3-Clause + size: 43819 + timestamp: 1753314033934 +- conda: https://prefix.dev/robostack-staging/osx-arm64/ros-humble-ros2interface-0.18.12-np126py311h2a51a2c_13.conda + sha256: 74cc7ce6d88d089547c1c8b1fa8e2167a62f1145ccdadcb0279f9470f3875587 + md5: abca61dad8af234732027a2f8195e2d8 + depends: + - python + - ros-humble-ament-index-python + - ros-humble-ros-workspace + - ros-humble-ros2cli + - ros-humble-rosidl-runtime-py + - ros2-distro-mutex 0.7.* humble_* + - __osx >=11.0 + - libcxx >=18 + - numpy >=1.26.4,<2.0a0 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + - python_abi 3.11.* *_cp311 + license: BSD-3-Clause + size: 43768 + timestamp: 1753314012227 +- conda: https://prefix.dev/robostack-staging/win-64/ros-humble-ros2interface-0.18.12-np126py311hd5de103_13.conda + sha256: 5aaf6321b5bb9b7459d2bbc2c7780a63ce453de9dd761e13189cc1b31d9397c2 + md5: 28828efb7c559808c4aff8536c3cafde + depends: + - python + - ros-humble-ament-index-python + - ros-humble-ros-workspace + - ros-humble-ros2cli + - ros-humble-rosidl-runtime-py + - ros2-distro-mutex 0.7.* humble_* + - vc >=14.3,<15 + - vc14_runtime >=14.44.35208 + - ucrt >=10.0.20348.0 + - vc >=14.3,<15 + - vc14_runtime >=14.44.35208 + - ucrt >=10.0.20348.0 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + - python_abi 3.11.* *_cp311 + - numpy >=1.26.4,<2.0a0 + license: BSD-3-Clause + size: 39929 + timestamp: 1753335094226 +- conda: https://prefix.dev/robostack-staging/linux-64/ros-humble-ros2launch-0.19.10-np126py311hbc2a38a_13.conda + sha256: 732b08e10826e9837d72515761d8eb332198b9f0152caa34d61395dc427d6013 + md5: 210322e7dca9cee38b1be6285b7e1c88 + depends: + - python + - ros-humble-ament-index-python + - ros-humble-launch + - ros-humble-launch-ros + - ros-humble-launch-xml + - ros-humble-launch-yaml + - ros-humble-ros-workspace + - ros-humble-ros2cli + - ros-humble-ros2pkg + - ros2-distro-mutex 0.7.* humble_* + - libstdcxx >=13 + - libgcc >=13 + - __glibc >=2.17,<3.0.a0 + - libgcc >=13 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + - numpy >=1.26.4,<2.0a0 + - python_abi 3.11.* *_cp311 + license: BSD-3-Clause + size: 44286 + timestamp: 1753314085468 +- conda: https://prefix.dev/robostack-staging/linux-aarch64/ros-humble-ros2launch-0.19.10-np126py311hbdd918e_13.conda + sha256: 9b5f289d05fdef8b5fe8c7d60b1adb45890e08c0dee6fa12bc45bd181853f0ff + md5: d1f9e26d363d31976934bed62d3fb2bf + depends: + - python + - ros-humble-ament-index-python + - ros-humble-launch + - ros-humble-launch-ros + - ros-humble-launch-xml + - ros-humble-launch-yaml + - ros-humble-ros-workspace + - ros-humble-ros2cli + - ros-humble-ros2pkg + - ros2-distro-mutex 0.7.* humble_* + - libgcc >=13 + - libstdcxx >=13 + - libgcc >=13 + - numpy >=1.26.4,<2.0a0 + - python_abi 3.11.* *_cp311 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + license: BSD-3-Clause + size: 44012 + timestamp: 1753314178169 +- conda: https://prefix.dev/robostack-staging/osx-arm64/ros-humble-ros2launch-0.19.10-np126py311h2a51a2c_13.conda + sha256: a96be0f1aa1029fbfe936c26f0e7579ca8887a4fb4cd6488aa623e396ef31d59 + md5: 43667512d17dece53853d254bb50f739 + depends: + - python + - ros-humble-ament-index-python + - ros-humble-launch + - ros-humble-launch-ros + - ros-humble-launch-xml + - ros-humble-launch-yaml + - ros-humble-ros-workspace + - ros-humble-ros2cli + - ros-humble-ros2pkg + - ros2-distro-mutex 0.7.* humble_* + - __osx >=11.0 + - libcxx >=18 + - numpy >=1.26.4,<2.0a0 + - python_abi 3.11.* *_cp311 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + license: BSD-3-Clause + size: 44088 + timestamp: 1753314201187 +- conda: https://prefix.dev/robostack-staging/win-64/ros-humble-ros2launch-0.19.10-np126py311hd5de103_13.conda + sha256: bb198e7291595b57c3743d18e9e9a3d88c62138c1fcee30c4100aa2b6af211df + md5: 49a64597fe1c6a1a6e8bdc6e40aaf793 + depends: + - python + - ros-humble-ament-index-python + - ros-humble-launch + - ros-humble-launch-ros + - ros-humble-launch-xml + - ros-humble-launch-yaml + - ros-humble-ros-workspace + - ros-humble-ros2cli + - ros-humble-ros2pkg + - ros2-distro-mutex 0.7.* humble_* + - vc >=14.3,<15 + - vc14_runtime >=14.44.35208 + - ucrt >=10.0.20348.0 + - vc >=14.3,<15 + - vc14_runtime >=14.44.35208 + - ucrt >=10.0.20348.0 + - python_abi 3.11.* *_cp311 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + - numpy >=1.26.4,<2.0a0 + license: BSD-3-Clause + size: 40783 + timestamp: 1753335566929 +- conda: https://prefix.dev/robostack-staging/linux-64/ros-humble-ros2lifecycle-0.18.12-np126py311hbc2a38a_13.conda + sha256: 2eaefb30ee00ab03148da87cb55b930a87d059c33f1ccf8ad796eb22e95cc0fe + md5: 73e55ead66f128864d9dd3d3234b12cf + depends: + - python + - ros-humble-lifecycle-msgs + - ros-humble-rclpy + - ros-humble-ros-workspace + - ros-humble-ros2cli + - ros-humble-ros2node + - ros-humble-ros2service + - ros2-distro-mutex 0.7.* humble_* + - libstdcxx >=13 + - libgcc >=13 + - __glibc >=2.17,<3.0.a0 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + - python_abi 3.11.* *_cp311 + - numpy >=1.26.4,<2.0a0 + license: BSD-3-Clause + size: 43302 + timestamp: 1753314106252 +- conda: https://prefix.dev/robostack-staging/linux-aarch64/ros-humble-ros2lifecycle-0.18.12-np126py311hbdd918e_13.conda + sha256: 30080a830b4abfecc039d7e353c41dd7acc0e5370c9ca34a22afb3587d14fae5 + md5: 584d85bc63a72f2be45558008082fdf5 + depends: + - python + - ros-humble-lifecycle-msgs + - ros-humble-rclpy + - ros-humble-ros-workspace + - ros-humble-ros2cli + - ros-humble-ros2node + - ros-humble-ros2service + - ros2-distro-mutex 0.7.* humble_* + - libstdcxx >=13 + - libgcc >=13 + - python_abi 3.11.* *_cp311 + - numpy >=1.26.4,<2.0a0 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + license: BSD-3-Clause + size: 43163 + timestamp: 1753314236288 +- conda: https://prefix.dev/robostack-staging/osx-arm64/ros-humble-ros2lifecycle-0.18.12-np126py311h2a51a2c_13.conda + sha256: b795d685d9842a2b19d6f174b74a34302105859bd0099d3d792b2cb56c55807a + md5: b751b2ea839aa56adf20ba0a0f1a3823 + depends: + - python + - ros-humble-lifecycle-msgs + - ros-humble-rclpy + - ros-humble-ros-workspace + - ros-humble-ros2cli + - ros-humble-ros2node + - ros-humble-ros2service + - ros2-distro-mutex 0.7.* humble_* + - libcxx >=18 + - __osx >=11.0 + - numpy >=1.26.4,<2.0a0 + - python_abi 3.11.* *_cp311 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + license: BSD-3-Clause + size: 43132 + timestamp: 1753314323522 +- conda: https://prefix.dev/robostack-staging/win-64/ros-humble-ros2lifecycle-0.18.12-np126py311hd5de103_13.conda + sha256: 929951b985227ff88638b5cf55bbac820cb0d975790bc004d7728b5b41f536d8 + md5: 20985fa763b86d31d7d44b288d807280 + depends: + - python + - ros-humble-lifecycle-msgs + - ros-humble-rclpy + - ros-humble-ros-workspace + - ros-humble-ros2cli + - ros-humble-ros2node + - ros-humble-ros2service + - ros2-distro-mutex 0.7.* humble_* + - vc >=14.3,<15 + - vc14_runtime >=14.44.35208 + - ucrt >=10.0.20348.0 + - vc >=14.3,<15 + - vc14_runtime >=14.44.35208 + - ucrt >=10.0.20348.0 + - numpy >=1.26.4,<2.0a0 + - python_abi 3.11.* *_cp311 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + license: BSD-3-Clause + size: 39370 + timestamp: 1753336139790 +- conda: https://prefix.dev/robostack-staging/linux-64/ros-humble-ros2multicast-0.18.12-np126py311hbc2a38a_13.conda + sha256: 63578a4275289072cdf6a27993c6f4ae677093351149b7fea96abcfe6cdd3686 + md5: bb502b9eb1bd1eccb1259bb341e4dad1 + depends: + - python + - ros-humble-ros-workspace + - ros-humble-ros2cli + - ros2-distro-mutex 0.7.* humble_* + - libgcc >=13 + - libstdcxx >=13 + - libgcc >=13 + - __glibc >=2.17,<3.0.a0 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + - numpy >=1.26.4,<2.0a0 + - python_abi 3.11.* *_cp311 + license: BSD-3-Clause + size: 35579 + timestamp: 1753313814480 +- conda: https://prefix.dev/robostack-staging/linux-aarch64/ros-humble-ros2multicast-0.18.12-np126py311hbdd918e_13.conda + sha256: 04bf8306bd8f19ce90919a249da0214dadda95ee667638aefb56e4d2d6c15507 + md5: 73e933bc467d1f4758714e08d316c8d5 + depends: + - python + - ros-humble-ros-workspace + - ros-humble-ros2cli + - ros2-distro-mutex 0.7.* humble_* + - libgcc >=13 + - libstdcxx >=13 + - libgcc >=13 + - python_abi 3.11.* *_cp311 + - numpy >=1.26.4,<2.0a0 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + license: BSD-3-Clause + size: 35414 + timestamp: 1753313925614 +- conda: https://prefix.dev/robostack-staging/osx-arm64/ros-humble-ros2multicast-0.18.12-np126py311h2a51a2c_13.conda + sha256: a8e26aa1bc51fb2d8ddb5b1b25acb48df36291c0c99f7df6fa45db916d4522b9 + md5: 6cb8e0a1a5c6b3eb5e435cdbd3252df3 + depends: + - python + - ros-humble-ros-workspace + - ros-humble-ros2cli + - ros2-distro-mutex 0.7.* humble_* + - __osx >=11.0 + - libcxx >=18 + - python_abi 3.11.* *_cp311 + - numpy >=1.26.4,<2.0a0 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + license: BSD-3-Clause + size: 35294 + timestamp: 1753313656691 +- conda: https://prefix.dev/robostack-staging/win-64/ros-humble-ros2multicast-0.18.12-np126py311hd5de103_13.conda + sha256: 69e3cfdbbf13b37190b947c3ff637cd81aa69c2882eb2c09040c7add1f388d2c + md5: e77f99251d3e5bdeffdb30d6132e4e97 + depends: + - python + - ros-humble-ros-workspace + - ros-humble-ros2cli + - ros2-distro-mutex 0.7.* humble_* + - vc >=14.3,<15 + - vc14_runtime >=14.44.35208 + - ucrt >=10.0.20348.0 + - vc >=14.3,<15 + - vc14_runtime >=14.44.35208 + - ucrt >=10.0.20348.0 + - numpy >=1.26.4,<2.0a0 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + - python_abi 3.11.* *_cp311 + license: BSD-3-Clause + size: 31634 + timestamp: 1753333546104 +- conda: https://prefix.dev/robostack-staging/linux-64/ros-humble-ros2node-0.18.12-np126py311hbc2a38a_13.conda + sha256: 19080f36ab9f3cbd6bdad4bf61822416899e02c9df9d58e36ae57f123a8a3f03 + md5: 67fe6d42a53206c6d81880625b1419ff + depends: + - python + - ros-humble-ros-workspace + - ros-humble-ros2cli + - ros2-distro-mutex 0.7.* humble_* + - __glibc >=2.17,<3.0.a0 + - libstdcxx >=13 + - libgcc >=13 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + - numpy >=1.26.4,<2.0a0 + - python_abi 3.11.* *_cp311 + license: BSD-3-Clause + size: 40594 + timestamp: 1753313896594 +- conda: https://prefix.dev/robostack-staging/linux-aarch64/ros-humble-ros2node-0.18.12-np126py311hbdd918e_13.conda + sha256: 7cea8fc84cfecafaab184e56470985b12110dfebfde67433bf10986aca6ed4dd + md5: b6450057d68d1fe692ead4f0f78b45a4 + depends: + - python + - ros-humble-ros-workspace + - ros-humble-ros2cli + - ros2-distro-mutex 0.7.* humble_* + - libgcc >=13 + - libstdcxx >=13 + - libgcc >=13 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + - python_abi 3.11.* *_cp311 + - numpy >=1.26.4,<2.0a0 + license: BSD-3-Clause + size: 40411 + timestamp: 1753314024623 +- conda: https://prefix.dev/robostack-staging/osx-arm64/ros-humble-ros2node-0.18.12-np126py311h2a51a2c_13.conda + sha256: 903be33f2ad3ac0b33ae91170bc9b247206333218459757eba2f87db6e951844 + md5: 4f6e9f068aeed7523a203f68179d3939 + depends: + - python + - ros-humble-ros-workspace + - ros-humble-ros2cli + - ros2-distro-mutex 0.7.* humble_* + - libcxx >=18 + - __osx >=11.0 + - numpy >=1.26.4,<2.0a0 + - python_abi 3.11.* *_cp311 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + license: BSD-3-Clause + size: 40303 + timestamp: 1753314107427 +- conda: https://prefix.dev/robostack-staging/win-64/ros-humble-ros2node-0.18.12-np126py311hd5de103_13.conda + sha256: 392cdf497b86c8ccb4c7d627d37f0ff3794fe347117c5cb0ddbc1adf7125a439 + md5: 20189199ec2a1d90975dc0b8072aab81 + depends: + - python + - ros-humble-ros-workspace + - ros-humble-ros2cli + - ros2-distro-mutex 0.7.* humble_* + - vc >=14.3,<15 + - vc14_runtime >=14.44.35208 + - ucrt >=10.0.20348.0 + - vc >=14.3,<15 + - vc14_runtime >=14.44.35208 + - ucrt >=10.0.20348.0 + - python_abi 3.11.* *_cp311 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + - numpy >=1.26.4,<2.0a0 + license: BSD-3-Clause + size: 36723 + timestamp: 1753334594074 +- conda: https://prefix.dev/robostack-staging/linux-64/ros-humble-ros2param-0.18.12-np126py311hbc2a38a_13.conda + sha256: 1bf57cbc7bddcee315882707cdceeaf77967b053000192b16f3f332a53a005a7 + md5: d9747169c0c86cc8aa59c72422ffb503 + depends: + - python + - ros-humble-rcl-interfaces + - ros-humble-rclpy + - ros-humble-ros-workspace + - ros-humble-ros2cli + - ros-humble-ros2node + - ros-humble-ros2service + - ros2-distro-mutex 0.7.* humble_* + - libgcc >=13 + - __glibc >=2.17,<3.0.a0 + - libstdcxx >=13 + - libgcc >=13 + - numpy >=1.26.4,<2.0a0 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + - python_abi 3.11.* *_cp311 + license: BSD-3-Clause + size: 52463 + timestamp: 1753314107773 +- conda: https://prefix.dev/robostack-staging/linux-aarch64/ros-humble-ros2param-0.18.12-np126py311hbdd918e_13.conda + sha256: 993d4c6d50ac30ccdd9f14e076844cf65270575b03aa586cd9867ee5b36ec44f + md5: dc9a582ed8a638fe74b1151c9d5bb607 + depends: + - python + - ros-humble-rcl-interfaces + - ros-humble-rclpy + - ros-humble-ros-workspace + - ros-humble-ros2cli + - ros-humble-ros2node + - ros-humble-ros2service + - ros2-distro-mutex 0.7.* humble_* + - libstdcxx >=13 + - libgcc >=13 + - numpy >=1.26.4,<2.0a0 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + - python_abi 3.11.* *_cp311 + license: BSD-3-Clause + size: 52341 + timestamp: 1753314204364 +- conda: https://prefix.dev/robostack-staging/osx-arm64/ros-humble-ros2param-0.18.12-np126py311h2a51a2c_13.conda + sha256: 47977e4b912bd27211557fd26d4c1a7e3a9f55b7530ebcf7b2e2f0dc2b04a9f2 + md5: 0e61d24dc8ef6821bee714c3911d3393 + depends: + - python + - ros-humble-rcl-interfaces + - ros-humble-rclpy + - ros-humble-ros-workspace + - ros-humble-ros2cli + - ros-humble-ros2node + - ros-humble-ros2service + - ros2-distro-mutex 0.7.* humble_* + - __osx >=11.0 + - libcxx >=18 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + - numpy >=1.26.4,<2.0a0 + - python_abi 3.11.* *_cp311 + license: BSD-3-Clause + size: 52216 + timestamp: 1753314224541 +- conda: https://prefix.dev/robostack-staging/win-64/ros-humble-ros2param-0.18.12-np126py311hd5de103_13.conda + sha256: 6917a21906308b1c6cd34097c31cde2a3634d6cd2b81d24332a86d8f304d79ab + md5: 27b8c9fe1a76dc4342f59abfe9659304 + depends: + - python + - ros-humble-rcl-interfaces + - ros-humble-rclpy + - ros-humble-ros-workspace + - ros-humble-ros2cli + - ros-humble-ros2node + - ros-humble-ros2service + - ros2-distro-mutex 0.7.* humble_* + - vc >=14.3,<15 + - vc14_runtime >=14.44.35208 + - ucrt >=10.0.20348.0 + - vc >=14.3,<15 + - vc14_runtime >=14.44.35208 + - ucrt >=10.0.20348.0 + - numpy >=1.26.4,<2.0a0 + - python_abi 3.11.* *_cp311 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + license: BSD-3-Clause + size: 48564 + timestamp: 1753335949802 +- conda: https://prefix.dev/robostack-staging/linux-64/ros-humble-ros2pkg-0.18.12-np126py311hbc2a38a_13.conda + sha256: 35e4a7ef2c1503fb27c28f3ea7e9c87dfb05657baaf249ec53741b27e02ed508 + md5: 9167c75f52d3877016c3a84979a2411e + depends: + - catkin_pkg + - empy + - importlib_resources + - python + - ros-humble-ament-copyright + - ros-humble-ament-index-python + - ros-humble-ros-workspace + - ros-humble-ros2cli + - ros2-distro-mutex 0.7.* humble_* + - libgcc >=13 + - libstdcxx >=13 + - libgcc >=13 + - __glibc >=2.17,<3.0.a0 + - python_abi 3.11.* *_cp311 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + - numpy >=1.26.4,<2.0a0 + license: BSD-3-Clause + size: 55983 + timestamp: 1753313881833 +- conda: https://prefix.dev/robostack-staging/linux-aarch64/ros-humble-ros2pkg-0.18.12-np126py311hbdd918e_13.conda + sha256: 24a152b6f480bddaedb38466c186a6b277b2c5bc46af4556614bb123d4622b7c + md5: 23d6b10870f57fb84fec65d0e6426827 + depends: + - catkin_pkg + - empy + - importlib_resources + - python + - ros-humble-ament-copyright + - ros-humble-ament-index-python + - ros-humble-ros-workspace + - ros-humble-ros2cli + - ros2-distro-mutex 0.7.* humble_* + - libstdcxx >=13 + - libgcc >=13 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + - numpy >=1.26.4,<2.0a0 + - python_abi 3.11.* *_cp311 + license: BSD-3-Clause + size: 55907 + timestamp: 1753314005774 +- conda: https://prefix.dev/robostack-staging/osx-arm64/ros-humble-ros2pkg-0.18.12-np126py311h2a51a2c_13.conda + sha256: aab4ad67fd0c481039dec60026594030b532c00194bb09183f9112b0cd4fb063 + md5: bb76300760b0aa4911909c557fdf4a2f + depends: + - catkin_pkg + - empy + - importlib_resources + - python + - ros-humble-ament-copyright + - ros-humble-ament-index-python + - ros-humble-ros-workspace + - ros-humble-ros2cli + - ros2-distro-mutex 0.7.* humble_* + - libcxx >=18 + - __osx >=11.0 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + - python_abi 3.11.* *_cp311 + - numpy >=1.26.4,<2.0a0 + license: BSD-3-Clause + size: 55779 + timestamp: 1753314085326 +- conda: https://prefix.dev/robostack-staging/win-64/ros-humble-ros2pkg-0.18.12-np126py311hd5de103_13.conda + sha256: 65d7a529680d8c0b67f622b18f29035f0dbf397175d2d452f58f2cccd383835a + md5: 7545f6013362af37519323b6e7592437 + depends: + - catkin_pkg + - empy + - importlib_resources + - python + - ros-humble-ament-copyright + - ros-humble-ament-index-python + - ros-humble-ros-workspace + - ros-humble-ros2cli + - ros2-distro-mutex 0.7.* humble_* + - vc >=14.3,<15 + - vc14_runtime >=14.44.35208 + - ucrt >=10.0.20348.0 + - vc >=14.3,<15 + - vc14_runtime >=14.44.35208 + - ucrt >=10.0.20348.0 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + - python_abi 3.11.* *_cp311 + - numpy >=1.26.4,<2.0a0 + license: BSD-3-Clause + size: 51134 + timestamp: 1753334490814 +- conda: https://prefix.dev/robostack-staging/linux-64/ros-humble-ros2run-0.18.12-np126py311hbc2a38a_13.conda + sha256: 2fde77062c092d3297a31f9e8fd9260b119caf7cdf28bc463f38e40747cf500d + md5: 75c9379dd6a5a6b3fc5d27a6fe023468 + depends: + - python + - ros-humble-ros-workspace + - ros-humble-ros2cli + - ros-humble-ros2pkg + - ros2-distro-mutex 0.7.* humble_* + - libgcc >=13 + - libstdcxx >=13 + - libgcc >=13 + - __glibc >=2.17,<3.0.a0 + - numpy >=1.26.4,<2.0a0 + - python_abi 3.11.* *_cp311 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + license: BSD-3-Clause + size: 35468 + timestamp: 1753314100085 +- conda: https://prefix.dev/robostack-staging/linux-aarch64/ros-humble-ros2run-0.18.12-np126py311hbdd918e_13.conda + sha256: 0e5ec173a0371f88918a5d08c230712bb6711c6a193e21017d7559c0c42fa4e0 + md5: 0c850550e10e69d914ba2b48680ebbb2 + depends: + - python + - ros-humble-ros-workspace + - ros-humble-ros2cli + - ros-humble-ros2pkg + - ros2-distro-mutex 0.7.* humble_* + - libstdcxx >=13 + - libgcc >=13 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + - python_abi 3.11.* *_cp311 + - numpy >=1.26.4,<2.0a0 + license: BSD-3-Clause + size: 35274 + timestamp: 1753314196526 +- conda: https://prefix.dev/robostack-staging/osx-arm64/ros-humble-ros2run-0.18.12-np126py311h2a51a2c_13.conda + sha256: ca4aeccc0b63411c41e7029e9a5f3774a7b16068fcfbb50e30710589eb81362a + md5: b84030fb33709be4239e35e7b97f465f + depends: + - python + - ros-humble-ros-workspace + - ros-humble-ros2cli + - ros-humble-ros2pkg + - ros2-distro-mutex 0.7.* humble_* + - __osx >=11.0 + - libcxx >=18 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + - python_abi 3.11.* *_cp311 + - numpy >=1.26.4,<2.0a0 + license: BSD-3-Clause + size: 35196 + timestamp: 1753314214127 +- conda: https://prefix.dev/robostack-staging/win-64/ros-humble-ros2run-0.18.12-np126py311hd5de103_13.conda + sha256: 11b99249514e721248e3d24e2daac3cee2847f3aef9599e6e88f6843529227bc + md5: 9582dfb14d767b4ec858a00222497fd4 + depends: + - python + - ros-humble-ros-workspace + - ros-humble-ros2cli + - ros-humble-ros2pkg + - ros2-distro-mutex 0.7.* humble_* + - vc >=14.3,<15 + - vc14_runtime >=14.44.35208 + - ucrt >=10.0.20348.0 + - vc >=14.3,<15 + - vc14_runtime >=14.44.35208 + - ucrt >=10.0.20348.0 + - python_abi 3.11.* *_cp311 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + - numpy >=1.26.4,<2.0a0 + license: BSD-3-Clause + size: 31671 + timestamp: 1753335903605 +- conda: https://prefix.dev/robostack-staging/linux-64/ros-humble-ros2service-0.18.12-np126py311hbc2a38a_13.conda + sha256: 57ee3f2c1a0f4b63817a7ea8b4503270b8e3dee2f536d9f7bc2e3e1bdcf2c17a + md5: af3e0c400a1541304e1313125f2847cb + depends: + - python + - pyyaml + - ros-humble-rclpy + - ros-humble-ros-workspace + - ros-humble-ros2cli + - ros-humble-rosidl-runtime-py + - ros2-distro-mutex 0.7.* humble_* + - __glibc >=2.17,<3.0.a0 + - libstdcxx >=13 + - libgcc >=13 + - python_abi 3.11.* *_cp311 + - numpy >=1.26.4,<2.0a0 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + license: BSD-3-Clause + size: 42254 + timestamp: 1753313890233 +- conda: https://prefix.dev/robostack-staging/linux-aarch64/ros-humble-ros2service-0.18.12-np126py311hbdd918e_13.conda + sha256: bcc7cf65d915a1a6421c841ebacb3d3e2b0f85ffb34adda397e045fcb6441a43 + md5: 878add51ce70aee439d645cef7df4889 + depends: + - python + - pyyaml + - ros-humble-rclpy + - ros-humble-ros-workspace + - ros-humble-ros2cli + - ros-humble-rosidl-runtime-py + - ros2-distro-mutex 0.7.* humble_* + - libstdcxx >=13 + - libgcc >=13 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + - python_abi 3.11.* *_cp311 + - numpy >=1.26.4,<2.0a0 + license: BSD-3-Clause + size: 42083 + timestamp: 1753314017397 +- conda: https://prefix.dev/robostack-staging/osx-arm64/ros-humble-ros2service-0.18.12-np126py311h2a51a2c_13.conda + sha256: 567ca4d941f7b5035f05d6f77734007f586dedf3d2d78145920c00486725dac0 + md5: f21838e92c99c24205a32a8a0551842e + depends: + - python + - pyyaml + - ros-humble-rclpy + - ros-humble-ros-workspace + - ros-humble-ros2cli + - ros-humble-rosidl-runtime-py + - ros2-distro-mutex 0.7.* humble_* + - libcxx >=18 + - __osx >=11.0 + - numpy >=1.26.4,<2.0a0 + - python_abi 3.11.* *_cp311 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + license: BSD-3-Clause + size: 41984 + timestamp: 1753314098292 +- conda: https://prefix.dev/robostack-staging/win-64/ros-humble-ros2service-0.18.12-np126py311hd5de103_13.conda + sha256: 859b6185095eaf0b49e9cef3c9e132c4151329571cbf2800bb74fcba2c4e814a + md5: 6d32c727fb3937902e13f4e93ec9e98d + depends: + - python + - pyyaml + - ros-humble-rclpy + - ros-humble-ros-workspace + - ros-humble-ros2cli + - ros-humble-rosidl-runtime-py + - ros2-distro-mutex 0.7.* humble_* + - vc >=14.3,<15 + - vc14_runtime >=14.44.35208 + - ucrt >=10.0.20348.0 + - vc >=14.3,<15 + - vc14_runtime >=14.44.35208 + - ucrt >=10.0.20348.0 + - numpy >=1.26.4,<2.0a0 + - python_abi 3.11.* *_cp311 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + license: BSD-3-Clause + size: 38237 + timestamp: 1753334542685 +- conda: https://prefix.dev/robostack-staging/linux-64/ros-humble-ros2topic-0.18.12-np126py311hbc2a38a_13.conda + sha256: b3f2577164f4bb451af4a32eba67cac0dda7fe88be2ad88c8dca9c1cd142d2f2 + md5: 1d286413f84955c35e9c71851980139e + depends: + - numpy + - python + - pyyaml + - ros-humble-rclpy + - ros-humble-ros-workspace + - ros-humble-ros2cli + - ros-humble-rosidl-runtime-py + - ros2-distro-mutex 0.7.* humble_* + - __glibc >=2.17,<3.0.a0 + - libgcc >=13 + - libstdcxx >=13 + - libgcc >=13 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + - numpy >=1.26.4,<2.0a0 + - python_abi 3.11.* *_cp311 + license: BSD-3-Clause + size: 72909 + timestamp: 1753313853191 +- conda: https://prefix.dev/robostack-staging/linux-aarch64/ros-humble-ros2topic-0.18.12-np126py311hbdd918e_13.conda + sha256: ae087d4cbc791aa3a8e00983b34d6aa5b558056c0a102a69f374ced8e9f15a17 + md5: c411012f9cc3474ef48845e38369aab0 + depends: + - numpy + - python + - pyyaml + - ros-humble-rclpy + - ros-humble-ros-workspace + - ros-humble-ros2cli + - ros-humble-rosidl-runtime-py + - ros2-distro-mutex 0.7.* humble_* + - libstdcxx >=13 + - libgcc >=13 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + - numpy >=1.26.4,<2.0a0 + - python_abi 3.11.* *_cp311 + license: BSD-3-Clause + size: 72736 + timestamp: 1753313961202 +- conda: https://prefix.dev/robostack-staging/osx-arm64/ros-humble-ros2topic-0.18.12-np126py311h2a51a2c_13.conda + sha256: 8868e9af70819d88756289f526ba6eb7e986a0545c3cbc29acf14b5e0607584d + md5: 9075e7f3e71a0834e33d43ed13cf8c82 + depends: + - numpy + - python + - pyyaml + - ros-humble-rclpy + - ros-humble-ros-workspace + - ros-humble-ros2cli + - ros-humble-rosidl-runtime-py + - ros2-distro-mutex 0.7.* humble_* + - libcxx >=18 + - __osx >=11.0 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + - numpy >=1.26.4,<2.0a0 + - python_abi 3.11.* *_cp311 + license: BSD-3-Clause + size: 72642 + timestamp: 1753313837440 +- conda: https://prefix.dev/robostack-staging/win-64/ros-humble-ros2topic-0.18.12-np126py311hd5de103_13.conda + sha256: d15e040b02ec0638cc04b6a31ac26de966702c4e46a7587e76aad7469766deae + md5: de487c5d8b6eb3f756dc3c8138c83838 + depends: + - numpy + - python + - pyyaml + - ros-humble-rclpy + - ros-humble-ros-workspace + - ros-humble-ros2cli + - ros-humble-rosidl-runtime-py + - ros2-distro-mutex 0.7.* humble_* + - vc >=14.3,<15 + - vc14_runtime >=14.44.35208 + - ucrt >=10.0.20348.0 + - vc >=14.3,<15 + - vc14_runtime >=14.44.35208 + - ucrt >=10.0.20348.0 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + - python_abi 3.11.* *_cp311 + - numpy >=1.26.4,<2.0a0 + license: BSD-3-Clause + size: 68934 + timestamp: 1753334229820 +- conda: https://prefix.dev/robostack-staging/linux-64/ros-humble-rosbag2-0.15.14-np126py311hbc2a38a_13.conda + sha256: 438871b171edac14e410089965199ac36808e63df63150a659ace05b8a885e3f + md5: 0262bd775c85e06624af91289a7de68a + depends: + - python + - ros-humble-ros-workspace + - ros-humble-ros2bag + - ros-humble-rosbag2-compression + - ros-humble-rosbag2-compression-zstd + - ros-humble-rosbag2-cpp + - ros-humble-rosbag2-py + - ros-humble-rosbag2-storage + - ros-humble-rosbag2-storage-default-plugins + - ros-humble-rosbag2-transport + - ros-humble-shared-queues-vendor + - ros-humble-sqlite3-vendor + - ros2-distro-mutex 0.7.* humble_* + - libstdcxx >=13 + - libgcc >=13 + - __glibc >=2.17,<3.0.a0 + - libgcc >=13 + - python_abi 3.11.* *_cp311 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + - numpy >=1.26.4,<2.0a0 + license: BSD-3-Clause + size: 31567 + timestamp: 1753316945405 +- conda: https://prefix.dev/robostack-staging/linux-aarch64/ros-humble-rosbag2-0.15.14-np126py311hbdd918e_13.conda + sha256: 621768c5656c8650f91b15d5337530a6af35469db25a63884140b265ef6edf95 + md5: 3dc4306b5f12bdd846caeff876e685f2 + depends: + - python + - ros-humble-ros-workspace + - ros-humble-ros2bag + - ros-humble-rosbag2-compression + - ros-humble-rosbag2-compression-zstd + - ros-humble-rosbag2-cpp + - ros-humble-rosbag2-py + - ros-humble-rosbag2-storage + - ros-humble-rosbag2-storage-default-plugins + - ros-humble-rosbag2-transport + - ros-humble-shared-queues-vendor + - ros-humble-sqlite3-vendor + - ros2-distro-mutex 0.7.* humble_* + - libgcc >=13 + - libstdcxx >=13 + - libgcc >=13 + - python_abi 3.11.* *_cp311 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + - numpy >=1.26.4,<2.0a0 + license: BSD-3-Clause + size: 31370 + timestamp: 1753335748121 +- conda: https://prefix.dev/robostack-staging/osx-arm64/ros-humble-rosbag2-0.15.14-np126py311h2a51a2c_13.conda + sha256: 6e413d0a6b91329ed91a1d7435fff025ebb0d9f9277955fcd21ef4f6effee07a + md5: 067407f127e03eeb0ae198d176432cd3 + depends: + - python + - ros-humble-ros-workspace + - ros-humble-ros2bag + - ros-humble-rosbag2-compression + - ros-humble-rosbag2-compression-zstd + - ros-humble-rosbag2-cpp + - ros-humble-rosbag2-py + - ros-humble-rosbag2-storage + - ros-humble-rosbag2-storage-default-plugins + - ros-humble-rosbag2-transport + - ros-humble-shared-queues-vendor + - ros-humble-sqlite3-vendor + - ros2-distro-mutex 0.7.* humble_* + - __osx >=11.0 + - libcxx >=18 + - python_abi 3.11.* *_cp311 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + - numpy >=1.26.4,<2.0a0 + license: BSD-3-Clause + size: 31468 + timestamp: 1753319898858 +- conda: https://prefix.dev/robostack-staging/win-64/ros-humble-rosbag2-0.15.14-np126py311hd5de103_13.conda + sha256: 439987313096d4a162ad5a260987cc354e7794dee086f8f916758c9a83cd0b8b + md5: 408d54534da4e6f59e73d86167d4e6b1 + depends: + - python + - ros-humble-ros-workspace + - ros-humble-ros2bag + - ros-humble-rosbag2-compression + - ros-humble-rosbag2-compression-zstd + - ros-humble-rosbag2-cpp + - ros-humble-rosbag2-py + - ros-humble-rosbag2-storage + - ros-humble-rosbag2-storage-default-plugins + - ros-humble-rosbag2-transport + - ros-humble-shared-queues-vendor + - ros-humble-sqlite3-vendor + - ros2-distro-mutex 0.7.* humble_* + - vc >=14.3,<15 + - vc14_runtime >=14.44.35208 + - ucrt >=10.0.20348.0 + - vc >=14.3,<15 + - vc14_runtime >=14.44.35208 + - ucrt >=10.0.20348.0 + - numpy >=1.26.4,<2.0a0 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + - python_abi 3.11.* *_cp311 + license: BSD-3-Clause + size: 28120 + timestamp: 1753352750042 +- conda: https://prefix.dev/robostack-staging/linux-64/ros-humble-rosbag2-compression-0.15.14-np126py311hbc2a38a_13.conda + sha256: 2c6dd2cd465c32ddebb3862ab7b727b431e7cbf779cc4dfe658dd3fdc7070e50 + md5: c0eaed39ca956b468ec8a757ec3dd652 + depends: + - python + - ros-humble-rcpputils + - ros-humble-rcutils + - ros-humble-ros-workspace + - ros-humble-rosbag2-cpp + - ros-humble-rosbag2-storage + - ros2-distro-mutex 0.7.* humble_* + - libgcc >=13 + - libstdcxx >=13 + - libgcc >=13 + - __glibc >=2.17,<3.0.a0 + - python_abi 3.11.* *_cp311 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + - numpy >=1.26.4,<2.0a0 + license: BSD-3-Clause + size: 192875 + timestamp: 1753314330892 +- conda: https://prefix.dev/robostack-staging/linux-aarch64/ros-humble-rosbag2-compression-0.15.14-np126py311hbdd918e_13.conda + sha256: f1f8191eda6c33c9939438276befeb39fb4dee99fbb639e2f27ad969c6366751 + md5: 5b3485855e6c1595e9050d85fc444862 + depends: + - python + - ros-humble-rcpputils + - ros-humble-rcutils + - ros-humble-ros-workspace + - ros-humble-rosbag2-cpp + - ros-humble-rosbag2-storage + - ros2-distro-mutex 0.7.* humble_* + - libgcc >=13 + - libstdcxx >=13 + - libgcc >=13 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + - numpy >=1.26.4,<2.0a0 + - python_abi 3.11.* *_cp311 + license: BSD-3-Clause + size: 191735 + timestamp: 1753314393625 +- conda: https://prefix.dev/robostack-staging/osx-arm64/ros-humble-rosbag2-compression-0.15.14-np126py311h2a51a2c_13.conda + sha256: 4e7c31a28cd3b46f121f60f77df0d81bea3ea3371aa5be642de05833ffd7aad5 + md5: f6e56089657899774dbb64114679052d + depends: + - python + - ros-humble-rcpputils + - ros-humble-rcutils + - ros-humble-ros-workspace + - ros-humble-rosbag2-cpp + - ros-humble-rosbag2-storage + - ros2-distro-mutex 0.7.* humble_* + - libcxx >=18 + - __osx >=11.0 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + - python_abi 3.11.* *_cp311 + - numpy >=1.26.4,<2.0a0 + license: BSD-3-Clause + size: 156092 + timestamp: 1753314731007 +- conda: https://prefix.dev/robostack-staging/win-64/ros-humble-rosbag2-compression-0.15.14-np126py311hd5de103_13.conda + sha256: b9046fae6922797fe05a4feaaa9ba76bfc4f2c123e1e329fe74313b484c2a823 + md5: f6b91ed0ce6f9c36d0eca434fbffe40e + depends: + - python + - ros-humble-rcpputils + - ros-humble-rcutils + - ros-humble-ros-workspace + - ros-humble-rosbag2-cpp + - ros-humble-rosbag2-storage + - ros2-distro-mutex 0.7.* humble_* + - vc >=14.3,<15 + - vc14_runtime >=14.44.35208 + - ucrt >=10.0.20348.0 + - vc >=14.3,<15 + - vc14_runtime >=14.44.35208 + - ucrt >=10.0.20348.0 + - python_abi 3.11.* *_cp311 + - numpy >=1.26.4,<2.0a0 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + license: BSD-3-Clause + size: 146158 + timestamp: 1753337932899 +- conda: https://prefix.dev/robostack-staging/linux-64/ros-humble-rosbag2-compression-zstd-0.15.14-np126py311hbc2a38a_13.conda + sha256: d35f359e9b6b595dcf9967b23b9c5bc4d8124c9da9b9f12e0ef9c48509765567 + md5: c63f9eadf7cf5f56b92ce45e833c5df3 + depends: + - python + - ros-humble-pluginlib + - ros-humble-rcpputils + - ros-humble-rcutils + - ros-humble-ros-workspace + - ros-humble-rosbag2-compression + - ros-humble-zstd-vendor + - ros2-distro-mutex 0.7.* humble_* + - libgcc >=13 + - __glibc >=2.17,<3.0.a0 + - libstdcxx >=13 + - libgcc >=13 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + - numpy >=1.26.4,<2.0a0 + - python_abi 3.11.* *_cp311 + license: BSD-3-Clause + size: 64183 + timestamp: 1753314703960 +- conda: https://prefix.dev/robostack-staging/linux-aarch64/ros-humble-rosbag2-compression-zstd-0.15.14-np126py311hbdd918e_13.conda + sha256: 4a5dfc8bc1fc60da9cabaab1b139b9aa7e3c705910d2f2ef40378ce85db89081 + md5: df701118e95608d7f8788f30f87aaeb9 + depends: + - python + - ros-humble-pluginlib + - ros-humble-rcpputils + - ros-humble-rcutils + - ros-humble-ros-workspace + - ros-humble-rosbag2-compression + - ros-humble-zstd-vendor + - ros2-distro-mutex 0.7.* humble_* + - libgcc >=13 + - libstdcxx >=13 + - libgcc >=13 + - numpy >=1.26.4,<2.0a0 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + - python_abi 3.11.* *_cp311 + license: BSD-3-Clause + size: 62714 + timestamp: 1753314728956 +- conda: https://prefix.dev/robostack-staging/osx-arm64/ros-humble-rosbag2-compression-zstd-0.15.14-np126py311h2a51a2c_13.conda + sha256: 29fbea4d4da99dc2926f0107bc53f25312492ae7513a2849bfc843b52090e107 + md5: 8444ced5a4c9846a4bdd69260df90688 + depends: + - python + - ros-humble-pluginlib + - ros-humble-rcpputils + - ros-humble-rcutils + - ros-humble-ros-workspace + - ros-humble-rosbag2-compression + - ros-humble-zstd-vendor + - ros2-distro-mutex 0.7.* humble_* + - libcxx >=18 + - __osx >=11.0 + - python_abi 3.11.* *_cp311 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + - numpy >=1.26.4,<2.0a0 + license: BSD-3-Clause + size: 62894 + timestamp: 1753316823900 +- conda: https://prefix.dev/robostack-staging/win-64/ros-humble-rosbag2-compression-zstd-0.15.14-np126py311hd5de103_13.conda + sha256: 8daef4f957d5156d59d808f19b65f0a982e658bab6dfc1d1204ae9e55860d558 + md5: de3f9fbf5094e1df06e92acb9033b8d7 + depends: + - python + - ros-humble-pluginlib + - ros-humble-rcpputils + - ros-humble-rcutils + - ros-humble-ros-workspace + - ros-humble-rosbag2-compression + - ros-humble-zstd-vendor + - ros2-distro-mutex 0.7.* humble_* + - vc >=14.3,<15 + - vc14_runtime >=14.44.35208 + - ucrt >=10.0.20348.0 + - vc >=14.3,<15 + - vc14_runtime >=14.44.35208 + - ucrt >=10.0.20348.0 + - numpy >=1.26.4,<2.0a0 + - python_abi 3.11.* *_cp311 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + license: BSD-3-Clause + size: 63391 + timestamp: 1753339330453 +- conda: https://prefix.dev/robostack-staging/linux-64/ros-humble-rosbag2-cpp-0.15.14-np126py311hbc2a38a_13.conda + sha256: 98b2bfebeb4543741905d2bfd8048bdcda44fd225c2979ef17029277378c72c0 + md5: 11e41379c51afaad3f724800b763f046 + depends: + - python + - ros-humble-ament-index-cpp + - ros-humble-pluginlib + - ros-humble-rclcpp + - ros-humble-rcpputils + - ros-humble-rcutils + - ros-humble-rmw + - ros-humble-rmw-implementation + - ros-humble-ros-workspace + - ros-humble-rosbag2-storage + - ros-humble-rosidl-runtime-c + - ros-humble-rosidl-runtime-cpp + - ros-humble-rosidl-typesupport-cpp + - ros-humble-rosidl-typesupport-introspection-cpp + - ros-humble-shared-queues-vendor + - ros2-distro-mutex 0.7.* humble_* + - libstdcxx >=13 + - libgcc >=13 + - __glibc >=2.17,<3.0.a0 + - libgcc >=13 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + - python_abi 3.11.* *_cp311 + - numpy >=1.26.4,<2.0a0 + license: BSD-3-Clause + size: 293996 + timestamp: 1753314066589 +- conda: https://prefix.dev/robostack-staging/linux-aarch64/ros-humble-rosbag2-cpp-0.15.14-np126py311hbdd918e_13.conda + sha256: 7180968362cabe2a31fab8bb470deeced67d0e287fcee6dbb81d308294be0543 + md5: 3913042d3e8d6161bb3e3f568acb31e7 + depends: + - python + - ros-humble-ament-index-cpp + - ros-humble-pluginlib + - ros-humble-rclcpp + - ros-humble-rcpputils + - ros-humble-rcutils + - ros-humble-rmw + - ros-humble-rmw-implementation + - ros-humble-ros-workspace + - ros-humble-rosbag2-storage + - ros-humble-rosidl-runtime-c + - ros-humble-rosidl-runtime-cpp + - ros-humble-rosidl-typesupport-cpp + - ros-humble-rosidl-typesupport-introspection-cpp + - ros-humble-shared-queues-vendor + - ros2-distro-mutex 0.7.* humble_* + - libstdcxx >=13 + - libgcc >=13 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + - numpy >=1.26.4,<2.0a0 + - python_abi 3.11.* *_cp311 + license: BSD-3-Clause + size: 289837 + timestamp: 1753314163957 +- conda: https://prefix.dev/robostack-staging/osx-arm64/ros-humble-rosbag2-cpp-0.15.14-np126py311h2a51a2c_13.conda + sha256: 0fcc35680fd5bb0d176c2ff76520efef580982d02cbf91fef7972f68e57d90f8 + md5: 788e126c10b1750bccb71d5fecb09ad2 + depends: + - python + - ros-humble-ament-index-cpp + - ros-humble-pluginlib + - ros-humble-rclcpp + - ros-humble-rcpputils + - ros-humble-rcutils + - ros-humble-rmw + - ros-humble-rmw-implementation + - ros-humble-ros-workspace + - ros-humble-rosbag2-storage + - ros-humble-rosidl-runtime-c + - ros-humble-rosidl-runtime-cpp + - ros-humble-rosidl-typesupport-cpp + - ros-humble-rosidl-typesupport-introspection-cpp + - ros-humble-shared-queues-vendor + - ros2-distro-mutex 0.7.* humble_* + - libcxx >=18 + - __osx >=11.0 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + - python_abi 3.11.* *_cp311 + - numpy >=1.26.4,<2.0a0 + license: BSD-3-Clause + size: 232123 + timestamp: 1753314176438 +- conda: https://prefix.dev/robostack-staging/win-64/ros-humble-rosbag2-cpp-0.15.14-np126py311hd5de103_13.conda + sha256: 34eb45c13c4691a28d5e1131c1f67d0df4edb1992bb240ac5d4b568b260bb6f4 + md5: 0d1a498a0a7374aeb4f047b47bf5de0f + depends: + - python + - ros-humble-ament-index-cpp + - ros-humble-pluginlib + - ros-humble-rclcpp + - ros-humble-rcpputils + - ros-humble-rcutils + - ros-humble-rmw + - ros-humble-rmw-implementation + - ros-humble-ros-workspace + - ros-humble-rosbag2-storage + - ros-humble-rosidl-runtime-c + - ros-humble-rosidl-runtime-cpp + - ros-humble-rosidl-typesupport-cpp + - ros-humble-rosidl-typesupport-introspection-cpp + - ros-humble-shared-queues-vendor + - ros2-distro-mutex 0.7.* humble_* + - vc >=14.3,<15 + - vc14_runtime >=14.44.35208 + - ucrt >=10.0.20348.0 + - vc >=14.3,<15 + - vc14_runtime >=14.44.35208 + - ucrt >=10.0.20348.0 + - python_abi 3.11.* *_cp311 + - numpy >=1.26.4,<2.0a0 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + license: BSD-3-Clause + size: 223190 + timestamp: 1753335782847 +- conda: https://prefix.dev/robostack-staging/linux-64/ros-humble-rosbag2-interfaces-0.15.14-np126py311hbc2a38a_13.conda + sha256: bae1f56516a0603fdad563165c1f9c0d2eb0c61c28110254611a35c496623574 + md5: adecb0ee1ead3eab53a3bd8940aab5e3 + depends: + - python + - ros-humble-builtin-interfaces + - ros-humble-ros-workspace + - ros-humble-rosidl-default-runtime + - ros2-distro-mutex 0.7.* humble_* + - libstdcxx >=13 + - libgcc >=13 + - __glibc >=2.17,<3.0.a0 + - libgcc >=13 + - python_abi 3.11.* *_cp311 + - numpy >=1.26.4,<2.0a0 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + license: BSD-3-Clause + size: 207038 + timestamp: 1753311963901 +- conda: https://prefix.dev/robostack-staging/linux-aarch64/ros-humble-rosbag2-interfaces-0.15.14-np126py311hbdd918e_13.conda + sha256: 4ede490b9dda3cd9dab56045257418f7943c9d9ab7ce996b7c5a799b70fba1a6 + md5: 74983e9f703e2fe5296d87366b5c059d + depends: + - python + - ros-humble-builtin-interfaces + - ros-humble-ros-workspace + - ros-humble-rosidl-default-runtime + - ros2-distro-mutex 0.7.* humble_* + - libstdcxx >=13 + - libgcc >=13 + - python_abi 3.11.* *_cp311 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + - numpy >=1.26.4,<2.0a0 + license: BSD-3-Clause + size: 211326 + timestamp: 1753312432452 +- conda: https://prefix.dev/robostack-staging/osx-arm64/ros-humble-rosbag2-interfaces-0.15.14-np126py311h2a51a2c_13.conda + sha256: 05b16dad551c495e0510f0c0223a188701a99e5059270a48ec4a603e56a63a00 + md5: 950bfaeef98f1262cc827fee60e9085e + depends: + - python + - ros-humble-builtin-interfaces + - ros-humble-ros-workspace + - ros-humble-rosidl-default-runtime + - ros2-distro-mutex 0.7.* humble_* + - __osx >=11.0 + - libcxx >=18 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + - python_abi 3.11.* *_cp311 + - numpy >=1.26.4,<2.0a0 + license: BSD-3-Clause + size: 176804 + timestamp: 1753311340334 +- conda: https://prefix.dev/robostack-staging/win-64/ros-humble-rosbag2-interfaces-0.15.14-np126py311hd5de103_13.conda + sha256: feb50d381426bd5cd42329e951ee13c2aa7cea2584abcd6945030af5cfef0a03 + md5: cd4844c653c71054187dc379ec27ec2d + depends: + - python + - ros-humble-builtin-interfaces + - ros-humble-ros-workspace + - ros-humble-rosidl-default-runtime + - ros2-distro-mutex 0.7.* humble_* + - vc >=14.3,<15 + - vc14_runtime >=14.44.35208 + - ucrt >=10.0.20348.0 + - vc >=14.3,<15 + - vc14_runtime >=14.44.35208 + - ucrt >=10.0.20348.0 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + - python_abi 3.11.* *_cp311 + - numpy >=1.26.4,<2.0a0 + license: BSD-3-Clause + size: 188689 + timestamp: 1753324649642 +- conda: https://prefix.dev/robostack-staging/linux-64/ros-humble-rosbag2-py-0.15.14-np126py311hbc2a38a_13.conda + sha256: 93e10f764e1e6b17c4bde77fd42cfd251edfe6ce32050393a094542687bb57a2 + md5: 8b48e79ce9be2eadcbce1bdb385c657b + depends: + - python + - ros-humble-pybind11-vendor + - ros-humble-ros-workspace + - ros-humble-rosbag2-compression + - ros-humble-rosbag2-cpp + - ros-humble-rosbag2-storage + - ros-humble-rosbag2-transport + - ros-humble-rpyutils + - ros2-distro-mutex 0.7.* humble_* + - __glibc >=2.17,<3.0.a0 + - libstdcxx >=13 + - libgcc >=13 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + - numpy >=1.26.4,<2.0a0 + - python_abi 3.11.* *_cp311 + license: BSD-3-Clause + size: 551753 + timestamp: 1753315868908 +- conda: https://prefix.dev/robostack-staging/linux-aarch64/ros-humble-rosbag2-py-0.15.14-np126py311hbdd918e_13.conda + sha256: 47849a55430b4b2f8d0f413bcbfc0668a4f222dd2e9a63f94afe5c7a5fb9cc7e + md5: 33d49760376b4e0572c2e6c1f2d4297d + depends: + - python + - ros-humble-pybind11-vendor + - ros-humble-ros-workspace + - ros-humble-rosbag2-compression + - ros-humble-rosbag2-cpp + - ros-humble-rosbag2-storage + - ros-humble-rosbag2-transport + - ros-humble-rpyutils + - ros2-distro-mutex 0.7.* humble_* + - libgcc >=13 + - libstdcxx >=13 + - libgcc >=13 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + - numpy >=1.26.4,<2.0a0 + - python_abi 3.11.* *_cp311 + license: BSD-3-Clause + size: 510755 + timestamp: 1753315645241 +- conda: https://prefix.dev/robostack-staging/osx-arm64/ros-humble-rosbag2-py-0.15.14-np126py311h2a51a2c_13.conda + sha256: 6ac50cc06e2e466d0b44ce541f5d2e09c5bc0110c3aa72fbfa937a7d180b5014 + md5: ea94697937c224c88e23e0b16d6912ac + depends: + - python + - ros-humble-pybind11-vendor + - ros-humble-ros-workspace + - ros-humble-rosbag2-compression + - ros-humble-rosbag2-cpp + - ros-humble-rosbag2-storage + - ros-humble-rosbag2-transport + - ros-humble-rpyutils + - ros2-distro-mutex 0.7.* humble_* + - __osx >=11.0 + - libcxx >=18 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + - python_abi 3.11.* *_cp311 + - numpy >=1.26.4,<2.0a0 + license: BSD-3-Clause + size: 433333 + timestamp: 1753318563690 +- conda: https://prefix.dev/robostack-staging/win-64/ros-humble-rosbag2-py-0.15.14-np126py311hd5de103_13.conda + sha256: 3fbfc6c6c9f65f5060fb273e83464add268143796f3e44519b0eaa877ed63a14 + md5: b650fd4a297f8ee2adcb428cbfec76ce + depends: + - python + - ros-humble-pybind11-vendor + - ros-humble-ros-workspace + - ros-humble-rosbag2-compression + - ros-humble-rosbag2-cpp + - ros-humble-rosbag2-storage + - ros-humble-rosbag2-transport + - ros-humble-rpyutils + - ros2-distro-mutex 0.7.* humble_* + - vc >=14.3,<15 + - vc14_runtime >=14.44.35208 + - ucrt >=10.0.20348.0 + - vc >=14.3,<15 + - vc14_runtime >=14.44.35208 + - ucrt >=10.0.20348.0 + - numpy >=1.26.4,<2.0a0 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + - python_abi 3.11.* *_cp311 + license: BSD-3-Clause + size: 386656 + timestamp: 1753346796046 +- conda: https://prefix.dev/robostack-staging/linux-64/ros-humble-rosbag2-storage-0.15.14-np126py311hbc2a38a_13.conda + sha256: 4d9863b5d2e6397ffde5d65a397f26680fdb08bbddf09dc6bd343c151efa80aa + md5: 8c8e9556e63b9cb8e34a01ef8af841cb + depends: + - python + - ros-humble-pluginlib + - ros-humble-rcpputils + - ros-humble-rcutils + - ros-humble-ros-workspace + - ros-humble-yaml-cpp-vendor + - ros2-distro-mutex 0.7.* humble_* + - __glibc >=2.17,<3.0.a0 + - libstdcxx >=13 + - libgcc >=13 + - numpy >=1.26.4,<2.0a0 + - python_abi 3.11.* *_cp311 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + license: BSD-3-Clause + size: 225527 + timestamp: 1753313497394 +- conda: https://prefix.dev/robostack-staging/linux-aarch64/ros-humble-rosbag2-storage-0.15.14-np126py311hbdd918e_13.conda + sha256: 6d9d5986ff430a4a49094795a1d1917bddb2d588a8e27e2b26f225e34066c7dc + md5: 5866835b31c8d86cc6f0858b55284648 + depends: + - python + - ros-humble-pluginlib + - ros-humble-rcpputils + - ros-humble-rcutils + - ros-humble-ros-workspace + - ros-humble-yaml-cpp-vendor + - ros2-distro-mutex 0.7.* humble_* + - libstdcxx >=13 + - libgcc >=13 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + - python_abi 3.11.* *_cp311 + - numpy >=1.26.4,<2.0a0 + license: BSD-3-Clause + size: 223821 + timestamp: 1753313654439 +- conda: https://prefix.dev/robostack-staging/osx-arm64/ros-humble-rosbag2-storage-0.15.14-np126py311h2a51a2c_13.conda + sha256: f2550a62a7b953426cf1dcaf7a4b342b3e604bc494ce4b6c405c4759a3248372 + md5: 7316eb76dbf8ff5804d0a6742e1280bf + depends: + - python + - ros-humble-pluginlib + - ros-humble-rcpputils + - ros-humble-rcutils + - ros-humble-ros-workspace + - ros-humble-yaml-cpp-vendor + - ros2-distro-mutex 0.7.* humble_* + - __osx >=11.0 + - libcxx >=18 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + - python_abi 3.11.* *_cp311 + - numpy >=1.26.4,<2.0a0 + license: BSD-3-Clause + size: 178777 + timestamp: 1753313713597 +- conda: https://prefix.dev/robostack-staging/win-64/ros-humble-rosbag2-storage-0.15.14-np126py311hd5de103_13.conda + sha256: 08597c7d0164fa15d1c128f7ae395fe301c0ded5d9f2a694776d734504eaaea7 + md5: 2dae1553d4f7067e4e37b0d1f97e7f60 + depends: + - python + - ros-humble-pluginlib + - ros-humble-rcpputils + - ros-humble-rcutils + - ros-humble-ros-workspace + - ros-humble-yaml-cpp-vendor + - ros2-distro-mutex 0.7.* humble_* + - vc >=14.3,<15 + - vc14_runtime >=14.44.35208 + - ucrt >=10.0.20348.0 + - vc >=14.3,<15 + - vc14_runtime >=14.44.35208 + - ucrt >=10.0.20348.0 + - numpy >=1.26.4,<2.0a0 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + - python_abi 3.11.* *_cp311 + license: BSD-3-Clause + size: 154345 + timestamp: 1753333293656 +- conda: https://prefix.dev/robostack-staging/linux-64/ros-humble-rosbag2-storage-default-plugins-0.15.14-np126py311hbc2a38a_13.conda + sha256: 4ccb759cf3a04b5634cce39dfda22f8d9fff3541bab60677de3c7792af398384 + md5: be793e449dd4648036130dcccd47c372 + depends: + - python + - ros-humble-pluginlib + - ros-humble-rcpputils + - ros-humble-rcutils + - ros-humble-ros-workspace + - ros-humble-rosbag2-storage + - ros-humble-sqlite3-vendor + - ros-humble-yaml-cpp-vendor + - ros2-distro-mutex 0.7.* humble_* + - libstdcxx >=13 + - libgcc >=13 + - __glibc >=2.17,<3.0.a0 + - libgcc >=13 + - python_abi 3.11.* *_cp311 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + - numpy >=1.26.4,<2.0a0 + license: BSD-3-Clause + size: 127421 + timestamp: 1753313966457 +- conda: https://prefix.dev/robostack-staging/linux-aarch64/ros-humble-rosbag2-storage-default-plugins-0.15.14-np126py311hbdd918e_13.conda + sha256: ac6534fdd70840f05c7be6385a40e6d10f15d1a682afeff7f707b3cf61b49e86 + md5: e19828b0f0d26058d25aa77ded2b5601 + depends: + - python + - ros-humble-pluginlib + - ros-humble-rcpputils + - ros-humble-rcutils + - ros-humble-ros-workspace + - ros-humble-rosbag2-storage + - ros-humble-sqlite3-vendor + - ros-humble-yaml-cpp-vendor + - ros2-distro-mutex 0.7.* humble_* + - libgcc >=13 + - libstdcxx >=13 + - libgcc >=13 + - python_abi 3.11.* *_cp311 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + - numpy >=1.26.4,<2.0a0 + license: BSD-3-Clause + size: 127004 + timestamp: 1753314092975 +- conda: https://prefix.dev/robostack-staging/osx-arm64/ros-humble-rosbag2-storage-default-plugins-0.15.14-np126py311h2a51a2c_13.conda + sha256: 43e0305eb8db36e19d65f979d570b8ea2051079d84c0efe404589b5ec816a726 + md5: 5bdbe5a8eaeef0686f43a000aef75bda + depends: + - python + - ros-humble-pluginlib + - ros-humble-rcpputils + - ros-humble-rcutils + - ros-humble-ros-workspace + - ros-humble-rosbag2-storage + - ros-humble-sqlite3-vendor + - ros-humble-yaml-cpp-vendor + - ros2-distro-mutex 0.7.* humble_* + - __osx >=11.0 + - libcxx >=18 + - numpy >=1.26.4,<2.0a0 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + - python_abi 3.11.* *_cp311 + license: BSD-3-Clause + size: 109453 + timestamp: 1753314019184 +- conda: https://prefix.dev/robostack-staging/win-64/ros-humble-rosbag2-storage-default-plugins-0.15.14-np126py311hd5de103_13.conda + sha256: 71a59afaf517e1d1fd0c634430c5d187f9b91ad362e23525dce89b457a7d8295 + md5: 72f6f5c31690b1f7dbfa8819aeb70d1d + depends: + - python + - ros-humble-pluginlib + - ros-humble-rcpputils + - ros-humble-rcutils + - ros-humble-ros-workspace + - ros-humble-rosbag2-storage + - ros-humble-sqlite3-vendor + - ros-humble-yaml-cpp-vendor + - ros2-distro-mutex 0.7.* humble_* + - vc >=14.3,<15 + - vc14_runtime >=14.44.35208 + - ucrt >=10.0.20348.0 + - vc >=14.3,<15 + - vc14_runtime >=14.44.35208 + - ucrt >=10.0.20348.0 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + - python_abi 3.11.* *_cp311 + - numpy >=1.26.4,<2.0a0 + license: BSD-3-Clause + size: 114590 + timestamp: 1753335086981 +- conda: https://prefix.dev/robostack-staging/linux-64/ros-humble-rosbag2-transport-0.15.14-np126py311hbc2a38a_13.conda + sha256: d9750bcf1c5beb64419750f6707e6947cb39ee3df81b65ae74c1d9b858273805 + md5: a66b932cee533db4c2526b3c22e1462f + depends: + - python + - ros-humble-keyboard-handler + - ros-humble-rclcpp + - ros-humble-rmw + - ros-humble-ros-workspace + - ros-humble-rosbag2-compression + - ros-humble-rosbag2-cpp + - ros-humble-rosbag2-interfaces + - ros-humble-rosbag2-storage + - ros-humble-shared-queues-vendor + - ros-humble-yaml-cpp-vendor + - ros2-distro-mutex 0.7.* humble_* + - libstdcxx >=13 + - libgcc >=13 + - __glibc >=2.17,<3.0.a0 + - python_abi 3.11.* *_cp311 + - numpy >=1.26.4,<2.0a0 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + license: BSD-3-Clause + size: 401789 + timestamp: 1753315692757 +- conda: https://prefix.dev/robostack-staging/linux-aarch64/ros-humble-rosbag2-transport-0.15.14-np126py311hbdd918e_13.conda + sha256: 10c6d35ab96d87282832a9d1f58d5f84ea96c545c72674469825c83674faddaf + md5: a98ab89a5ee2b314aad7e7c322d7e122 + depends: + - python + - ros-humble-keyboard-handler + - ros-humble-rclcpp + - ros-humble-rmw + - ros-humble-ros-workspace + - ros-humble-rosbag2-compression + - ros-humble-rosbag2-cpp + - ros-humble-rosbag2-interfaces + - ros-humble-rosbag2-storage + - ros-humble-shared-queues-vendor + - ros-humble-yaml-cpp-vendor + - ros2-distro-mutex 0.7.* humble_* + - libgcc >=13 + - libstdcxx >=13 + - libgcc >=13 + - python_abi 3.11.* *_cp311 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + - numpy >=1.26.4,<2.0a0 + license: BSD-3-Clause + size: 393267 + timestamp: 1753315459471 +- conda: https://prefix.dev/robostack-staging/osx-arm64/ros-humble-rosbag2-transport-0.15.14-np126py311h2a51a2c_13.conda + sha256: 2e23f20fb05883fc6b631a2b1e833c21cd0593ad230e5f47f6e04076d76f9086 + md5: 4e234174f0c8296c8e624c1c31ff614b + depends: + - python + - ros-humble-keyboard-handler + - ros-humble-rclcpp + - ros-humble-rmw + - ros-humble-ros-workspace + - ros-humble-rosbag2-compression + - ros-humble-rosbag2-cpp + - ros-humble-rosbag2-interfaces + - ros-humble-rosbag2-storage + - ros-humble-shared-queues-vendor + - ros-humble-yaml-cpp-vendor + - ros2-distro-mutex 0.7.* humble_* + - __osx >=11.0 + - libcxx >=18 + - python_abi 3.11.* *_cp311 + - numpy >=1.26.4,<2.0a0 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + license: BSD-3-Clause + size: 292099 + timestamp: 1753317871377 +- conda: https://prefix.dev/robostack-staging/win-64/ros-humble-rosbag2-transport-0.15.14-np126py311hd5de103_13.conda + sha256: c289ab6853f2a3bb5a2bb45738626a54866fd3ee2ee85473dcdf96c921e6a5b7 + md5: 05d4f0b823e9dc84a62b118e5629749b + depends: + - python + - ros-humble-keyboard-handler + - ros-humble-rclcpp + - ros-humble-rmw + - ros-humble-ros-workspace + - ros-humble-rosbag2-compression + - ros-humble-rosbag2-cpp + - ros-humble-rosbag2-interfaces + - ros-humble-rosbag2-storage + - ros-humble-shared-queues-vendor + - ros-humble-yaml-cpp-vendor + - ros2-distro-mutex 0.7.* humble_* + - vc >=14.3,<15 + - vc14_runtime >=14.44.35208 + - ucrt >=10.0.20348.0 + - vc >=14.3,<15 + - vc14_runtime >=14.44.35208 + - ucrt >=10.0.20348.0 + - python_abi 3.11.* *_cp311 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + - numpy >=1.26.4,<2.0a0 + license: BSD-3-Clause + size: 245442 + timestamp: 1753343637684 +- conda: https://prefix.dev/robostack-staging/linux-64/ros-humble-rosgraph-msgs-1.2.1-np126py311hbc2a38a_13.conda + sha256: 8166557f42dacecee819434f76a284750760ca1bde37c7b2128d5dd10bc83a6b + md5: 92092321209406479a2a1d96344b7d92 + depends: + - python + - ros-humble-builtin-interfaces + - ros-humble-ros-workspace + - ros-humble-rosidl-default-runtime + - ros2-distro-mutex 0.7.* humble_* + - libgcc >=13 + - libstdcxx >=13 + - libgcc >=13 + - __glibc >=2.17,<3.0.a0 + - numpy >=1.26.4,<2.0a0 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + - python_abi 3.11.* *_cp311 + license: BSD-3-Clause + size: 67687 + timestamp: 1753311928293 +- conda: https://prefix.dev/robostack-staging/linux-aarch64/ros-humble-rosgraph-msgs-1.2.1-np126py311hbdd918e_13.conda + sha256: 9e47f588be1873f834af40bb6897211fdb7cee6f33dad35cc71b75364e0533e2 + md5: 99a5f4bdecefda94989bc5b641a4b57d + depends: + - python + - ros-humble-builtin-interfaces + - ros-humble-ros-workspace + - ros-humble-rosidl-default-runtime + - ros2-distro-mutex 0.7.* humble_* + - libgcc >=13 + - libstdcxx >=13 + - libgcc >=13 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + - numpy >=1.26.4,<2.0a0 + - python_abi 3.11.* *_cp311 + license: BSD-3-Clause + size: 71276 + timestamp: 1753312402829 +- conda: https://prefix.dev/robostack-staging/osx-arm64/ros-humble-rosgraph-msgs-1.2.1-np126py311h2a51a2c_13.conda + sha256: 1445dce765f8f71d82444cd7c07672867f36b9f61d8a0f750b44bcd0fdc1d6e0 + md5: aff34054ad309603b00717feb6a29746 + depends: + - python + - ros-humble-builtin-interfaces + - ros-humble-ros-workspace + - ros-humble-rosidl-default-runtime + - ros2-distro-mutex 0.7.* humble_* + - libcxx >=18 + - __osx >=11.0 + - numpy >=1.26.4,<2.0a0 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + - python_abi 3.11.* *_cp311 + license: BSD-3-Clause + size: 65385 + timestamp: 1753311304078 +- conda: https://prefix.dev/robostack-staging/win-64/ros-humble-rosgraph-msgs-1.2.1-np126py311hd5de103_13.conda + sha256: 723ba98528cd6eeccfc9a5c767048db18c2d8350603eeb9fe32d31dbda6a3c35 + md5: f7f3ea46b45cc00eefad24705fa0ca16 + depends: + - python + - ros-humble-builtin-interfaces + - ros-humble-ros-workspace + - ros-humble-rosidl-default-runtime + - ros2-distro-mutex 0.7.* humble_* + - vc >=14.3,<15 + - vc14_runtime >=14.44.35208 + - ucrt >=10.0.20348.0 + - vc >=14.3,<15 + - vc14_runtime >=14.44.35208 + - ucrt >=10.0.20348.0 + - python_abi 3.11.* *_cp311 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + - numpy >=1.26.4,<2.0a0 + license: BSD-3-Clause + size: 74478 + timestamp: 1753324461126 +- conda: https://prefix.dev/robostack-staging/linux-64/ros-humble-rosidl-adapter-3.1.6-np126py311hbc2a38a_13.conda + sha256: 515d56e3277b7741be0edfab04c7e639b5e9b3ea95e873f8d37588914252fb2e + md5: b718a316f9de0d9fd34fb77ec46a3baf + depends: + - empy + - python + - ros-humble-ament-cmake-core + - ros-humble-ros-workspace + - ros-humble-rosidl-cli + - ros2-distro-mutex 0.7.* humble_* + - libstdcxx >=13 + - libgcc >=13 + - __glibc >=2.17,<3.0.a0 + - libgcc >=13 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + - python_abi 3.11.* *_cp311 + - numpy >=1.26.4,<2.0a0 + license: BSD-3-Clause + size: 63737 + timestamp: 1753309551686 +- conda: https://prefix.dev/robostack-staging/linux-aarch64/ros-humble-rosidl-adapter-3.1.6-np126py311hbdd918e_13.conda + sha256: 489c7058732634beeb375638e897479c6eb4a1e67c6fb4b53bc62314919165b3 + md5: 70bc87f61d6e00291d75355b8d83584c + depends: + - empy + - python + - ros-humble-ament-cmake-core + - ros-humble-ros-workspace + - ros-humble-rosidl-cli + - ros2-distro-mutex 0.7.* humble_* + - libstdcxx >=13 + - libgcc >=13 + - python_abi 3.11.* *_cp311 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + - numpy >=1.26.4,<2.0a0 + license: BSD-3-Clause + size: 63617 + timestamp: 1753309429828 +- conda: https://prefix.dev/robostack-staging/osx-arm64/ros-humble-rosidl-adapter-3.1.6-np126py311h2a51a2c_13.conda + sha256: 0eabb703cfb36aa7140bac7c17e4f8f686eaddcaaff72a3f91675f7699e2dccb + md5: 761c1490aeb9a5097908188e0abfc455 + depends: + - empy + - python + - ros-humble-ament-cmake-core + - ros-humble-ros-workspace + - ros-humble-rosidl-cli + - ros2-distro-mutex 0.7.* humble_* + - libcxx >=18 + - __osx >=11.0 + - numpy >=1.26.4,<2.0a0 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + - python_abi 3.11.* *_cp311 + license: BSD-3-Clause + size: 63932 + timestamp: 1753310213784 +- conda: https://prefix.dev/robostack-staging/win-64/ros-humble-rosidl-adapter-3.1.6-np126py311hd5de103_13.conda + sha256: 3a118078a294a7add43fa3b233c5fb6d5282b4e8d47233665d8ebfd6e82f2281 + md5: b139288ac7e3453b1d61165e5eedcfa6 + depends: + - empy + - python + - ros-humble-ament-cmake-core + - ros-humble-ros-workspace + - ros-humble-rosidl-cli + - ros2-distro-mutex 0.7.* humble_* + - vc >=14.3,<15 + - vc14_runtime >=14.44.35208 + - ucrt >=10.0.20348.0 + - vc >=14.3,<15 + - vc14_runtime >=14.44.35208 + - ucrt >=10.0.20348.0 + - python_abi 3.11.* *_cp311 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + - numpy >=1.26.4,<2.0a0 + license: BSD-3-Clause + size: 60488 + timestamp: 1753317698348 +- conda: https://prefix.dev/robostack-staging/linux-64/ros-humble-rosidl-cli-3.1.6-np126py311hbc2a38a_13.conda + sha256: f42bee90ca8440bd9779522effa707350623095e0afe2e1eade7be485382333a + md5: a58be72bbb4cace2dcc74c980290130e + depends: + - argcomplete + - importlib-metadata + - python + - ros-humble-ros-workspace + - ros2-distro-mutex 0.7.* humble_* + - libstdcxx >=13 + - libgcc >=13 + - __glibc >=2.17,<3.0.a0 + - libgcc >=13 + - python_abi 3.11.* *_cp311 + - numpy >=1.26.4,<2.0a0 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + license: BSD-3-Clause + size: 38987 + timestamp: 1753308433844 +- conda: https://prefix.dev/robostack-staging/linux-aarch64/ros-humble-rosidl-cli-3.1.6-np126py311hbdd918e_13.conda + sha256: ff40e9f9b2d77b0a5f157045d971f0c513b95e5f03ac224ec3d32793849bee30 + md5: bcddb866ec6e2b633ebcfb4b6c698c7b + depends: + - argcomplete + - importlib-metadata + - python + - ros-humble-ros-workspace + - ros2-distro-mutex 0.7.* humble_* + - libgcc >=13 + - libstdcxx >=13 + - libgcc >=13 + - numpy >=1.26.4,<2.0a0 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + - python_abi 3.11.* *_cp311 + license: BSD-3-Clause + size: 38909 + timestamp: 1753308567765 +- conda: https://prefix.dev/robostack-staging/osx-arm64/ros-humble-rosidl-cli-3.1.6-np126py311h2a51a2c_13.conda + sha256: 2ebc6c3b48715db0527b358ff93b6bc1b070e225de93449303722194c4be4cdf + md5: 4bb68c8f80f0c1f80485ec1e4e193c00 + depends: + - argcomplete + - importlib-metadata + - python + - ros-humble-ros-workspace + - ros2-distro-mutex 0.7.* humble_* + - libcxx >=18 + - __osx >=11.0 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + - python_abi 3.11.* *_cp311 + - numpy >=1.26.4,<2.0a0 + license: BSD-3-Clause + size: 39017 + timestamp: 1753308882416 +- conda: https://prefix.dev/robostack-staging/win-64/ros-humble-rosidl-cli-3.1.6-np126py311hd5de103_13.conda + sha256: 3febfb5cffb8285ebaa7ddbcf84d9fa1422d5e974d2d374ffa83c68eb6e2dc3f + md5: 4605e9866242d31914501c2bc76ff21a + depends: + - argcomplete + - importlib-metadata + - python + - ros-humble-ros-workspace + - ros2-distro-mutex 0.7.* humble_* + - vc >=14.3,<15 + - vc14_runtime >=14.44.35208 + - ucrt >=10.0.20348.0 + - vc >=14.3,<15 + - vc14_runtime >=14.44.35208 + - ucrt >=10.0.20348.0 + - python_abi 3.11.* *_cp311 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + - numpy >=1.26.4,<2.0a0 + license: BSD-3-Clause + size: 43377 + timestamp: 1753312866073 +- conda: https://prefix.dev/robostack-staging/linux-64/ros-humble-rosidl-cmake-3.1.6-np126py311hbc2a38a_13.conda + sha256: 8a9a7b6a6a35bce8d9bd0a3ea1ee939ff42c5e091269a20f7f4d1cce5d397e59 + md5: 316d5cd31b285122c1b93c2b82461dae + depends: + - empy + - python + - ros-humble-ament-cmake + - ros-humble-ros-workspace + - ros-humble-rosidl-adapter + - ros-humble-rosidl-parser + - ros2-distro-mutex 0.7.* humble_* + - __glibc >=2.17,<3.0.a0 + - libgcc >=13 + - libstdcxx >=13 + - libgcc >=13 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + - numpy >=1.26.4,<2.0a0 + - python_abi 3.11.* *_cp311 + license: BSD-3-Clause + size: 40094 + timestamp: 1753309938806 +- conda: https://prefix.dev/robostack-staging/linux-aarch64/ros-humble-rosidl-cmake-3.1.6-np126py311hbdd918e_13.conda + sha256: 195209278a5773ab7875bff6a1d3bbc5686ba9b0f45daf0f698ad87f7a136cd9 + md5: bf3ddbff89715f6f92d369abe3e8e169 + depends: + - empy + - python + - ros-humble-ament-cmake + - ros-humble-ros-workspace + - ros-humble-rosidl-adapter + - ros-humble-rosidl-parser + - ros2-distro-mutex 0.7.* humble_* + - libstdcxx >=13 + - libgcc >=13 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + - python_abi 3.11.* *_cp311 + - numpy >=1.26.4,<2.0a0 + license: BSD-3-Clause + size: 39945 + timestamp: 1753309724968 +- conda: https://prefix.dev/robostack-staging/osx-arm64/ros-humble-rosidl-cmake-3.1.6-np126py311h2a51a2c_13.conda + sha256: 207100d52dcaa38d9d5b38edd774e8ba8816f1229fc100747e7b2f56d6a27d67 + md5: a94ba1932abe70e088117bd8855cbf96 + depends: + - empy + - python + - ros-humble-ament-cmake + - ros-humble-ros-workspace + - ros-humble-rosidl-adapter + - ros-humble-rosidl-parser + - ros2-distro-mutex 0.7.* humble_* + - __osx >=11.0 + - libcxx >=18 + - python_abi 3.11.* *_cp311 + - numpy >=1.26.4,<2.0a0 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + license: BSD-3-Clause + size: 40243 + timestamp: 1753310451694 +- conda: https://prefix.dev/robostack-staging/win-64/ros-humble-rosidl-cmake-3.1.6-np126py311hd5de103_13.conda + sha256: a4d1cfcb0a260e215363f3c6c5f77071a23275dc84a45be8f8a9232c666d7ec9 + md5: 9bdaa4dadac4d3d491423aa59f053b09 + depends: + - empy + - python + - ros-humble-ament-cmake + - ros-humble-ros-workspace + - ros-humble-rosidl-adapter + - ros-humble-rosidl-parser + - ros2-distro-mutex 0.7.* humble_* + - vc >=14.3,<15 + - vc14_runtime >=14.44.35208 + - ucrt >=10.0.20348.0 + - vc >=14.3,<15 + - vc14_runtime >=14.44.35208 + - ucrt >=10.0.20348.0 + - python_abi 3.11.* *_cp311 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + - numpy >=1.26.4,<2.0a0 + license: BSD-3-Clause + size: 36739 + timestamp: 1753319537718 +- conda: https://prefix.dev/robostack-staging/linux-64/ros-humble-rosidl-default-generators-1.2.0-np126py311hbc2a38a_13.conda + sha256: a6ecfafdadcbb1bbd0c3853a94b3b03e0161b658aba6b538b745e5916c13f812 + md5: 6830268a249ef140824a9bd1267a8ee9 + depends: + - python + - ros-humble-ament-cmake-core + - ros-humble-ros-workspace + - ros-humble-rosidl-cmake + - ros-humble-rosidl-generator-c + - ros-humble-rosidl-generator-cpp + - ros-humble-rosidl-generator-py + - ros-humble-rosidl-typesupport-c + - ros-humble-rosidl-typesupport-cpp + - ros-humble-rosidl-typesupport-fastrtps-c + - ros-humble-rosidl-typesupport-fastrtps-cpp + - ros-humble-rosidl-typesupport-introspection-c + - ros-humble-rosidl-typesupport-introspection-cpp + - ros2-distro-mutex 0.7.* humble_* + - __glibc >=2.17,<3.0.a0 + - libstdcxx >=13 + - libgcc >=13 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + - numpy >=1.26.4,<2.0a0 + - python_abi 3.11.* *_cp311 + license: BSD-3-Clause + size: 31416 + timestamp: 1753310528508 +- conda: https://prefix.dev/robostack-staging/linux-aarch64/ros-humble-rosidl-default-generators-1.2.0-np126py311hbdd918e_13.conda + sha256: cd81bd30dd37fe01d8a40050caca7ab3372cc3d93b8a47ae7e51ecf1f0f7c8b7 + md5: 3490ec4e1b8cec153fc8bad2814dfbca + depends: + - python + - ros-humble-ament-cmake-core + - ros-humble-ros-workspace + - ros-humble-rosidl-cmake + - ros-humble-rosidl-generator-c + - ros-humble-rosidl-generator-cpp + - ros-humble-rosidl-generator-py + - ros-humble-rosidl-typesupport-c + - ros-humble-rosidl-typesupport-cpp + - ros-humble-rosidl-typesupport-fastrtps-c + - ros-humble-rosidl-typesupport-fastrtps-cpp + - ros-humble-rosidl-typesupport-introspection-c + - ros-humble-rosidl-typesupport-introspection-cpp + - ros2-distro-mutex 0.7.* humble_* + - libgcc >=13 + - libstdcxx >=13 + - libgcc >=13 + - python_abi 3.11.* *_cp311 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + - numpy >=1.26.4,<2.0a0 + license: BSD-3-Clause + size: 31303 + timestamp: 1753312241209 +- conda: https://prefix.dev/robostack-staging/osx-arm64/ros-humble-rosidl-default-generators-1.2.0-np126py311h2a51a2c_13.conda + sha256: a107ded314784ce75467ed7eead09dd0f48163f8ac420537b40dc85d138beba9 + md5: 5e6a6dd7a0b1215030550f8855ecd7d9 + depends: + - python + - ros-humble-ament-cmake-core + - ros-humble-ros-workspace + - ros-humble-rosidl-cmake + - ros-humble-rosidl-generator-c + - ros-humble-rosidl-generator-cpp + - ros-humble-rosidl-generator-py + - ros-humble-rosidl-typesupport-c + - ros-humble-rosidl-typesupport-cpp + - ros-humble-rosidl-typesupport-fastrtps-c + - ros-humble-rosidl-typesupport-fastrtps-cpp + - ros-humble-rosidl-typesupport-introspection-c + - ros-humble-rosidl-typesupport-introspection-cpp + - ros2-distro-mutex 0.7.* humble_* + - __osx >=11.0 + - libcxx >=18 + - numpy >=1.26.4,<2.0a0 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + - python_abi 3.11.* *_cp311 + license: BSD-3-Clause + size: 31568 + timestamp: 1753311101361 +- conda: https://prefix.dev/robostack-staging/win-64/ros-humble-rosidl-default-generators-1.2.0-np126py311hd5de103_13.conda + sha256: c9332dc1ce278809e583e23d92ec497c8d6a48ae6925135fa150e6fa87905423 + md5: c208d3aa1f20fe03b84eec9177f23bfc + depends: + - python + - ros-humble-ament-cmake-core + - ros-humble-ros-workspace + - ros-humble-rosidl-cmake + - ros-humble-rosidl-generator-c + - ros-humble-rosidl-generator-cpp + - ros-humble-rosidl-generator-py + - ros-humble-rosidl-typesupport-c + - ros-humble-rosidl-typesupport-cpp + - ros-humble-rosidl-typesupport-fastrtps-c + - ros-humble-rosidl-typesupport-fastrtps-cpp + - ros-humble-rosidl-typesupport-introspection-c + - ros-humble-rosidl-typesupport-introspection-cpp + - ros2-distro-mutex 0.7.* humble_* + - vc >=14.3,<15 + - vc14_runtime >=14.44.35208 + - ucrt >=10.0.20348.0 + - vc >=14.3,<15 + - vc14_runtime >=14.44.35208 + - ucrt >=10.0.20348.0 + - python_abi 3.11.* *_cp311 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + - numpy >=1.26.4,<2.0a0 + license: BSD-3-Clause + size: 28134 + timestamp: 1753322719893 +- conda: https://prefix.dev/robostack-staging/linux-64/ros-humble-rosidl-default-runtime-1.2.0-np126py311hbc2a38a_13.conda + sha256: 4d19d1ba262d29d180f8ccda821136f6263d3b551887ecfad5a9481407195d71 + md5: 07fb58a8ac16fee9997dd2f604ea6ea2 + depends: + - python + - ros-humble-ros-workspace + - ros-humble-rosidl-generator-py + - ros-humble-rosidl-runtime-c + - ros-humble-rosidl-runtime-cpp + - ros-humble-rosidl-typesupport-c + - ros-humble-rosidl-typesupport-cpp + - ros-humble-rosidl-typesupport-fastrtps-c + - ros-humble-rosidl-typesupport-fastrtps-cpp + - ros-humble-rosidl-typesupport-introspection-c + - ros-humble-rosidl-typesupport-introspection-cpp + - ros2-distro-mutex 0.7.* humble_* + - __glibc >=2.17,<3.0.a0 + - libstdcxx >=13 + - libgcc >=13 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + - numpy >=1.26.4,<2.0a0 + - python_abi 3.11.* *_cp311 + license: BSD-3-Clause + size: 30396 + timestamp: 1753310512196 +- conda: https://prefix.dev/robostack-staging/linux-aarch64/ros-humble-rosidl-default-runtime-1.2.0-np126py311hbdd918e_13.conda + sha256: 6643d5ec919d867345a6c4e3b2cb3321f669d68a67db278fe105df6f330e4cbf + md5: eafe48fd39a4002758383b08bd35c6bf + depends: + - python + - ros-humble-ros-workspace + - ros-humble-rosidl-generator-py + - ros-humble-rosidl-runtime-c + - ros-humble-rosidl-runtime-cpp + - ros-humble-rosidl-typesupport-c + - ros-humble-rosidl-typesupport-cpp + - ros-humble-rosidl-typesupport-fastrtps-c + - ros-humble-rosidl-typesupport-fastrtps-cpp + - ros-humble-rosidl-typesupport-introspection-c + - ros-humble-rosidl-typesupport-introspection-cpp + - ros2-distro-mutex 0.7.* humble_* + - libgcc >=13 + - libstdcxx >=13 + - libgcc >=13 + - python_abi 3.11.* *_cp311 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + - numpy >=1.26.4,<2.0a0 + license: BSD-3-Clause + size: 30274 + timestamp: 1753312227988 +- conda: https://prefix.dev/robostack-staging/osx-arm64/ros-humble-rosidl-default-runtime-1.2.0-np126py311h2a51a2c_13.conda + sha256: 9d662bb75a8a5a18e927d5a98918740f9c5501ebe9645ad6a6fe8de186527cc6 + md5: 212d556c2d59b2bc35a90a8b0d3be804 + depends: + - python + - ros-humble-ros-workspace + - ros-humble-rosidl-generator-py + - ros-humble-rosidl-runtime-c + - ros-humble-rosidl-runtime-cpp + - ros-humble-rosidl-typesupport-c + - ros-humble-rosidl-typesupport-cpp + - ros-humble-rosidl-typesupport-fastrtps-c + - ros-humble-rosidl-typesupport-fastrtps-cpp + - ros-humble-rosidl-typesupport-introspection-c + - ros-humble-rosidl-typesupport-introspection-cpp + - ros2-distro-mutex 0.7.* humble_* + - __osx >=11.0 + - libcxx >=18 + - python_abi 3.11.* *_cp311 + - numpy >=1.26.4,<2.0a0 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + license: BSD-3-Clause + size: 30519 + timestamp: 1753311085827 +- conda: https://prefix.dev/robostack-staging/win-64/ros-humble-rosidl-default-runtime-1.2.0-np126py311hd5de103_13.conda + sha256: 7fc9704343c3fde4f40bc5f1398d6d420eca2d7b74453f02e895422a05edd0e9 + md5: eed2cfa610eb7178e52280d64ebf7d08 + depends: + - python + - ros-humble-ros-workspace + - ros-humble-rosidl-generator-py + - ros-humble-rosidl-runtime-c + - ros-humble-rosidl-runtime-cpp + - ros-humble-rosidl-typesupport-c + - ros-humble-rosidl-typesupport-cpp + - ros-humble-rosidl-typesupport-fastrtps-c + - ros-humble-rosidl-typesupport-fastrtps-cpp + - ros-humble-rosidl-typesupport-introspection-c + - ros-humble-rosidl-typesupport-introspection-cpp + - ros2-distro-mutex 0.7.* humble_* + - vc >=14.3,<15 + - vc14_runtime >=14.44.35208 + - ucrt >=10.0.20348.0 + - vc >=14.3,<15 + - vc14_runtime >=14.44.35208 + - ucrt >=10.0.20348.0 + - python_abi 3.11.* *_cp311 + - numpy >=1.26.4,<2.0a0 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + license: BSD-3-Clause + size: 27144 + timestamp: 1753322645131 +- conda: https://prefix.dev/robostack-staging/linux-64/ros-humble-rosidl-generator-c-3.1.6-np126py311hbc2a38a_13.conda + sha256: bea09f20d6d1ee4d536539012c8989e63516c3f425ff9977345da1c9c714a544 + md5: 785321afe129a8e3d982dcf66463ff9e + depends: + - python + - ros-humble-ament-cmake-core + - ros-humble-ament-index-python + - ros-humble-rcutils + - ros-humble-ros-workspace + - ros-humble-rosidl-cli + - ros-humble-rosidl-cmake + - ros-humble-rosidl-parser + - ros-humble-rosidl-typesupport-interface + - ros2-distro-mutex 0.7.* humble_* + - __glibc >=2.17,<3.0.a0 + - libgcc >=13 + - libstdcxx >=13 + - libgcc >=13 + - python_abi 3.11.* *_cp311 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + - numpy >=1.26.4,<2.0a0 + license: BSD-3-Clause + size: 46942 + timestamp: 1753310094240 +- conda: https://prefix.dev/robostack-staging/linux-aarch64/ros-humble-rosidl-generator-c-3.1.6-np126py311hbdd918e_13.conda + sha256: ac7acfe2cc434988d4145a836a39bce139c29961cdbbf60d3c91f2dab03751f1 + md5: 1fdd77412ba1ff0a597833c3185a8433 + depends: + - python + - ros-humble-ament-cmake-core + - ros-humble-ament-index-python + - ros-humble-rcutils + - ros-humble-ros-workspace + - ros-humble-rosidl-cli + - ros-humble-rosidl-cmake + - ros-humble-rosidl-parser + - ros-humble-rosidl-typesupport-interface + - ros2-distro-mutex 0.7.* humble_* + - libgcc >=13 + - libstdcxx >=13 + - libgcc >=13 + - python_abi 3.11.* *_cp311 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + - numpy >=1.26.4,<2.0a0 + license: BSD-3-Clause + size: 46823 + timestamp: 1753311780580 +- conda: https://prefix.dev/robostack-staging/osx-arm64/ros-humble-rosidl-generator-c-3.1.6-np126py311h2a51a2c_13.conda + sha256: 8cb10ddb603d7aab86441a5ec0dd017e8f81b733a079ddedc15a960af250371b + md5: 9d1abd1b06582a402cfa63595f7a9bb1 + depends: + - python + - ros-humble-ament-cmake-core + - ros-humble-ament-index-python + - ros-humble-rcutils + - ros-humble-ros-workspace + - ros-humble-rosidl-cli + - ros-humble-rosidl-cmake + - ros-humble-rosidl-parser + - ros-humble-rosidl-typesupport-interface + - ros2-distro-mutex 0.7.* humble_* + - libcxx >=18 + - __osx >=11.0 + - python_abi 3.11.* *_cp311 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + - numpy >=1.26.4,<2.0a0 + license: BSD-3-Clause + size: 47140 + timestamp: 1753310631511 +- conda: https://prefix.dev/robostack-staging/win-64/ros-humble-rosidl-generator-c-3.1.6-np126py311hd5de103_13.conda + sha256: 4c132e0d1ec39637bcdc0290ed33e58bad3e2bf89de2e54c0c0466bb2b4835e9 + md5: 4f188eb119bc168eea1cbd404158cefc + depends: + - python + - ros-humble-ament-cmake-core + - ros-humble-ament-index-python + - ros-humble-rcutils + - ros-humble-ros-workspace + - ros-humble-rosidl-cli + - ros-humble-rosidl-cmake + - ros-humble-rosidl-parser + - ros-humble-rosidl-typesupport-interface + - ros2-distro-mutex 0.7.* humble_* + - vc >=14.3,<15 + - vc14_runtime >=14.44.35208 + - ucrt >=10.0.20348.0 + - vc >=14.3,<15 + - vc14_runtime >=14.44.35208 + - ucrt >=10.0.20348.0 + - python_abi 3.11.* *_cp311 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + - numpy >=1.26.4,<2.0a0 + license: BSD-3-Clause + size: 43675 + timestamp: 1753320563542 +- conda: https://prefix.dev/robostack-staging/linux-64/ros-humble-rosidl-generator-cpp-3.1.6-np126py311hbc2a38a_13.conda + sha256: c8014cc61b36b90340b5df1fea62af41763d6fdc79f5ad940915c39a10fbb10c + md5: 5bcbdcb2a9a3b37306292087cb6c11fa + depends: + - python + - ros-humble-ament-cmake-core + - ros-humble-ament-index-python + - ros-humble-ros-workspace + - ros-humble-rosidl-cli + - ros-humble-rosidl-cmake + - ros-humble-rosidl-generator-c + - ros-humble-rosidl-parser + - ros-humble-rosidl-runtime-cpp + - ros2-distro-mutex 0.7.* humble_* + - libgcc >=13 + - libstdcxx >=13 + - libgcc >=13 + - __glibc >=2.17,<3.0.a0 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + - numpy >=1.26.4,<2.0a0 + - python_abi 3.11.* *_cp311 + license: BSD-3-Clause + size: 49697 + timestamp: 1753310148803 +- conda: https://prefix.dev/robostack-staging/linux-aarch64/ros-humble-rosidl-generator-cpp-3.1.6-np126py311hbdd918e_13.conda + sha256: 3d5a2f13f8a3575ffa607ccb6c1fac8442c71ea0248052080c80edf12a6a6bf9 + md5: a1d5d91bda59a67815f845ff9fa418e4 + depends: + - python + - ros-humble-ament-cmake-core + - ros-humble-ament-index-python + - ros-humble-ros-workspace + - ros-humble-rosidl-cli + - ros-humble-rosidl-cmake + - ros-humble-rosidl-generator-c + - ros-humble-rosidl-parser + - ros-humble-rosidl-runtime-cpp + - ros2-distro-mutex 0.7.* humble_* + - libstdcxx >=13 + - libgcc >=13 + - numpy >=1.26.4,<2.0a0 + - python_abi 3.11.* *_cp311 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + license: BSD-3-Clause + size: 49535 + timestamp: 1753311834104 +- conda: https://prefix.dev/robostack-staging/osx-arm64/ros-humble-rosidl-generator-cpp-3.1.6-np126py311h2a51a2c_13.conda + sha256: 27635f327c85ea6c926c1a43f32ff78ccbff3b4c1d7d3eccab23d460daf74783 + md5: 7017f383090acdb4758148f7010d274a + depends: + - python + - ros-humble-ament-cmake-core + - ros-humble-ament-index-python + - ros-humble-ros-workspace + - ros-humble-rosidl-cli + - ros-humble-rosidl-cmake + - ros-humble-rosidl-generator-c + - ros-humble-rosidl-parser + - ros-humble-rosidl-runtime-cpp + - ros2-distro-mutex 0.7.* humble_* + - __osx >=11.0 + - libcxx >=18 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + - numpy >=1.26.4,<2.0a0 + - python_abi 3.11.* *_cp311 + license: BSD-3-Clause + size: 49927 + timestamp: 1753310694060 +- conda: https://prefix.dev/robostack-staging/win-64/ros-humble-rosidl-generator-cpp-3.1.6-np126py311hd5de103_13.conda + sha256: 6667d6c9f067b209bc1a1f7cf5da4281fda51ea41d95155bb47585aceb70c5fd + md5: 99def382cf5c30544644bbf79d349152 + depends: + - python + - ros-humble-ament-cmake-core + - ros-humble-ament-index-python + - ros-humble-ros-workspace + - ros-humble-rosidl-cli + - ros-humble-rosidl-cmake + - ros-humble-rosidl-generator-c + - ros-humble-rosidl-parser + - ros-humble-rosidl-runtime-cpp + - ros2-distro-mutex 0.7.* humble_* + - vc >=14.3,<15 + - vc14_runtime >=14.44.35208 + - ucrt >=10.0.20348.0 + - vc >=14.3,<15 + - vc14_runtime >=14.44.35208 + - ucrt >=10.0.20348.0 + - numpy >=1.26.4,<2.0a0 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + - python_abi 3.11.* *_cp311 + license: BSD-3-Clause + size: 46477 + timestamp: 1753321166059 +- conda: https://prefix.dev/robostack-staging/linux-64/ros-humble-rosidl-generator-py-0.14.4-np126py311hbc2a38a_13.conda + sha256: 78c53c9e7bd057375ef0346ab6a7022f66053e445a38a896690e5c7cfe9ffc5d + md5: 08adac67b2a00fb226e847c75bef174c + depends: + - numpy + - python + - ros-humble-ament-cmake + - ros-humble-ament-index-python + - ros-humble-python-cmake-module + - ros-humble-rmw + - ros-humble-ros-workspace + - ros-humble-rosidl-cli + - ros-humble-rosidl-cmake + - ros-humble-rosidl-generator-c + - ros-humble-rosidl-parser + - ros-humble-rosidl-runtime-c + - ros-humble-rosidl-typesupport-c + - ros-humble-rosidl-typesupport-interface + - ros-humble-rpyutils + - ros2-distro-mutex 0.7.* humble_* + - __glibc >=2.17,<3.0.a0 + - libstdcxx >=13 + - libgcc >=13 + - python_abi 3.11.* *_cp311 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + - numpy >=1.26.4,<2.0a0 + license: BSD-3-Clause + size: 60473 + timestamp: 1753310477459 +- conda: https://prefix.dev/robostack-staging/linux-aarch64/ros-humble-rosidl-generator-py-0.14.4-np126py311hbdd918e_13.conda + sha256: 33ee7375885d6a81e1f41d55a51e83a10ac17a4bea1d1a510eb07865cb5364d4 + md5: 212a6c3cfc96b1d2341a523f3ae664ef + depends: + - numpy + - python + - ros-humble-ament-cmake + - ros-humble-ament-index-python + - ros-humble-python-cmake-module + - ros-humble-rmw + - ros-humble-ros-workspace + - ros-humble-rosidl-cli + - ros-humble-rosidl-cmake + - ros-humble-rosidl-generator-c + - ros-humble-rosidl-parser + - ros-humble-rosidl-runtime-c + - ros-humble-rosidl-typesupport-c + - ros-humble-rosidl-typesupport-interface + - ros-humble-rpyutils + - ros2-distro-mutex 0.7.* humble_* + - libgcc >=13 + - libstdcxx >=13 + - libgcc >=13 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + - numpy >=1.26.4,<2.0a0 + - python_abi 3.11.* *_cp311 + license: BSD-3-Clause + size: 60357 + timestamp: 1753312204107 +- conda: https://prefix.dev/robostack-staging/osx-arm64/ros-humble-rosidl-generator-py-0.14.4-np126py311h2a51a2c_13.conda + sha256: 8710a54982d9c8c9346382517656b931ad5c29dd58b41cb9d8a7eb8e2facc68e + md5: 14d12f7ce360c75357b9937720d12302 + depends: + - numpy + - python + - ros-humble-ament-cmake + - ros-humble-ament-index-python + - ros-humble-python-cmake-module + - ros-humble-rmw + - ros-humble-ros-workspace + - ros-humble-rosidl-cli + - ros-humble-rosidl-cmake + - ros-humble-rosidl-generator-c + - ros-humble-rosidl-parser + - ros-humble-rosidl-runtime-c + - ros-humble-rosidl-typesupport-c + - ros-humble-rosidl-typesupport-interface + - ros-humble-rpyutils + - ros2-distro-mutex 0.7.* humble_* + - __osx >=11.0 + - libcxx >=18 + - numpy >=1.26.4,<2.0a0 + - python_abi 3.11.* *_cp311 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + license: BSD-3-Clause + size: 60616 + timestamp: 1753311053081 +- conda: https://prefix.dev/robostack-staging/win-64/ros-humble-rosidl-generator-py-0.14.4-np126py311hd5de103_13.conda + sha256: 5b5a027990788a272d186ed4050b23f2bc1831ddfdd8da550c387822148288a5 + md5: ec197246c8f9bb57b8b544e802064863 + depends: + - numpy + - python + - ros-humble-ament-cmake + - ros-humble-ament-index-python + - ros-humble-python-cmake-module + - ros-humble-rmw + - ros-humble-ros-workspace + - ros-humble-rosidl-cli + - ros-humble-rosidl-cmake + - ros-humble-rosidl-generator-c + - ros-humble-rosidl-parser + - ros-humble-rosidl-runtime-c + - ros-humble-rosidl-typesupport-c + - ros-humble-rosidl-typesupport-interface + - ros-humble-rpyutils + - ros2-distro-mutex 0.7.* humble_* + - vc >=14.3,<15 + - vc14_runtime >=14.44.35208 + - ucrt >=10.0.20348.0 + - vc >=14.3,<15 + - vc14_runtime >=14.44.35208 + - ucrt >=10.0.20348.0 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + - python_abi 3.11.* *_cp311 + - numpy >=1.26.4,<2.0a0 + license: BSD-3-Clause + size: 57403 + timestamp: 1753322557737 +- conda: https://prefix.dev/robostack-staging/linux-64/ros-humble-rosidl-parser-3.1.6-np126py311hbc2a38a_13.conda + sha256: e5ad966361dbdfa2b8095c8941af05a2298eb0322d95d0f4064384e4571b5df3 + md5: a8c00bdac81f288a6dcb84cd1928186f + depends: + - lark-parser + - python + - ros-humble-ros-workspace + - ros-humble-rosidl-adapter + - ros2-distro-mutex 0.7.* humble_* + - __glibc >=2.17,<3.0.a0 + - libgcc >=13 + - libstdcxx >=13 + - libgcc >=13 + - numpy >=1.26.4,<2.0a0 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + - python_abi 3.11.* *_cp311 + license: BSD-3-Clause + size: 60113 + timestamp: 1753309850541 +- conda: https://prefix.dev/robostack-staging/linux-aarch64/ros-humble-rosidl-parser-3.1.6-np126py311hbdd918e_13.conda + sha256: 1587d05b980333b2d4c5aa1664b4ff02d917e19d71cf620c94b8729f8a9b8580 + md5: 8b0c6ade1a81a1433024ffcf8457ae29 + depends: + - lark-parser + - python + - ros-humble-ros-workspace + - ros-humble-rosidl-adapter + - ros2-distro-mutex 0.7.* humble_* + - libstdcxx >=13 + - libgcc >=13 + - python_abi 3.11.* *_cp311 + - numpy >=1.26.4,<2.0a0 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + license: BSD-3-Clause + size: 59984 + timestamp: 1753309625093 +- conda: https://prefix.dev/robostack-staging/osx-arm64/ros-humble-rosidl-parser-3.1.6-np126py311h2a51a2c_13.conda + sha256: 9bdc612abe00af572a63cd9ab0c055ee311ea381cd2847e09a95eca9bac9dce4 + md5: 5ae230eecdb490f0f871569fe95d9d4f + depends: + - lark-parser + - python + - ros-humble-ros-workspace + - ros-humble-rosidl-adapter + - ros2-distro-mutex 0.7.* humble_* + - libcxx >=18 + - __osx >=11.0 + - numpy >=1.26.4,<2.0a0 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + - python_abi 3.11.* *_cp311 + license: BSD-3-Clause + size: 60255 + timestamp: 1753310323287 +- conda: https://prefix.dev/robostack-staging/win-64/ros-humble-rosidl-parser-3.1.6-np126py311hd5de103_13.conda + sha256: e11a5aafd5ebfb5e92b1d7ae063ae5a59525b71cad6c31cc3f878468c8d5425b + md5: ac2955a245a0564fa7f7ae949209cf03 + depends: + - lark-parser + - python + - ros-humble-ros-workspace + - ros-humble-rosidl-adapter + - ros2-distro-mutex 0.7.* humble_* + - vc >=14.3,<15 + - vc14_runtime >=14.44.35208 + - ucrt >=10.0.20348.0 + - vc >=14.3,<15 + - vc14_runtime >=14.44.35208 + - ucrt >=10.0.20348.0 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + - python_abi 3.11.* *_cp311 + - numpy >=1.26.4,<2.0a0 + license: BSD-3-Clause + size: 57073 + timestamp: 1753318767246 +- conda: https://prefix.dev/robostack-staging/linux-64/ros-humble-rosidl-runtime-c-3.1.6-np126py311hbc2a38a_13.conda + sha256: a192468b4f1ddfdb9759469e2dbedd49248c8c98d4d95d571b82c01ca884c042 + md5: 7da60492abfb83b9734baa8cdb2181f8 + depends: + - python + - ros-humble-ament-cmake + - ros-humble-rcutils + - ros-humble-ros-workspace + - ros-humble-rosidl-typesupport-interface + - ros2-distro-mutex 0.7.* humble_* + - libstdcxx >=13 + - libgcc >=13 + - __glibc >=2.17,<3.0.a0 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + - numpy >=1.26.4,<2.0a0 + - python_abi 3.11.* *_cp311 + license: BSD-3-Clause + size: 47891 + timestamp: 1753310014127 +- conda: https://prefix.dev/robostack-staging/linux-aarch64/ros-humble-rosidl-runtime-c-3.1.6-np126py311hbdd918e_13.conda + sha256: d912293c42e6e05f62be8b42e7ca0f921fa7993fdd5794c45c623717ce2d044e + md5: 7faff48b4ffc19e75872f023b222f0c2 + depends: + - python + - ros-humble-ament-cmake + - ros-humble-rcutils + - ros-humble-ros-workspace + - ros-humble-rosidl-typesupport-interface + - ros2-distro-mutex 0.7.* humble_* + - libstdcxx >=13 + - libgcc >=13 + - python_abi 3.11.* *_cp311 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + - numpy >=1.26.4,<2.0a0 + license: BSD-3-Clause + size: 49832 + timestamp: 1753309790407 +- conda: https://prefix.dev/robostack-staging/osx-arm64/ros-humble-rosidl-runtime-c-3.1.6-np126py311h2a51a2c_13.conda + sha256: 5c7c77953a73be549c51018c4de036735252f28915887f26ef35230ff1160a61 + md5: f6e9ac6fdd5ed49de00da4897073d735 + depends: + - python + - ros-humble-ament-cmake + - ros-humble-rcutils + - ros-humble-ros-workspace + - ros-humble-rosidl-typesupport-interface + - ros2-distro-mutex 0.7.* humble_* + - __osx >=11.0 + - libcxx >=18 + - python_abi 3.11.* *_cp311 + - numpy >=1.26.4,<2.0a0 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + license: BSD-3-Clause + size: 45238 + timestamp: 1753310539752 +- conda: https://prefix.dev/robostack-staging/win-64/ros-humble-rosidl-runtime-c-3.1.6-np126py311hd5de103_13.conda + sha256: b03baf66499c4c8029157e90e085b83df5392c01d4c5139a2ca1931855e80b4d + md5: 2ee2815435f46d771ede458f5b531bdd + depends: + - python + - ros-humble-ament-cmake + - ros-humble-rcutils + - ros-humble-ros-workspace + - ros-humble-rosidl-typesupport-interface + - ros2-distro-mutex 0.7.* humble_* + - vc >=14.3,<15 + - vc14_runtime >=14.44.35208 + - ucrt >=10.0.20348.0 + - vc >=14.3,<15 + - vc14_runtime >=14.44.35208 + - ucrt >=10.0.20348.0 + - python_abi 3.11.* *_cp311 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + - numpy >=1.26.4,<2.0a0 + license: BSD-3-Clause + size: 47252 + timestamp: 1753319833199 +- conda: https://prefix.dev/robostack-staging/linux-64/ros-humble-rosidl-runtime-cpp-3.1.6-np126py311hbc2a38a_13.conda + sha256: b1c4ae4d9f11aa183a38b88fa83398e9a4f33ad7ca0c98beb89c6ffe6c92a79d + md5: 7ff0399c8bd027e5ea30052264e4c597 + depends: + - python + - ros-humble-ament-cmake + - ros-humble-ros-workspace + - ros-humble-rosidl-runtime-c + - ros2-distro-mutex 0.7.* humble_* + - libstdcxx >=13 + - libgcc >=13 + - __glibc >=2.17,<3.0.a0 + - python_abi 3.11.* *_cp311 + - numpy >=1.26.4,<2.0a0 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + license: BSD-3-Clause + size: 35502 + timestamp: 1753310080648 +- conda: https://prefix.dev/robostack-staging/linux-aarch64/ros-humble-rosidl-runtime-cpp-3.1.6-np126py311hbdd918e_13.conda + sha256: a2c17c18a95a755c71dc170f06f38f31e859571a1b5f13b8047a3f2bf8ba50d2 + md5: c4c102163d411de449335af7b4822fb2 + depends: + - python + - ros-humble-ament-cmake + - ros-humble-ros-workspace + - ros-humble-rosidl-runtime-c + - ros2-distro-mutex 0.7.* humble_* + - libstdcxx >=13 + - libgcc >=13 + - numpy >=1.26.4,<2.0a0 + - python_abi 3.11.* *_cp311 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + license: BSD-3-Clause + size: 35362 + timestamp: 1753311761649 +- conda: https://prefix.dev/robostack-staging/osx-arm64/ros-humble-rosidl-runtime-cpp-3.1.6-np126py311h2a51a2c_13.conda + sha256: 65b1e44b46467512ecfd0d305fcc855c518d968020d985c5146f2035ee9f3dbe + md5: 536b32b6f2e6865ba588a85f24a69373 + depends: + - python + - ros-humble-ament-cmake + - ros-humble-ros-workspace + - ros-humble-rosidl-runtime-c + - ros2-distro-mutex 0.7.* humble_* + - __osx >=11.0 + - libcxx >=18 + - python_abi 3.11.* *_cp311 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + - numpy >=1.26.4,<2.0a0 + license: BSD-3-Clause + size: 35588 + timestamp: 1753310614204 +- conda: https://prefix.dev/robostack-staging/win-64/ros-humble-rosidl-runtime-cpp-3.1.6-np126py311hd5de103_13.conda + sha256: 53ff893d01e0a722c54da5d12c061698ede0e5c6defbbb68c712bb7380ef1464 + md5: 2abad7b49dd829de4b13d52f270ecc7c + depends: + - python + - ros-humble-ament-cmake + - ros-humble-ros-workspace + - ros-humble-rosidl-runtime-c + - ros2-distro-mutex 0.7.* humble_* + - vc >=14.3,<15 + - vc14_runtime >=14.44.35208 + - ucrt >=10.0.20348.0 + - vc >=14.3,<15 + - vc14_runtime >=14.44.35208 + - ucrt >=10.0.20348.0 + - numpy >=1.26.4,<2.0a0 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + - python_abi 3.11.* *_cp311 + license: BSD-3-Clause + size: 32119 + timestamp: 1753320378139 +- conda: https://prefix.dev/robostack-staging/linux-64/ros-humble-rosidl-runtime-py-0.9.3-np126py311hbc2a38a_13.conda + sha256: f896071a2d49a401ef1561bc0f7ca05b5581ca9329ffa520f8199f9cd775826b + md5: dffd0c81a4116046636f444c29b8f304 + depends: + - numpy + - python + - pyyaml + - ros-humble-ros-workspace + - ros-humble-rosidl-parser + - ros2-distro-mutex 0.7.* humble_* + - __glibc >=2.17,<3.0.a0 + - libstdcxx >=13 + - libgcc >=13 + - python_abi 3.11.* *_cp311 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + - numpy >=1.26.4,<2.0a0 + license: BSD-3-Clause + size: 45877 + timestamp: 1753312279600 +- conda: https://prefix.dev/robostack-staging/linux-aarch64/ros-humble-rosidl-runtime-py-0.9.3-np126py311hbdd918e_13.conda + sha256: d139c9bfd04bccf58aab441ff20c51f3fe9fcb62333670237bad4d1f807eccd3 + md5: 54fa0dc738eb801bbf31392411dd292c + depends: + - numpy + - python + - pyyaml + - ros-humble-ros-workspace + - ros-humble-rosidl-parser + - ros2-distro-mutex 0.7.* humble_* + - libstdcxx >=13 + - libgcc >=13 + - numpy >=1.26.4,<2.0a0 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + - python_abi 3.11.* *_cp311 + license: BSD-3-Clause + size: 45768 + timestamp: 1753312687825 +- conda: https://prefix.dev/robostack-staging/osx-arm64/ros-humble-rosidl-runtime-py-0.9.3-np126py311h2a51a2c_13.conda + sha256: 9c7a5e41901119babafa95fc1443d7c555147d5918ef05b7828fe098b28b89a0 + md5: 74036de89a14e28305b9627052acfe8e + depends: + - numpy + - python + - pyyaml + - ros-humble-ros-workspace + - ros-humble-rosidl-parser + - ros2-distro-mutex 0.7.* humble_* + - __osx >=11.0 + - libcxx >=18 + - python_abi 3.11.* *_cp311 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + - numpy >=1.26.4,<2.0a0 + license: BSD-3-Clause + size: 45926 + timestamp: 1753311814364 +- conda: https://prefix.dev/robostack-staging/win-64/ros-humble-rosidl-runtime-py-0.9.3-np126py311hd5de103_13.conda + sha256: a36c9405b36cdf7cd5cefb90e2a772907f46a66c552d8c2663fb2062b32eefbe + md5: 9d793a675faddfb7c84901fc3f743596 + depends: + - numpy + - python + - pyyaml + - ros-humble-ros-workspace + - ros-humble-rosidl-parser + - ros2-distro-mutex 0.7.* humble_* + - vc >=14.3,<15 + - vc14_runtime >=14.44.35208 + - ucrt >=10.0.20348.0 + - vc >=14.3,<15 + - vc14_runtime >=14.44.35208 + - ucrt >=10.0.20348.0 + - numpy >=1.26.4,<2.0a0 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + - python_abi 3.11.* *_cp311 + license: BSD-3-Clause + size: 38982 + timestamp: 1753326616346 +- conda: https://prefix.dev/robostack-staging/linux-64/ros-humble-rosidl-typesupport-c-2.0.2-np126py311hbc2a38a_13.conda + sha256: d7224826ccad8fa541d67f5d122611ae72e73cf610af296aae26fb320d6a54ae + md5: 83f6206966603226b14530dde1627f34 + depends: + - python + - ros-humble-ament-cmake-core + - ros-humble-ament-index-python + - ros-humble-rcpputils + - ros-humble-rcutils + - ros-humble-ros-workspace + - ros-humble-rosidl-cli + - ros-humble-rosidl-runtime-c + - ros-humble-rosidl-typesupport-fastrtps-c + - ros-humble-rosidl-typesupport-interface + - ros-humble-rosidl-typesupport-introspection-c + - ros2-distro-mutex 0.7.* humble_* + - libgcc >=13 + - libstdcxx >=13 + - libgcc >=13 + - __glibc >=2.17,<3.0.a0 + - numpy >=1.26.4,<2.0a0 + - python_abi 3.11.* *_cp311 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + license: BSD-3-Clause + size: 49253 + timestamp: 1753310431896 +- conda: https://prefix.dev/robostack-staging/linux-aarch64/ros-humble-rosidl-typesupport-c-2.0.2-np126py311hbdd918e_13.conda + sha256: 1e21f44f460c6a1769d464634ea80fce21370b2b1f0b4281b664ca9a03ae3751 + md5: 1f020673daed1811c14ef93cc17fbd07 + depends: + - python + - ros-humble-ament-cmake-core + - ros-humble-ament-index-python + - ros-humble-rcpputils + - ros-humble-rcutils + - ros-humble-ros-workspace + - ros-humble-rosidl-cli + - ros-humble-rosidl-runtime-c + - ros-humble-rosidl-typesupport-fastrtps-c + - ros-humble-rosidl-typesupport-interface + - ros-humble-rosidl-typesupport-introspection-c + - ros2-distro-mutex 0.7.* humble_* + - libgcc >=13 + - libstdcxx >=13 + - libgcc >=13 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + - python_abi 3.11.* *_cp311 + - numpy >=1.26.4,<2.0a0 + license: BSD-3-Clause + size: 49231 + timestamp: 1753312161946 +- conda: https://prefix.dev/robostack-staging/osx-arm64/ros-humble-rosidl-typesupport-c-2.0.2-np126py311h2a51a2c_13.conda + sha256: c3329a575b7373a6972a82130560df82af9adfe49de188620744eceed69f6a94 + md5: 4c40cdcc22db4da3f3b4560d0e3e4f89 + depends: + - python + - ros-humble-ament-cmake-core + - ros-humble-ament-index-python + - ros-humble-rcpputils + - ros-humble-rcutils + - ros-humble-ros-workspace + - ros-humble-rosidl-cli + - ros-humble-rosidl-runtime-c + - ros-humble-rosidl-typesupport-fastrtps-c + - ros-humble-rosidl-typesupport-interface + - ros-humble-rosidl-typesupport-introspection-c + - ros2-distro-mutex 0.7.* humble_* + - libcxx >=18 + - __osx >=11.0 + - python_abi 3.11.* *_cp311 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + - numpy >=1.26.4,<2.0a0 + license: BSD-3-Clause + size: 48517 + timestamp: 1753310992086 +- conda: https://prefix.dev/robostack-staging/win-64/ros-humble-rosidl-typesupport-c-2.0.2-np126py311hd5de103_13.conda + sha256: 089ea8a2ba73ed143f9306c168f25b9bcc309a21b4fa3e37779203f226f56201 + md5: ebdf39f3099c9c816c7a022df88fdda7 + depends: + - python + - ros-humble-ament-cmake-core + - ros-humble-ament-index-python + - ros-humble-rcpputils + - ros-humble-rcutils + - ros-humble-ros-workspace + - ros-humble-rosidl-cli + - ros-humble-rosidl-runtime-c + - ros-humble-rosidl-typesupport-fastrtps-c + - ros-humble-rosidl-typesupport-interface + - ros-humble-rosidl-typesupport-introspection-c + - ros2-distro-mutex 0.7.* humble_* + - vc >=14.3,<15 + - vc14_runtime >=14.44.35208 + - ucrt >=10.0.20348.0 + - vc >=14.3,<15 + - vc14_runtime >=14.44.35208 + - ucrt >=10.0.20348.0 + - python_abi 3.11.* *_cp311 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + - numpy >=1.26.4,<2.0a0 + license: BSD-3-Clause + size: 49314 + timestamp: 1753322274140 +- conda: https://prefix.dev/robostack-staging/linux-64/ros-humble-rosidl-typesupport-cpp-2.0.2-np126py311hbc2a38a_13.conda + sha256: d253d7cb2eb09ba4e1aba0e1d18f14ced7b8cf80d7e64f580f985ffd4fd95d3c + md5: 67a66cf0c06e65f9c3bba408d78a1b58 + depends: + - python + - ros-humble-ament-cmake-core + - ros-humble-ament-index-python + - ros-humble-rcpputils + - ros-humble-rcutils + - ros-humble-ros-workspace + - ros-humble-rosidl-cli + - ros-humble-rosidl-runtime-c + - ros-humble-rosidl-runtime-cpp + - ros-humble-rosidl-typesupport-c + - ros-humble-rosidl-typesupport-fastrtps-cpp + - ros-humble-rosidl-typesupport-interface + - ros-humble-rosidl-typesupport-introspection-cpp + - ros2-distro-mutex 0.7.* humble_* + - __glibc >=2.17,<3.0.a0 + - libstdcxx >=13 + - libgcc >=13 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + - numpy >=1.26.4,<2.0a0 + - python_abi 3.11.* *_cp311 + license: BSD-3-Clause + size: 48261 + timestamp: 1753310471154 +- conda: https://prefix.dev/robostack-staging/linux-aarch64/ros-humble-rosidl-typesupport-cpp-2.0.2-np126py311hbdd918e_13.conda + sha256: cdac0126884ea446558eb18c22d4bf51529562bbb68c8deff678b049782a0c8b + md5: 02c32989ff83f6ddc9999bb953bfe18c + depends: + - python + - ros-humble-ament-cmake-core + - ros-humble-ament-index-python + - ros-humble-rcpputils + - ros-humble-rcutils + - ros-humble-ros-workspace + - ros-humble-rosidl-cli + - ros-humble-rosidl-runtime-c + - ros-humble-rosidl-runtime-cpp + - ros-humble-rosidl-typesupport-c + - ros-humble-rosidl-typesupport-fastrtps-cpp + - ros-humble-rosidl-typesupport-interface + - ros-humble-rosidl-typesupport-introspection-cpp + - ros2-distro-mutex 0.7.* humble_* + - libstdcxx >=13 + - libgcc >=13 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + - python_abi 3.11.* *_cp311 + - numpy >=1.26.4,<2.0a0 + license: BSD-3-Clause + size: 48340 + timestamp: 1753312199008 +- conda: https://prefix.dev/robostack-staging/osx-arm64/ros-humble-rosidl-typesupport-cpp-2.0.2-np126py311h2a51a2c_13.conda + sha256: 26c8e85e167ea01a714bd747f96d2ad37072068ef694f5885dae3590fd10ec71 + md5: 22ca30e72d516c5bf3e00eb950380a99 + depends: + - python + - ros-humble-ament-cmake-core + - ros-humble-ament-index-python + - ros-humble-rcpputils + - ros-humble-rcutils + - ros-humble-ros-workspace + - ros-humble-rosidl-cli + - ros-humble-rosidl-runtime-c + - ros-humble-rosidl-runtime-cpp + - ros-humble-rosidl-typesupport-c + - ros-humble-rosidl-typesupport-fastrtps-cpp + - ros-humble-rosidl-typesupport-interface + - ros-humble-rosidl-typesupport-introspection-cpp + - ros2-distro-mutex 0.7.* humble_* + - libcxx >=18 + - __osx >=11.0 + - python_abi 3.11.* *_cp311 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + - numpy >=1.26.4,<2.0a0 + license: BSD-3-Clause + size: 47731 + timestamp: 1753311043801 +- conda: https://prefix.dev/robostack-staging/win-64/ros-humble-rosidl-typesupport-cpp-2.0.2-np126py311hd5de103_13.conda + sha256: daf0fb3e9c89222c60579015d6c3d76def472a5ed7ea17ed97835a16bf42627d + md5: 72e01312597bda742aaacce2b19a58ee + depends: + - python + - ros-humble-ament-cmake-core + - ros-humble-ament-index-python + - ros-humble-rcpputils + - ros-humble-rcutils + - ros-humble-ros-workspace + - ros-humble-rosidl-cli + - ros-humble-rosidl-runtime-c + - ros-humble-rosidl-runtime-cpp + - ros-humble-rosidl-typesupport-c + - ros-humble-rosidl-typesupport-fastrtps-cpp + - ros-humble-rosidl-typesupport-interface + - ros-humble-rosidl-typesupport-introspection-cpp + - ros2-distro-mutex 0.7.* humble_* + - vc >=14.3,<15 + - vc14_runtime >=14.44.35208 + - ucrt >=10.0.20348.0 + - vc >=14.3,<15 + - vc14_runtime >=14.44.35208 + - ucrt >=10.0.20348.0 + - python_abi 3.11.* *_cp311 + - numpy >=1.26.4,<2.0a0 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + license: BSD-3-Clause + size: 48599 + timestamp: 1753322473989 +- conda: https://prefix.dev/robostack-staging/linux-64/ros-humble-rosidl-typesupport-fastrtps-c-2.2.2-np126py311hbc2a38a_13.conda + sha256: 6e90bf11a116585e6bd674185d4a3138989063323c611b31b3b45423f1ecd247 + md5: e204519f1511a6ec75303f5971ceec7c + depends: + - python + - ros-humble-ament-cmake-ros + - ros-humble-ament-index-python + - ros-humble-fastcdr + - ros-humble-fastrtps-cmake-module + - ros-humble-rmw + - ros-humble-ros-workspace + - ros-humble-rosidl-cli + - ros-humble-rosidl-cmake + - ros-humble-rosidl-generator-c + - ros-humble-rosidl-runtime-c + - ros-humble-rosidl-runtime-cpp + - ros-humble-rosidl-typesupport-fastrtps-cpp + - ros-humble-rosidl-typesupport-interface + - ros2-distro-mutex 0.7.* humble_* + - __glibc >=2.17,<3.0.a0 + - libstdcxx >=13 + - libgcc >=13 + - python_abi 3.11.* *_cp311 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + - numpy >=1.26.4,<2.0a0 + license: BSD-3-Clause + size: 48569 + timestamp: 1753310358501 +- conda: https://prefix.dev/robostack-staging/linux-aarch64/ros-humble-rosidl-typesupport-fastrtps-c-2.2.2-np126py311hbdd918e_13.conda + sha256: 46822fff43be45071676f732bea3d36b5c47db76ad46b64a12739ae42d7de587 + md5: e1560df4242f348e9aae6f0cb88b2e98 + depends: + - python + - ros-humble-ament-cmake-ros + - ros-humble-ament-index-python + - ros-humble-fastcdr + - ros-humble-fastrtps-cmake-module + - ros-humble-rmw + - ros-humble-ros-workspace + - ros-humble-rosidl-cli + - ros-humble-rosidl-cmake + - ros-humble-rosidl-generator-c + - ros-humble-rosidl-runtime-c + - ros-humble-rosidl-runtime-cpp + - ros-humble-rosidl-typesupport-fastrtps-cpp + - ros-humble-rosidl-typesupport-interface + - ros2-distro-mutex 0.7.* humble_* + - libstdcxx >=13 + - libgcc >=13 + - numpy >=1.26.4,<2.0a0 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + - python_abi 3.11.* *_cp311 + license: BSD-3-Clause + size: 48734 + timestamp: 1753312055188 +- conda: https://prefix.dev/robostack-staging/osx-arm64/ros-humble-rosidl-typesupport-fastrtps-c-2.2.2-np126py311h2a51a2c_13.conda + sha256: 5bb76fe945b15e3fe4c9c4db584987c6f7b71d856247794bb29f39df8564a12d + md5: e6f92a4c8bd7df6ebe9fe640fa34f877 + depends: + - python + - ros-humble-ament-cmake-ros + - ros-humble-ament-index-python + - ros-humble-fastcdr + - ros-humble-fastrtps-cmake-module + - ros-humble-rmw + - ros-humble-ros-workspace + - ros-humble-rosidl-cli + - ros-humble-rosidl-cmake + - ros-humble-rosidl-generator-c + - ros-humble-rosidl-runtime-c + - ros-humble-rosidl-runtime-cpp + - ros-humble-rosidl-typesupport-fastrtps-cpp + - ros-humble-rosidl-typesupport-interface + - ros2-distro-mutex 0.7.* humble_* + - __osx >=11.0 + - libcxx >=18 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + - numpy >=1.26.4,<2.0a0 + - python_abi 3.11.* *_cp311 + license: BSD-3-Clause + size: 48099 + timestamp: 1753310899131 +- conda: https://prefix.dev/robostack-staging/win-64/ros-humble-rosidl-typesupport-fastrtps-c-2.2.2-np126py311hd5de103_13.conda + sha256: 5ca478a5e3321f9c0f2cd2e375c1d6bd2c2e1fdbd01891c0eae857f7bcda7822 + md5: 21813552c1831acbb4a15c72a28a75bd + depends: + - python + - ros-humble-ament-cmake-ros + - ros-humble-ament-index-python + - ros-humble-fastcdr + - ros-humble-fastrtps-cmake-module + - ros-humble-rmw + - ros-humble-ros-workspace + - ros-humble-rosidl-cli + - ros-humble-rosidl-cmake + - ros-humble-rosidl-generator-c + - ros-humble-rosidl-runtime-c + - ros-humble-rosidl-runtime-cpp + - ros-humble-rosidl-typesupport-fastrtps-cpp + - ros-humble-rosidl-typesupport-interface + - ros2-distro-mutex 0.7.* humble_* + - vc >=14.3,<15 + - vc14_runtime >=14.44.35208 + - ucrt >=10.0.20348.0 + - vc >=14.3,<15 + - vc14_runtime >=14.44.35208 + - ucrt >=10.0.20348.0 + - python_abi 3.11.* *_cp311 + - numpy >=1.26.4,<2.0a0 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + license: BSD-3-Clause + size: 49554 + timestamp: 1753322012544 +- conda: https://prefix.dev/robostack-staging/linux-64/ros-humble-rosidl-typesupport-fastrtps-cpp-2.2.2-np126py311hbc2a38a_13.conda + sha256: ea2965c714b0179d2282ccb8f2179185a0b7793d3c5fb04fa1ec46690a829ab7 + md5: 45ac398aa96b8fee98181bb58c889a9c + depends: + - python + - ros-humble-ament-cmake-ros + - ros-humble-ament-index-python + - ros-humble-fastcdr + - ros-humble-fastrtps-cmake-module + - ros-humble-rmw + - ros-humble-ros-workspace + - ros-humble-rosidl-cli + - ros-humble-rosidl-cmake + - ros-humble-rosidl-generator-cpp + - ros-humble-rosidl-runtime-c + - ros-humble-rosidl-runtime-cpp + - ros-humble-rosidl-typesupport-interface + - ros2-distro-mutex 0.7.* humble_* + - libstdcxx >=13 + - libgcc >=13 + - __glibc >=2.17,<3.0.a0 + - numpy >=1.26.4,<2.0a0 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + - python_abi 3.11.* *_cp311 + license: BSD-3-Clause + size: 50901 + timestamp: 1753310208201 +- conda: https://prefix.dev/robostack-staging/linux-aarch64/ros-humble-rosidl-typesupport-fastrtps-cpp-2.2.2-np126py311hbdd918e_13.conda + sha256: 04ce945e770c0e876dd01cfe105ea3ab1c564b483013a61dbf85c0376ae14d2e + md5: f7ceed905e352c20f63a88bb6e3d5fd6 + depends: + - python + - ros-humble-ament-cmake-ros + - ros-humble-ament-index-python + - ros-humble-fastcdr + - ros-humble-fastrtps-cmake-module + - ros-humble-rmw + - ros-humble-ros-workspace + - ros-humble-rosidl-cli + - ros-humble-rosidl-cmake + - ros-humble-rosidl-generator-cpp + - ros-humble-rosidl-runtime-c + - ros-humble-rosidl-runtime-cpp + - ros-humble-rosidl-typesupport-interface + - ros2-distro-mutex 0.7.* humble_* + - libstdcxx >=13 + - libgcc >=13 + - python_abi 3.11.* *_cp311 + - numpy >=1.26.4,<2.0a0 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + license: BSD-3-Clause + size: 51028 + timestamp: 1753311909136 +- conda: https://prefix.dev/robostack-staging/osx-arm64/ros-humble-rosidl-typesupport-fastrtps-cpp-2.2.2-np126py311h2a51a2c_13.conda + sha256: e366e565890c41052c1943a0d7db9c72271b9980ed38e51d061ba90d129468a7 + md5: 93702deb28de7e2a07f012e41a7fdf8f + depends: + - python + - ros-humble-ament-cmake-ros + - ros-humble-ament-index-python + - ros-humble-fastcdr + - ros-humble-fastrtps-cmake-module + - ros-humble-rmw + - ros-humble-ros-workspace + - ros-humble-rosidl-cli + - ros-humble-rosidl-cmake + - ros-humble-rosidl-generator-cpp + - ros-humble-rosidl-runtime-c + - ros-humble-rosidl-runtime-cpp + - ros-humble-rosidl-typesupport-interface + - ros2-distro-mutex 0.7.* humble_* + - libcxx >=18 + - __osx >=11.0 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + - numpy >=1.26.4,<2.0a0 + - python_abi 3.11.* *_cp311 + license: BSD-3-Clause + size: 50326 + timestamp: 1753310778806 +- conda: https://prefix.dev/robostack-staging/win-64/ros-humble-rosidl-typesupport-fastrtps-cpp-2.2.2-np126py311hd5de103_13.conda + sha256: 7c12457ad4480d97527493a3497bf7a04b79cc46534ef35b6db48f85de2abdcf + md5: 6a0ebeb36ee8cc4a3ab8b75b7e06787c + depends: + - python + - ros-humble-ament-cmake-ros + - ros-humble-ament-index-python + - ros-humble-fastcdr + - ros-humble-fastrtps-cmake-module + - ros-humble-rmw + - ros-humble-ros-workspace + - ros-humble-rosidl-cli + - ros-humble-rosidl-cmake + - ros-humble-rosidl-generator-cpp + - ros-humble-rosidl-runtime-c + - ros-humble-rosidl-runtime-cpp + - ros-humble-rosidl-typesupport-interface + - ros2-distro-mutex 0.7.* humble_* + - vc >=14.3,<15 + - vc14_runtime >=14.44.35208 + - ucrt >=10.0.20348.0 + - vc >=14.3,<15 + - vc14_runtime >=14.44.35208 + - ucrt >=10.0.20348.0 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + - numpy >=1.26.4,<2.0a0 + - python_abi 3.11.* *_cp311 + license: BSD-3-Clause + size: 50796 + timestamp: 1753321596363 +- conda: https://prefix.dev/robostack-staging/linux-64/ros-humble-rosidl-typesupport-interface-3.1.6-np126py311hbc2a38a_13.conda + sha256: 173a23669323e48bcca88d72286eff434a8d8f7aee65f6bac8d8cd07eef9ab99 + md5: 9fbac5db3d41389d99f9dd8eee11f67a + depends: + - python + - ros-humble-ros-workspace + - ros2-distro-mutex 0.7.* humble_* + - __glibc >=2.17,<3.0.a0 + - libgcc >=13 + - libstdcxx >=13 + - libgcc >=13 + - numpy >=1.26.4,<2.0a0 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + - python_abi 3.11.* *_cp311 + license: BSD-3-Clause + size: 28380 + timestamp: 1753309557611 +- conda: https://prefix.dev/robostack-staging/linux-aarch64/ros-humble-rosidl-typesupport-interface-3.1.6-np126py311hbdd918e_13.conda + sha256: f9b8528548c6c05370b8ec38f0a676c6009cf19d5f6f45a8e819baf64ba09a18 + md5: 438f77bd13ae60b1d61b9288ee6a391b + depends: + - python + - ros-humble-ros-workspace + - ros2-distro-mutex 0.7.* humble_* + - libstdcxx >=13 + - libgcc >=13 + - numpy >=1.26.4,<2.0a0 + - python_abi 3.11.* *_cp311 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + license: BSD-3-Clause + size: 28324 + timestamp: 1753309435736 +- conda: https://prefix.dev/robostack-staging/osx-arm64/ros-humble-rosidl-typesupport-interface-3.1.6-np126py311h2a51a2c_13.conda + sha256: cc58de55ec9dfcf89dfa3ab3f4bac78cfbcf8bc77f9cd1020d489f94226b25c8 + md5: 3d26def234ca338ecdb7f91584457fcd + depends: + - python + - ros-humble-ros-workspace + - ros2-distro-mutex 0.7.* humble_* + - __osx >=11.0 + - libcxx >=18 + - python_abi 3.11.* *_cp311 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + - numpy >=1.26.4,<2.0a0 + license: BSD-3-Clause + size: 28558 + timestamp: 1753310222434 +- conda: https://prefix.dev/robostack-staging/win-64/ros-humble-rosidl-typesupport-interface-3.1.6-np126py311hd5de103_13.conda + sha256: fa64da4245cabfcd35e16271e91a49a54cd374f5a00e82135e09865d6d522cbe + md5: 664530b0f16157cae712a20b80a9fe42 + depends: + - python + - ros-humble-ros-workspace + - ros2-distro-mutex 0.7.* humble_* + - vc >=14.3,<15 + - vc14_runtime >=14.44.35208 + - ucrt >=10.0.20348.0 + - vc >=14.3,<15 + - vc14_runtime >=14.44.35208 + - ucrt >=10.0.20348.0 + - numpy >=1.26.4,<2.0a0 + - python_abi 3.11.* *_cp311 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + license: BSD-3-Clause + size: 25142 + timestamp: 1753317762721 +- conda: https://prefix.dev/robostack-staging/linux-64/ros-humble-rosidl-typesupport-introspection-c-3.1.6-np126py311hbc2a38a_13.conda + sha256: 634a5971241eda58dc346d02c2c50e7cbb6ad0fbef80909baa81bc3b55f14c80 + md5: baf9e6fdebd6e2ded62d3eda779880b9 + depends: + - python + - ros-humble-ament-cmake + - ros-humble-ament-index-python + - ros-humble-ros-workspace + - ros-humble-rosidl-cli + - ros-humble-rosidl-cmake + - ros-humble-rosidl-parser + - ros-humble-rosidl-runtime-c + - ros2-distro-mutex 0.7.* humble_* + - libstdcxx >=13 + - libgcc >=13 + - __glibc >=2.17,<3.0.a0 + - libgcc >=13 + - python_abi 3.11.* *_cp311 + - numpy >=1.26.4,<2.0a0 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + license: BSD-3-Clause + size: 46249 + timestamp: 1753310104538 +- conda: https://prefix.dev/robostack-staging/linux-aarch64/ros-humble-rosidl-typesupport-introspection-c-3.1.6-np126py311hbdd918e_13.conda + sha256: 7689d6e4555da2bec7f9ba16fc9bbdcf6d80e702ea298642df8fb031bff615c4 + md5: 43ac043c25e79abc13b39b542778bee1 + depends: + - python + - ros-humble-ament-cmake + - ros-humble-ament-index-python + - ros-humble-ros-workspace + - ros-humble-rosidl-cli + - ros-humble-rosidl-cmake + - ros-humble-rosidl-parser + - ros-humble-rosidl-runtime-c + - ros2-distro-mutex 0.7.* humble_* + - libgcc >=13 + - libstdcxx >=13 + - libgcc >=13 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + - python_abi 3.11.* *_cp311 + - numpy >=1.26.4,<2.0a0 + license: BSD-3-Clause + size: 46615 + timestamp: 1753311794800 +- conda: https://prefix.dev/robostack-staging/osx-arm64/ros-humble-rosidl-typesupport-introspection-c-3.1.6-np126py311h2a51a2c_13.conda + sha256: a89965102d83af59ca988619746d7933eb66eb2d71d67fbaeb439ee15a2186ca + md5: 8165197001a6cb8c618df0f41cf0de10 + depends: + - python + - ros-humble-ament-cmake + - ros-humble-ament-index-python + - ros-humble-ros-workspace + - ros-humble-rosidl-cli + - ros-humble-rosidl-cmake + - ros-humble-rosidl-parser + - ros-humble-rosidl-runtime-c + - ros2-distro-mutex 0.7.* humble_* + - __osx >=11.0 + - libcxx >=18 + - numpy >=1.26.4,<2.0a0 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + - python_abi 3.11.* *_cp311 + license: BSD-3-Clause + size: 45920 + timestamp: 1753310648784 +- conda: https://prefix.dev/robostack-staging/win-64/ros-humble-rosidl-typesupport-introspection-c-3.1.6-np126py311hd5de103_13.conda + sha256: 7a356de281bab50815b4dbcb64976f7dbc3e02581d5b51c412d1b521f6b5fcf0 + md5: c3526524aa83bcbb0f6c8afb7ef4aa7e + depends: + - python + - ros-humble-ament-cmake + - ros-humble-ament-index-python + - ros-humble-ros-workspace + - ros-humble-rosidl-cli + - ros-humble-rosidl-cmake + - ros-humble-rosidl-parser + - ros-humble-rosidl-runtime-c + - ros2-distro-mutex 0.7.* humble_* + - vc >=14.3,<15 + - vc14_runtime >=14.44.35208 + - ucrt >=10.0.20348.0 + - vc >=14.3,<15 + - vc14_runtime >=14.44.35208 + - ucrt >=10.0.20348.0 + - python_abi 3.11.* *_cp311 + - numpy >=1.26.4,<2.0a0 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + license: BSD-3-Clause + size: 46484 + timestamp: 1753320719839 +- conda: https://prefix.dev/robostack-staging/linux-64/ros-humble-rosidl-typesupport-introspection-cpp-3.1.6-np126py311hbc2a38a_13.conda + sha256: 4e07e15955e22121d0176b2c7611a9a48d11c70d6e9e8d940b8c8ab30e919b00 + md5: d6cf0b066c0b5223f4c84905dbdfb98c + depends: + - python + - ros-humble-ament-cmake + - ros-humble-ament-index-python + - ros-humble-ros-workspace + - ros-humble-rosidl-cli + - ros-humble-rosidl-cmake + - ros-humble-rosidl-parser + - ros-humble-rosidl-runtime-c + - ros-humble-rosidl-runtime-cpp + - ros-humble-rosidl-typesupport-interface + - ros-humble-rosidl-typesupport-introspection-c + - ros2-distro-mutex 0.7.* humble_* + - __glibc >=2.17,<3.0.a0 + - libstdcxx >=13 + - libgcc >=13 + - python_abi 3.11.* *_cp311 + - numpy >=1.26.4,<2.0a0 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + license: BSD-3-Clause + size: 46489 + timestamp: 1753310162084 +- conda: https://prefix.dev/robostack-staging/linux-aarch64/ros-humble-rosidl-typesupport-introspection-cpp-3.1.6-np126py311hbdd918e_13.conda + sha256: a39bea2e1bb1993d71c0f91531fbd803829d05ddae70e8e54a5e5809df354ad2 + md5: 8c30e975c59cdd0035bd76b9d9e51297 + depends: + - python + - ros-humble-ament-cmake + - ros-humble-ament-index-python + - ros-humble-ros-workspace + - ros-humble-rosidl-cli + - ros-humble-rosidl-cmake + - ros-humble-rosidl-parser + - ros-humble-rosidl-runtime-c + - ros-humble-rosidl-runtime-cpp + - ros-humble-rosidl-typesupport-interface + - ros-humble-rosidl-typesupport-introspection-c + - ros2-distro-mutex 0.7.* humble_* + - libstdcxx >=13 + - libgcc >=13 + - python_abi 3.11.* *_cp311 + - numpy >=1.26.4,<2.0a0 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + license: BSD-3-Clause + size: 46799 + timestamp: 1753311853451 +- conda: https://prefix.dev/robostack-staging/osx-arm64/ros-humble-rosidl-typesupport-introspection-cpp-3.1.6-np126py311h2a51a2c_13.conda + sha256: 655d08ab740b6e828083e0c5f5c8a33a03a4f114d77165f3488a08b90d7bd3c6 + md5: 0848cc3e8d8cf4698591465a20c31295 + depends: + - python + - ros-humble-ament-cmake + - ros-humble-ament-index-python + - ros-humble-ros-workspace + - ros-humble-rosidl-cli + - ros-humble-rosidl-cmake + - ros-humble-rosidl-parser + - ros-humble-rosidl-runtime-c + - ros-humble-rosidl-runtime-cpp + - ros-humble-rosidl-typesupport-interface + - ros-humble-rosidl-typesupport-introspection-c + - ros2-distro-mutex 0.7.* humble_* + - libcxx >=18 + - __osx >=11.0 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + - numpy >=1.26.4,<2.0a0 + - python_abi 3.11.* *_cp311 + license: BSD-3-Clause + size: 46121 + timestamp: 1753310710733 +- conda: https://prefix.dev/robostack-staging/win-64/ros-humble-rosidl-typesupport-introspection-cpp-3.1.6-np126py311hd5de103_13.conda + sha256: 6c7b681f62c74fe72e408374df5fcfa5169b8676eae491da0f45bd7219451d3b + md5: 95f58ba92ba65a07dfbcc13251d01b1d + depends: + - python + - ros-humble-ament-cmake + - ros-humble-ament-index-python + - ros-humble-ros-workspace + - ros-humble-rosidl-cli + - ros-humble-rosidl-cmake + - ros-humble-rosidl-parser + - ros-humble-rosidl-runtime-c + - ros-humble-rosidl-runtime-cpp + - ros-humble-rosidl-typesupport-interface + - ros-humble-rosidl-typesupport-introspection-c + - ros2-distro-mutex 0.7.* humble_* + - vc >=14.3,<15 + - vc14_runtime >=14.44.35208 + - ucrt >=10.0.20348.0 + - vc >=14.3,<15 + - vc14_runtime >=14.44.35208 + - ucrt >=10.0.20348.0 + - numpy >=1.26.4,<2.0a0 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + - python_abi 3.11.* *_cp311 + license: BSD-3-Clause + size: 46827 + timestamp: 1753321302009 +- conda: https://prefix.dev/robostack-staging/linux-64/ros-humble-rpyutils-0.2.1-np126py311hbc2a38a_13.conda + sha256: d88f4d08ac0ca071a178d371f232eb1e4fbe09864333d12b26e2091f4be3056f + md5: b0592615a16741a80c5d809660ba6231 + depends: + - python + - ros-humble-ros-workspace + - ros2-distro-mutex 0.7.* humble_* + - __glibc >=2.17,<3.0.a0 + - libstdcxx >=13 + - libgcc >=13 + - python_abi 3.11.* *_cp311 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + - numpy >=1.26.4,<2.0a0 + license: BSD-3-Clause + size: 25726 + timestamp: 1753308439784 +- conda: https://prefix.dev/robostack-staging/linux-aarch64/ros-humble-rpyutils-0.2.1-np126py311hbdd918e_13.conda + sha256: b5f049fceea16d5afed676b0833ad0588f0cd15a3925fb6b277d7f866d2775b8 + md5: 8023a684168719992a7066f56a1971b9 + depends: + - python + - ros-humble-ros-workspace + - ros2-distro-mutex 0.7.* humble_* + - libgcc >=13 + - libstdcxx >=13 + - libgcc >=13 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + - numpy >=1.26.4,<2.0a0 + - python_abi 3.11.* *_cp311 + license: BSD-3-Clause + size: 25694 + timestamp: 1753308576715 +- conda: https://prefix.dev/robostack-staging/osx-arm64/ros-humble-rpyutils-0.2.1-np126py311h2a51a2c_13.conda + sha256: c0f426d3bbd4d5a05de79f8c2ef88dbcafdc11d8b5bae43197e5783058c476e3 + md5: 97980a7d0429576ee3f6405ba48a7d79 + depends: + - python + - ros-humble-ros-workspace + - ros2-distro-mutex 0.7.* humble_* + - libcxx >=18 + - __osx >=11.0 + - python_abi 3.11.* *_cp311 + - numpy >=1.26.4,<2.0a0 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + license: BSD-3-Clause + size: 25826 + timestamp: 1753308890520 +- conda: https://prefix.dev/robostack-staging/win-64/ros-humble-rpyutils-0.2.1-np126py311hd5de103_13.conda + sha256: 15b8976166441b99baf94088842026a19cfd21c82a28bbc645df5373b37d1005 + md5: ddb9382b8194d9c5da245ed933ba30a9 + depends: + - python + - ros-humble-ros-workspace + - ros2-distro-mutex 0.7.* humble_* + - vc >=14.3,<15 + - vc14_runtime >=14.44.35208 + - ucrt >=10.0.20348.0 + - vc >=14.3,<15 + - vc14_runtime >=14.44.35208 + - ucrt >=10.0.20348.0 + - python_abi 3.11.* *_cp311 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + - numpy >=1.26.4,<2.0a0 + license: BSD-3-Clause + size: 18682 + timestamp: 1753312899510 +- conda: https://prefix.dev/robostack-staging/linux-64/ros-humble-rqt-action-2.0.1-np126py311hbc2a38a_13.conda + sha256: f8586abaf499a87c7ac8ed3543f5229a4638ab499c8b1faf9e98ac8e3e062703 + md5: 7ea4f014f87cbd4e5b3be46dbe6d3608 + depends: + - python + - ros-humble-python-qt-binding + - ros-humble-rclpy + - ros-humble-ros-workspace + - ros-humble-rqt-gui + - ros-humble-rqt-gui-py + - ros-humble-rqt-msg + - ros-humble-rqt-py-common + - ros2-distro-mutex 0.7.* humble_* + - libgcc >=13 + - libstdcxx >=13 + - libgcc >=13 + - __glibc >=2.17,<3.0.a0 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + - python_abi 3.11.* *_cp311 + - numpy >=1.26.4,<2.0a0 + license: BSD-3-Clause + size: 19115 + timestamp: 1753314328123 +- conda: https://prefix.dev/robostack-staging/linux-aarch64/ros-humble-rqt-action-2.0.1-np126py311hbdd918e_13.conda + sha256: 3101401ba8cd3ae55d76f0038ce1229987df51f4da41e34a88bfb6695b8669ae + md5: 69cd0e9edb5b11f4ca20960f368c8c30 + depends: + - python + - ros-humble-python-qt-binding + - ros-humble-rclpy + - ros-humble-ros-workspace + - ros-humble-rqt-gui + - ros-humble-rqt-gui-py + - ros-humble-rqt-msg + - ros-humble-rqt-py-common + - ros2-distro-mutex 0.7.* humble_* + - libstdcxx >=13 + - libgcc >=13 + - numpy >=1.26.4,<2.0a0 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + - python_abi 3.11.* *_cp311 + license: BSD-3-Clause + size: 18945 + timestamp: 1753314397691 +- conda: https://prefix.dev/robostack-staging/osx-arm64/ros-humble-rqt-action-2.0.1-np126py311h2a51a2c_13.conda + sha256: a46938a9c860d7aefc602a9b082895ba531e6917792ea9fba284957882f345d1 + md5: c028171def9069b43c6f46339162e73e + depends: + - python + - ros-humble-python-qt-binding + - ros-humble-rclpy + - ros-humble-ros-workspace + - ros-humble-rqt-gui + - ros-humble-rqt-gui-py + - ros-humble-rqt-msg + - ros-humble-rqt-py-common + - ros2-distro-mutex 0.7.* humble_* + - __osx >=11.0 + - libcxx >=18 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + - numpy >=1.26.4,<2.0a0 + - python_abi 3.11.* *_cp311 + license: BSD-3-Clause + size: 19226 + timestamp: 1753314917381 +- conda: https://prefix.dev/robostack-staging/win-64/ros-humble-rqt-action-2.0.1-np126py311hd5de103_13.conda + sha256: ea5a18e3fdd6a5c9347c34d2157662aa1602cf1932ad421d21dc0fe141c2ddf3 + md5: 9b140665e588ee7b3ba241124486b902 + depends: + - python + - ros-humble-python-qt-binding + - ros-humble-rclpy + - ros-humble-ros-workspace + - ros-humble-rqt-gui + - ros-humble-rqt-gui-py + - ros-humble-rqt-msg + - ros-humble-rqt-py-common + - ros2-distro-mutex 0.7.* humble_* + - vc >=14.3,<15 + - vc14_runtime >=14.44.35208 + - ucrt >=10.0.20348.0 + - vc >=14.3,<15 + - vc14_runtime >=14.44.35208 + - ucrt >=10.0.20348.0 + - numpy >=1.26.4,<2.0a0 + - python_abi 3.11.* *_cp311 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + license: BSD-3-Clause + size: 24538 + timestamp: 1753336757396 +- conda: https://prefix.dev/robostack-staging/linux-64/ros-humble-rqt-bag-1.1.5-np126py311hbc2a38a_13.conda + sha256: 5999198b43bc74715fd1c95a16998c64dcf226f0c3c5300a1136ff3fa7f3fa08 + md5: e4ae273b8c95be597ead9df4c18dfe3c + depends: + - python + - ros-humble-python-qt-binding + - ros-humble-rclpy + - ros-humble-ros-workspace + - ros-humble-rosbag2-py + - ros-humble-rqt-gui + - ros-humble-rqt-gui-py + - ros2-distro-mutex 0.7.* humble_* + - __glibc >=2.17,<3.0.a0 + - libstdcxx >=13 + - libgcc >=13 + - python_abi 3.11.* *_cp311 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + - numpy >=1.26.4,<2.0a0 + license: BSD-3-Clause + size: 135040 + timestamp: 1753316252015 +- conda: https://prefix.dev/robostack-staging/linux-aarch64/ros-humble-rqt-bag-1.1.5-np126py311hbdd918e_13.conda + sha256: dbd76619edd42a2a7f472aa6b72b0fb53a6e8e9a0cf3d0b872cdecc15a5b3140 + md5: b64f08545d20f332006f205e7dcccc76 + depends: + - python + - ros-humble-python-qt-binding + - ros-humble-rclpy + - ros-humble-ros-workspace + - ros-humble-rosbag2-py + - ros-humble-rqt-gui + - ros-humble-rqt-gui-py + - ros2-distro-mutex 0.7.* humble_* + - libgcc >=13 + - libstdcxx >=13 + - libgcc >=13 + - numpy >=1.26.4,<2.0a0 + - python_abi 3.11.* *_cp311 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + license: BSD-3-Clause + size: 134887 + timestamp: 1753315944078 +- conda: https://prefix.dev/robostack-staging/osx-arm64/ros-humble-rqt-bag-1.1.5-np126py311h2a51a2c_13.conda + sha256: 5a1e0b365d9d9537a4d45cc06fbce16a2c8abb898884aa330a1057c0cac8e49c + md5: 00ca0011b4877bb21593247827d7317c + depends: + - python + - ros-humble-python-qt-binding + - ros-humble-rclpy + - ros-humble-ros-workspace + - ros-humble-rosbag2-py + - ros-humble-rqt-gui + - ros-humble-rqt-gui-py + - ros2-distro-mutex 0.7.* humble_* + - __osx >=11.0 + - libcxx >=18 + - python_abi 3.11.* *_cp311 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + - numpy >=1.26.4,<2.0a0 + license: BSD-3-Clause + size: 135198 + timestamp: 1753318926300 +- conda: https://prefix.dev/robostack-staging/win-64/ros-humble-rqt-bag-1.1.5-np126py311hd5de103_13.conda + sha256: 5333fe22e27806847ac982bb68ef08e5027d48feefca4ffaa54e8f85bbd1c64a + md5: 6f5e1b46e83c2d85534394f1b70fc7e8 + depends: + - python + - ros-humble-python-qt-binding + - ros-humble-rclpy + - ros-humble-ros-workspace + - ros-humble-rosbag2-py + - ros-humble-rqt-gui + - ros-humble-rqt-gui-py + - ros2-distro-mutex 0.7.* humble_* + - vc >=14.3,<15 + - vc14_runtime >=14.44.35208 + - ucrt >=10.0.20348.0 + - vc >=14.3,<15 + - vc14_runtime >=14.44.35208 + - ucrt >=10.0.20348.0 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + - numpy >=1.26.4,<2.0a0 + - python_abi 3.11.* *_cp311 + license: BSD-3-Clause + size: 131472 + timestamp: 1753348808525 +- conda: https://prefix.dev/robostack-staging/linux-64/ros-humble-rqt-bag-plugins-1.1.5-np126py311hbc2a38a_13.conda + sha256: 26c502e0fbb8f90a442448cbb049da4ded50801231c0efc648be8b3c969840a7 + md5: 64816c4b984ef8b544494cf45fb4072b + depends: + - pillow + - pycairo + - python + - ros-humble-geometry-msgs + - ros-humble-rclpy + - ros-humble-ros-workspace + - ros-humble-rosbag2 + - ros-humble-rqt-bag + - ros-humble-rqt-gui + - ros-humble-rqt-gui-py + - ros-humble-rqt-plot + - ros-humble-sensor-msgs + - ros-humble-std-msgs + - ros2-distro-mutex 0.7.* humble_* + - libgcc >=13 + - libstdcxx >=13 + - libgcc >=13 + - __glibc >=2.17,<3.0.a0 + - numpy >=1.26.4,<2.0a0 + - python_abi 3.11.* *_cp311 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + license: BSD-3-Clause + size: 44677 + timestamp: 1753317070349 +- conda: https://prefix.dev/robostack-staging/linux-aarch64/ros-humble-rqt-bag-plugins-1.1.5-np126py311hbdd918e_13.conda + sha256: 867dd37c292cb055c244069d187ce7ec02724ba06b4864a8b7afc89ef02e3aff + md5: 8dddaab29c4263d17c17fd4f6efb4071 + depends: + - pillow + - pycairo + - python + - ros-humble-geometry-msgs + - ros-humble-rclpy + - ros-humble-ros-workspace + - ros-humble-rosbag2 + - ros-humble-rqt-bag + - ros-humble-rqt-gui + - ros-humble-rqt-gui-py + - ros-humble-rqt-plot + - ros-humble-sensor-msgs + - ros-humble-std-msgs + - ros2-distro-mutex 0.7.* humble_* + - libstdcxx >=13 + - libgcc >=13 + - python_abi 3.11.* *_cp311 + - numpy >=1.26.4,<2.0a0 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + license: BSD-3-Clause + size: 44546 + timestamp: 1753335957998 +- conda: https://prefix.dev/robostack-staging/osx-arm64/ros-humble-rqt-bag-plugins-1.1.5-np126py311h2a51a2c_13.conda + sha256: 1c739bd247eed48eaa6aeaaee6974889181096615a8a6cdabd59ae05c64da6d1 + md5: 21cc11cb33c5853b2a7d16497cdf7ceb + depends: + - pillow + - pycairo + - python + - ros-humble-geometry-msgs + - ros-humble-rclpy + - ros-humble-ros-workspace + - ros-humble-rosbag2 + - ros-humble-rqt-bag + - ros-humble-rqt-gui + - ros-humble-rqt-gui-py + - ros-humble-rqt-plot + - ros-humble-sensor-msgs + - ros-humble-std-msgs + - ros2-distro-mutex 0.7.* humble_* + - libcxx >=18 + - __osx >=11.0 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + - numpy >=1.26.4,<2.0a0 + - python_abi 3.11.* *_cp311 + license: BSD-3-Clause + size: 44817 + timestamp: 1753320391228 +- conda: https://prefix.dev/robostack-staging/win-64/ros-humble-rqt-bag-plugins-1.1.5-np126py311hd5de103_13.conda + sha256: 2dab1e5818d0f3958e21706cb90065f29e5bca26c70924e238897ec36bb293e5 + md5: dc06a5f8e594535470a60aa011420fb8 + depends: + - pillow + - pycairo + - python + - ros-humble-geometry-msgs + - ros-humble-rclpy + - ros-humble-ros-workspace + - ros-humble-rosbag2 + - ros-humble-rqt-bag + - ros-humble-rqt-gui + - ros-humble-rqt-gui-py + - ros-humble-rqt-plot + - ros-humble-sensor-msgs + - ros-humble-std-msgs + - ros2-distro-mutex 0.7.* humble_* + - vc >=14.3,<15 + - vc14_runtime >=14.44.35208 + - ucrt >=10.0.20348.0 + - vc >=14.3,<15 + - vc14_runtime >=14.44.35208 + - ucrt >=10.0.20348.0 + - numpy >=1.26.4,<2.0a0 + - python_abi 3.11.* *_cp311 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + license: BSD-3-Clause + size: 41303 + timestamp: 1753353909166 +- conda: https://prefix.dev/robostack-staging/linux-64/ros-humble-rqt-common-plugins-1.2.0-np126py311hbc2a38a_13.conda + sha256: 5487e39a2826ecfb11bf11697ba157493d89bd142ec5f1a4a2921e9c3cff026a + md5: 9137a2884188ceb345ce229c8b0ab7a5 + depends: + - python + - ros-humble-ros-workspace + - ros-humble-rqt-action + - ros-humble-rqt-bag + - ros-humble-rqt-bag-plugins + - ros-humble-rqt-console + - ros-humble-rqt-graph + - ros-humble-rqt-image-view + - ros-humble-rqt-msg + - ros-humble-rqt-plot + - ros-humble-rqt-publisher + - ros-humble-rqt-py-common + - ros-humble-rqt-py-console + - ros-humble-rqt-reconfigure + - ros-humble-rqt-service-caller + - ros-humble-rqt-shell + - ros-humble-rqt-srv + - ros-humble-rqt-topic + - ros2-distro-mutex 0.7.* humble_* + - libgcc >=13 + - libstdcxx >=13 + - libgcc >=13 + - __glibc >=2.17,<3.0.a0 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + - python_abi 3.11.* *_cp311 + - numpy >=1.26.4,<2.0a0 + license: BSD-3-Clause + size: 22913 + timestamp: 1753317465152 +- conda: https://prefix.dev/robostack-staging/linux-aarch64/ros-humble-rqt-common-plugins-1.2.0-np126py311hbdd918e_13.conda + sha256: 6a4fd1bc5627fec4908d739bbe1650d89a0bc5002c62f5cfdf0a49b1abc1d684 + md5: 73b6e803c00b94a65c130303818b90a1 + depends: + - python + - ros-humble-ros-workspace + - ros-humble-rqt-action + - ros-humble-rqt-bag + - ros-humble-rqt-bag-plugins + - ros-humble-rqt-console + - ros-humble-rqt-graph + - ros-humble-rqt-image-view + - ros-humble-rqt-msg + - ros-humble-rqt-plot + - ros-humble-rqt-publisher + - ros-humble-rqt-py-common + - ros-humble-rqt-py-console + - ros-humble-rqt-reconfigure + - ros-humble-rqt-service-caller + - ros-humble-rqt-shell + - ros-humble-rqt-srv + - ros-humble-rqt-topic + - ros2-distro-mutex 0.7.* humble_* + - libgcc >=13 + - libstdcxx >=13 + - libgcc >=13 + - numpy >=1.26.4,<2.0a0 + - python_abi 3.11.* *_cp311 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + license: BSD-3-Clause + size: 22711 + timestamp: 1753336408390 +- conda: https://prefix.dev/robostack-staging/osx-arm64/ros-humble-rqt-common-plugins-1.2.0-np126py311h2a51a2c_13.conda + sha256: 3d684d1b3e0a4e052db764849ed23b6c3ab7d8436f369c0ca120b5d09d511a93 + md5: cc153e3438ecc1d49cd6a051b0230732 + depends: + - python + - ros-humble-ros-workspace + - ros-humble-rqt-action + - ros-humble-rqt-bag + - ros-humble-rqt-bag-plugins + - ros-humble-rqt-console + - ros-humble-rqt-graph + - ros-humble-rqt-image-view + - ros-humble-rqt-msg + - ros-humble-rqt-plot + - ros-humble-rqt-publisher + - ros-humble-rqt-py-common + - ros-humble-rqt-py-console + - ros-humble-rqt-reconfigure + - ros-humble-rqt-service-caller + - ros-humble-rqt-shell + - ros-humble-rqt-srv + - ros-humble-rqt-topic + - ros2-distro-mutex 0.7.* humble_* + - libcxx >=18 + - __osx >=11.0 + - numpy >=1.26.4,<2.0a0 + - python_abi 3.11.* *_cp311 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + license: BSD-3-Clause + size: 23069 + timestamp: 1753320737319 +- conda: https://prefix.dev/robostack-staging/win-64/ros-humble-rqt-common-plugins-1.2.0-np126py311hd5de103_13.conda + sha256: 4a752482d90fdbfcdc2ebcfa2a472f965ac8478569f58f71171544b12aba3bee + md5: 615e0f4ef3c4551545a5f3a33c6ad460 + depends: + - python + - ros-humble-ros-workspace + - ros-humble-rqt-action + - ros-humble-rqt-bag + - ros-humble-rqt-bag-plugins + - ros-humble-rqt-console + - ros-humble-rqt-graph + - ros-humble-rqt-image-view + - ros-humble-rqt-msg + - ros-humble-rqt-plot + - ros-humble-rqt-publisher + - ros-humble-rqt-py-common + - ros-humble-rqt-py-console + - ros-humble-rqt-reconfigure + - ros-humble-rqt-service-caller + - ros-humble-rqt-shell + - ros-humble-rqt-srv + - ros-humble-rqt-topic + - ros2-distro-mutex 0.7.* humble_* + - vc >=14.3,<15 + - vc14_runtime >=14.44.35208 + - ucrt >=10.0.20348.0 + - vc >=14.3,<15 + - vc14_runtime >=14.44.35208 + - ucrt >=10.0.20348.0 + - numpy >=1.26.4,<2.0a0 + - python_abi 3.11.* *_cp311 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + license: BSD-3-Clause + size: 19704 + timestamp: 1753356255511 +- conda: https://prefix.dev/robostack-staging/linux-64/ros-humble-rqt-console-2.0.3-np126py311hbc2a38a_13.conda + sha256: 86494840cbcde5e24d706e2b137ecec35b00a1cc1188921649007baacee87e9c + md5: c91821d4b0a1f02e397292c8b8bb28b8 + depends: + - python + - ros-humble-ament-index-python + - ros-humble-python-qt-binding + - ros-humble-rcl-interfaces + - ros-humble-rclpy + - ros-humble-ros-workspace + - ros-humble-rqt-gui + - ros-humble-rqt-gui-py + - ros-humble-rqt-py-common + - ros2-distro-mutex 0.7.* humble_* + - libstdcxx >=13 + - libgcc >=13 + - __glibc >=2.17,<3.0.a0 + - python_abi 3.11.* *_cp311 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + - numpy >=1.26.4,<2.0a0 + license: BSD-3-Clause + size: 85197 + timestamp: 1753313871276 +- conda: https://prefix.dev/robostack-staging/linux-aarch64/ros-humble-rqt-console-2.0.3-np126py311hbdd918e_13.conda + sha256: 420b35b8c9369dc8fa2e28bab532196b6d9d7f76df890579502769d64826999f + md5: c335efe4b59c782574eccbff946e2875 + depends: + - python + - ros-humble-ament-index-python + - ros-humble-python-qt-binding + - ros-humble-rcl-interfaces + - ros-humble-rclpy + - ros-humble-ros-workspace + - ros-humble-rqt-gui + - ros-humble-rqt-gui-py + - ros-humble-rqt-py-common + - ros2-distro-mutex 0.7.* humble_* + - libgcc >=13 + - libstdcxx >=13 + - libgcc >=13 + - numpy >=1.26.4,<2.0a0 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + - python_abi 3.11.* *_cp311 + license: BSD-3-Clause + size: 85047 + timestamp: 1753313979185 +- conda: https://prefix.dev/robostack-staging/osx-arm64/ros-humble-rqt-console-2.0.3-np126py311h2a51a2c_13.conda + sha256: 15744d0ea158c1311ab4508ac6e6b1ff6b6e786c18f88c232c0e4107258d8a60 + md5: 327d4721afa8058c98c3478dd96d6a35 + depends: + - python + - ros-humble-ament-index-python + - ros-humble-python-qt-binding + - ros-humble-rcl-interfaces + - ros-humble-rclpy + - ros-humble-ros-workspace + - ros-humble-rqt-gui + - ros-humble-rqt-gui-py + - ros-humble-rqt-py-common + - ros2-distro-mutex 0.7.* humble_* + - __osx >=11.0 + - libcxx >=18 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + - python_abi 3.11.* *_cp311 + - numpy >=1.26.4,<2.0a0 + license: BSD-3-Clause + size: 85375 + timestamp: 1753314015512 +- conda: https://prefix.dev/robostack-staging/win-64/ros-humble-rqt-console-2.0.3-np126py311hd5de103_13.conda + sha256: 133875977a93a06f6443eb10668ab948361f9442405e00fa3e95ad5cd2824109 + md5: ef5ceb51d7ebfd1c256c158897ad6a1a + depends: + - python + - ros-humble-ament-index-python + - ros-humble-python-qt-binding + - ros-humble-rcl-interfaces + - ros-humble-rclpy + - ros-humble-ros-workspace + - ros-humble-rqt-gui + - ros-humble-rqt-gui-py + - ros-humble-rqt-py-common + - ros2-distro-mutex 0.7.* humble_* + - vc >=14.3,<15 + - vc14_runtime >=14.44.35208 + - ucrt >=10.0.20348.0 + - vc >=14.3,<15 + - vc14_runtime >=14.44.35208 + - ucrt >=10.0.20348.0 + - numpy >=1.26.4,<2.0a0 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + - python_abi 3.11.* *_cp311 + license: BSD-3-Clause + size: 91978 + timestamp: 1753334381433 +- conda: https://prefix.dev/robostack-staging/linux-64/ros-humble-rqt-graph-1.3.1-np126py311hbc2a38a_13.conda + sha256: fbb150a762b39be4cb8d8e9cfe2a38f9a449243ccf69bb32b7fbe976b9e9ea48 + md5: 880bee94207b9c6afd2a00a8edd3196a + depends: + - python + - ros-humble-ament-index-python + - ros-humble-python-qt-binding + - ros-humble-qt-dotgraph + - ros-humble-ros-workspace + - ros-humble-rqt-gui + - ros-humble-rqt-gui-py + - ros2-distro-mutex 0.7.* humble_* + - libstdcxx >=13 + - libgcc >=13 + - __glibc >=2.17,<3.0.a0 + - python_abi 3.11.* *_cp311 + - numpy >=1.26.4,<2.0a0 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + license: BSD-3-Clause + size: 70510 + timestamp: 1753313863811 +- conda: https://prefix.dev/robostack-staging/linux-aarch64/ros-humble-rqt-graph-1.3.1-np126py311hbdd918e_13.conda + sha256: c885fa865fbcd32fcfd0057908ae79efd15cc2b8295eef01566c000d539d0d3b + md5: a9d38823a78db4f9197da6764b6c01e4 + depends: + - python + - ros-humble-ament-index-python + - ros-humble-python-qt-binding + - ros-humble-qt-dotgraph + - ros-humble-ros-workspace + - ros-humble-rqt-gui + - ros-humble-rqt-gui-py + - ros2-distro-mutex 0.7.* humble_* + - libgcc >=13 + - libstdcxx >=13 + - libgcc >=13 + - numpy >=1.26.4,<2.0a0 + - python_abi 3.11.* *_cp311 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + license: BSD-3-Clause + size: 70373 + timestamp: 1753313979922 +- conda: https://prefix.dev/robostack-staging/osx-arm64/ros-humble-rqt-graph-1.3.1-np126py311h2a51a2c_13.conda + sha256: 89591eed950b26544954f39d7898f9c572c364b0bdd2bd01f2d935e6595d559f + md5: 18f1b50a704d4c8b431637cd2ca5835a + depends: + - python + - ros-humble-ament-index-python + - ros-humble-python-qt-binding + - ros-humble-qt-dotgraph + - ros-humble-ros-workspace + - ros-humble-rqt-gui + - ros-humble-rqt-gui-py + - ros2-distro-mutex 0.7.* humble_* + - __osx >=11.0 + - libcxx >=18 + - python_abi 3.11.* *_cp311 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + - numpy >=1.26.4,<2.0a0 + license: BSD-3-Clause + size: 70588 + timestamp: 1753313848002 +- conda: https://prefix.dev/robostack-staging/win-64/ros-humble-rqt-graph-1.3.1-np126py311hd5de103_13.conda + sha256: 81ed516f57062987078c71e3e78b654cc49e29e40e3e01f42655f3304ca55b55 + md5: eb7afdf43c4dd85b9552fc4eb4d92cbc + depends: + - python + - ros-humble-ament-index-python + - ros-humble-python-qt-binding + - ros-humble-qt-dotgraph + - ros-humble-ros-workspace + - ros-humble-rqt-gui + - ros-humble-rqt-gui-py + - ros2-distro-mutex 0.7.* humble_* + - vc >=14.3,<15 + - vc14_runtime >=14.44.35208 + - ucrt >=10.0.20348.0 + - vc >=14.3,<15 + - vc14_runtime >=14.44.35208 + - ucrt >=10.0.20348.0 + - python_abi 3.11.* *_cp311 + - numpy >=1.26.4,<2.0a0 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + license: BSD-3-Clause + size: 75406 + timestamp: 1753334387701 +- conda: https://prefix.dev/robostack-staging/linux-64/ros-humble-rqt-gui-1.1.7-np126py311hbc2a38a_13.conda + sha256: 29ecde52e92dc70fdcfb670c08cea97c388f0b5612be2e1a2e159ca8e7261efb + md5: 29ec5bdd12c2a85c2de5d13d057f6774 + depends: + - catkin_pkg + - python + - ros-humble-ament-index-python + - ros-humble-python-qt-binding + - ros-humble-qt-gui + - ros-humble-rclpy + - ros-humble-ros-workspace + - ros2-distro-mutex 0.7.* humble_* + - __glibc >=2.17,<3.0.a0 + - libstdcxx >=13 + - libgcc >=13 + - numpy >=1.26.4,<2.0a0 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + - python_abi 3.11.* *_cp311 + license: BSD-3-Clause + size: 126761 + timestamp: 1753313215053 +- conda: https://prefix.dev/robostack-staging/linux-aarch64/ros-humble-rqt-gui-1.1.7-np126py311hbdd918e_13.conda + sha256: f2e0edffbdce0cde53b28b9a8760728455203f558c2c8f20ac7959c4af15dcfe + md5: 478038435d4fa4fb46df10054f09e438 + depends: + - catkin_pkg + - python + - ros-humble-ament-index-python + - ros-humble-python-qt-binding + - ros-humble-qt-gui + - ros-humble-rclpy + - ros-humble-ros-workspace + - ros2-distro-mutex 0.7.* humble_* + - libstdcxx >=13 + - libgcc >=13 + - python_abi 3.11.* *_cp311 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + - numpy >=1.26.4,<2.0a0 + license: BSD-3-Clause + size: 126547 + timestamp: 1753313448542 +- conda: https://prefix.dev/robostack-staging/osx-arm64/ros-humble-rqt-gui-1.1.7-np126py311h2a51a2c_13.conda + sha256: e7043d65d9374eaf86b7f6424009b1c1224ef8dcce0ddad9acf3f5130eeaafad + md5: e3bb7f97b1d23b32467ad7bc4c8ffc29 + depends: + - catkin_pkg + - python + - ros-humble-ament-index-python + - ros-humble-python-qt-binding + - ros-humble-qt-gui + - ros-humble-rclpy + - ros-humble-ros-workspace + - ros2-distro-mutex 0.7.* humble_* + - __osx >=11.0 + - libcxx >=18 + - python_abi 3.11.* *_cp311 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + - numpy >=1.26.4,<2.0a0 + license: BSD-3-Clause + size: 120296 + timestamp: 1753313000581 +- conda: https://prefix.dev/robostack-staging/win-64/ros-humble-rqt-gui-1.1.7-np126py311hd5de103_13.conda + sha256: 50a9c74dfcf774c58be3a60948a64eb4714a510e2e8c5430ae0f795248000f34 + md5: 5f82be00fe679c8bee4a476f9a7e9dc2 + depends: + - catkin_pkg + - python + - ros-humble-ament-index-python + - ros-humble-python-qt-binding + - ros-humble-qt-gui + - ros-humble-rclpy + - ros-humble-ros-workspace + - ros2-distro-mutex 0.7.* humble_* + - vc >=14.3,<15 + - vc14_runtime >=14.44.35208 + - ucrt >=10.0.20348.0 + - vc >=14.3,<15 + - vc14_runtime >=14.44.35208 + - ucrt >=10.0.20348.0 + - python_abi 3.11.* *_cp311 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + - numpy >=1.26.4,<2.0a0 + license: BSD-3-Clause + size: 122896 + timestamp: 1753331933426 +- conda: https://prefix.dev/robostack-staging/linux-64/ros-humble-rqt-gui-cpp-1.1.7-np126py311hbc2a38a_13.conda + sha256: 0f62eb692ac1a2aea121cf2df071324bb8086b8b9102529c67c48c82d3428494 + md5: a43b241b23fc630ab46364eef767b7c4 + depends: + - python + - ros-humble-pluginlib + - ros-humble-qt-gui + - ros-humble-qt-gui-cpp + - ros-humble-rclcpp + - ros-humble-ros-workspace + - ros2-distro-mutex 0.7.* humble_* + - xorg-libx11 + - xorg-libxext + - libgcc >=13 + - libstdcxx >=13 + - libgcc >=13 + - __glibc >=2.17,<3.0.a0 + - libgl >=1.7.0,<2.0a0 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + - numpy >=1.26.4,<2.0a0 + - libopengl >=1.7.0,<2.0a0 + - xorg-libxext >=1.3.6,<2.0a0 + - xorg-libx11 >=1.8.12,<2.0a0 + - python_abi 3.11.* *_cp311 + - qt-main >=5.15.15,<5.16.0a0 + license: BSD-3-Clause + size: 178118 + timestamp: 1753313181216 +- conda: https://prefix.dev/robostack-staging/linux-aarch64/ros-humble-rqt-gui-cpp-1.1.7-np126py311hbdd918e_13.conda + sha256: f618e8644200eefbef4d06f1176befe120ab806568f70d0d77b7f072b678fc43 + md5: 4da3b50ffde0e8330d53d07e441763c7 + depends: + - python + - ros-humble-pluginlib + - ros-humble-qt-gui + - ros-humble-qt-gui-cpp + - ros-humble-rclcpp + - ros-humble-ros-workspace + - ros2-distro-mutex 0.7.* humble_* + - xorg-libx11 + - xorg-libxext + - libstdcxx >=13 + - libgcc >=13 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + - python_abi 3.11.* *_cp311 + - qt-main >=5.15.15,<5.16.0a0 + - libgl >=1.7.0,<2.0a0 + - xorg-libx11 >=1.8.12,<2.0a0 + - numpy >=1.26.4,<2.0a0 + - xorg-libxext >=1.3.6,<2.0a0 + - libopengl >=1.7.0,<2.0a0 + license: BSD-3-Clause + size: 179933 + timestamp: 1753313415062 +- conda: https://prefix.dev/robostack-staging/osx-arm64/ros-humble-rqt-gui-cpp-1.1.7-np126py311h2a51a2c_13.conda + sha256: f5ca0d7da91103d08c839d4ae51a4c151598bcc4d40cec72a7b4120d7a79a832 + md5: 0fe5d31b6e44cf4138786c0be7b15e94 + depends: + - python + - ros-humble-pluginlib + - ros-humble-qt-gui + - ros-humble-qt-gui-cpp + - ros-humble-rclcpp + - ros-humble-ros-workspace + - ros2-distro-mutex 0.7.* humble_* + - xorg-libx11 + - xorg-libxext + - __osx >=11.0 + - libcxx >=18 + - python_abi 3.11.* *_cp311 + - xorg-libx11 >=1.8.12,<2.0a0 + - qt-main >=5.15.15,<5.16.0a0 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + - numpy >=1.26.4,<2.0a0 + - xorg-libxext >=1.3.6,<2.0a0 + license: BSD-3-Clause + size: 140555 + timestamp: 1753313324424 +- conda: https://prefix.dev/robostack-staging/win-64/ros-humble-rqt-gui-cpp-1.1.7-np126py311hd5de103_13.conda + sha256: f2b96f6aaf04eb4af144421669d10486ba0e6017f23eaa955ffbc234a10174e8 + md5: 3166fec216d35edbf557c5211b0639a7 + depends: + - python + - ros-humble-pluginlib + - ros-humble-qt-gui + - ros-humble-qt-gui-cpp + - ros-humble-rclcpp + - ros-humble-ros-workspace + - ros2-distro-mutex 0.7.* humble_* + - vc >=14.3,<15 + - vc14_runtime >=14.44.35208 + - ucrt >=10.0.20348.0 + - vc >=14.3,<15 + - vc14_runtime >=14.44.35208 + - ucrt >=10.0.20348.0 + - python_abi 3.11.* *_cp311 + - numpy >=1.26.4,<2.0a0 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + - qt-main >=5.15.15,<5.16.0a0 + license: BSD-3-Clause + size: 31147 + timestamp: 1753332576221 +- conda: https://prefix.dev/robostack-staging/linux-64/ros-humble-rqt-gui-py-1.1.7-np126py311hbc2a38a_13.conda + sha256: 88919b6cec3df0251e76c3ceae8570e86cb4d7ea88de57e60b5935f835280dd4 + md5: 6ad5fda54631c3df3464ae73be193613 + depends: + - python + - ros-humble-qt-gui + - ros-humble-ros-workspace + - ros-humble-rqt-gui + - ros2-distro-mutex 0.7.* humble_* + - libstdcxx >=13 + - libgcc >=13 + - __glibc >=2.17,<3.0.a0 + - libgcc >=13 + - numpy >=1.26.4,<2.0a0 + - python_abi 3.11.* *_cp311 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + license: BSD-3-Clause + size: 48011 + timestamp: 1753313510997 +- conda: https://prefix.dev/robostack-staging/linux-aarch64/ros-humble-rqt-gui-py-1.1.7-np126py311hbdd918e_13.conda + sha256: 32cfa03797d9ee1c6a2c605375fb98dbfaf146c4761766e4262143ece14656a4 + md5: 19b2dfe9ce7476a4080904ca7fd8a5c1 + depends: + - python + - ros-humble-qt-gui + - ros-humble-ros-workspace + - ros-humble-rqt-gui + - ros2-distro-mutex 0.7.* humble_* + - libstdcxx >=13 + - libgcc >=13 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + - numpy >=1.26.4,<2.0a0 + - python_abi 3.11.* *_cp311 + license: BSD-3-Clause + size: 47698 + timestamp: 1753313677868 +- conda: https://prefix.dev/robostack-staging/osx-arm64/ros-humble-rqt-gui-py-1.1.7-np126py311h2a51a2c_13.conda + sha256: cda315ed5ab436240d3c41f5545a565f6671b9b74e30919b6ad69b4dc6ecaba2 + md5: d62abd3051c02db2d92d72fba846e0ed + depends: + - python + - ros-humble-qt-gui + - ros-humble-ros-workspace + - ros-humble-rqt-gui + - ros2-distro-mutex 0.7.* humble_* + - __osx >=11.0 + - libcxx >=18 + - numpy >=1.26.4,<2.0a0 + - python_abi 3.11.* *_cp311 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + license: BSD-3-Clause + size: 39811 + timestamp: 1753313469566 +- conda: https://prefix.dev/robostack-staging/win-64/ros-humble-rqt-gui-py-1.1.7-np126py311hd5de103_13.conda + sha256: f68bab0bab013183fb02b615c1d9adcd5bd9dfa049c04ee96d0e01e68d1931e6 + md5: 493242ca3f2232148a2355679aa12d53 + depends: + - python + - ros-humble-qt-gui + - ros-humble-ros-workspace + - ros-humble-rqt-gui + - ros2-distro-mutex 0.7.* humble_* + - vc >=14.3,<15 + - vc14_runtime >=14.44.35208 + - ucrt >=10.0.20348.0 + - vc >=14.3,<15 + - vc14_runtime >=14.44.35208 + - ucrt >=10.0.20348.0 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + - python_abi 3.11.* *_cp311 + - numpy >=1.26.4,<2.0a0 + license: BSD-3-Clause + size: 35496 + timestamp: 1753333126038 +- conda: https://prefix.dev/robostack-staging/linux-64/ros-humble-rqt-image-view-1.2.0-np126py311hbc2a38a_13.conda + sha256: 2c0319d83532f1cc3392ae2307e8ae010d58bfb76b22d014581f9e1953e641b7 + md5: 13d17d147b074cf3ba7f0fd495d4240e + depends: + - python + - ros-humble-cv-bridge + - ros-humble-geometry-msgs + - ros-humble-image-transport + - ros-humble-qt-gui-cpp + - ros-humble-rclcpp + - ros-humble-ros-workspace + - ros-humble-rqt-gui + - ros-humble-rqt-gui-cpp + - ros-humble-sensor-msgs + - ros2-distro-mutex 0.7.* humble_* + - xorg-libx11 + - xorg-libxext + - __glibc >=2.17,<3.0.a0 + - libgcc >=13 + - libstdcxx >=13 + - libgcc >=13 + - libopengl >=1.7.0,<2.0a0 + - numpy >=1.26.4,<2.0a0 + - libgl >=1.7.0,<2.0a0 + - qt-main >=5.15.15,<5.16.0a0 + - xorg-libx11 >=1.8.12,<2.0a0 + - python_abi 3.11.* *_cp311 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + - xorg-libxext >=1.3.6,<2.0a0 + license: BSD-3-Clause + size: 247491 + timestamp: 1753314124819 +- conda: https://prefix.dev/robostack-staging/linux-aarch64/ros-humble-rqt-image-view-1.2.0-np126py311hbdd918e_13.conda + sha256: b4168476ce85e574f6ef9376d0cb5078f8a54ff6905befdac6cd3af114ce229e + md5: 46479ecf25d3ac64b47972bb0e128ca2 + depends: + - python + - ros-humble-cv-bridge + - ros-humble-geometry-msgs + - ros-humble-image-transport + - ros-humble-qt-gui-cpp + - ros-humble-rclcpp + - ros-humble-ros-workspace + - ros-humble-rqt-gui + - ros-humble-rqt-gui-cpp + - ros-humble-sensor-msgs + - ros2-distro-mutex 0.7.* humble_* + - xorg-libx11 + - xorg-libxext + - libstdcxx >=13 + - libgcc >=13 + - numpy >=1.26.4,<2.0a0 + - libgl >=1.7.0,<2.0a0 + - qt-main >=5.15.15,<5.16.0a0 + - xorg-libxext >=1.3.6,<2.0a0 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + - libopengl >=1.7.0,<2.0a0 + - xorg-libx11 >=1.8.12,<2.0a0 + - python_abi 3.11.* *_cp311 + license: BSD-3-Clause + size: 248772 + timestamp: 1753314234131 +- conda: https://prefix.dev/robostack-staging/osx-arm64/ros-humble-rqt-image-view-1.2.0-np126py311h2a51a2c_13.conda + sha256: c80ea67a7ffe198d5c3210b04118f14e4c2713dad57a199b2c19cdf7992b9438 + md5: eeae4e88bcdfa4fa836271977abe31cb + depends: + - python + - ros-humble-cv-bridge + - ros-humble-geometry-msgs + - ros-humble-image-transport + - ros-humble-qt-gui-cpp + - ros-humble-rclcpp + - ros-humble-ros-workspace + - ros-humble-rqt-gui + - ros-humble-rqt-gui-cpp + - ros-humble-sensor-msgs + - ros2-distro-mutex 0.7.* humble_* + - xorg-libx11 + - xorg-libxext + - libcxx >=18 + - __osx >=11.0 + - qt-main >=5.15.15,<5.16.0a0 + - xorg-libx11 >=1.8.12,<2.0a0 + - xorg-libxext >=1.3.6,<2.0a0 + - numpy >=1.26.4,<2.0a0 + - python_abi 3.11.* *_cp311 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + license: BSD-3-Clause + size: 231356 + timestamp: 1753314344410 +- conda: https://prefix.dev/robostack-staging/win-64/ros-humble-rqt-image-view-1.2.0-np126py311hd5de103_13.conda + sha256: 39facb1e14e23d19ee7ec5158c522b3d97bd71791789157dfed1a0809c0838d8 + md5: 88b073dc276123816cd898a1c1055f71 + depends: + - python + - ros-humble-cv-bridge + - ros-humble-geometry-msgs + - ros-humble-image-transport + - ros-humble-qt-gui-cpp + - ros-humble-rclcpp + - ros-humble-ros-workspace + - ros-humble-rqt-gui + - ros-humble-rqt-gui-cpp + - ros-humble-sensor-msgs + - ros2-distro-mutex 0.7.* humble_* + - vc >=14.3,<15 + - vc14_runtime >=14.44.35208 + - ucrt >=10.0.20348.0 + - vc >=14.3,<15 + - vc14_runtime >=14.44.35208 + - ucrt >=10.0.20348.0 + - numpy >=1.26.4,<2.0a0 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + - python_abi 3.11.* *_cp311 + - qt-main >=5.15.15,<5.16.0a0 + license: BSD-3-Clause + size: 42705 + timestamp: 1753335970858 +- conda: https://prefix.dev/robostack-staging/linux-64/ros-humble-rqt-msg-1.2.0-np126py311hbc2a38a_13.conda + sha256: 167c052daaceaf0a2bf6c5720d6aa5f1c6599d49491c7c9f43f7994355029fe1 + md5: 58ace4a33d643b5805dfdcc302f889ed + depends: + - catkin_pkg + - python + - ros-humble-python-qt-binding + - ros-humble-rclpy + - ros-humble-ros-workspace + - ros-humble-rqt-console + - ros-humble-rqt-gui + - ros-humble-rqt-gui-py + - ros-humble-rqt-py-common + - ros2-distro-mutex 0.7.* humble_* + - __glibc >=2.17,<3.0.a0 + - libstdcxx >=13 + - libgcc >=13 + - python_abi 3.11.* *_cp311 + - numpy >=1.26.4,<2.0a0 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + license: BSD-3-Clause + size: 28602 + timestamp: 1753314054256 +- conda: https://prefix.dev/robostack-staging/linux-aarch64/ros-humble-rqt-msg-1.2.0-np126py311hbdd918e_13.conda + sha256: 10c6bd9ff383084b1063649475fd55b9701efef52d89fae799e40b210c479a5c + md5: 0ef928caea432cad08e883bc4b0cad4a + depends: + - catkin_pkg + - python + - ros-humble-python-qt-binding + - ros-humble-rclpy + - ros-humble-ros-workspace + - ros-humble-rqt-console + - ros-humble-rqt-gui + - ros-humble-rqt-gui-py + - ros-humble-rqt-py-common + - ros2-distro-mutex 0.7.* humble_* + - libstdcxx >=13 + - libgcc >=13 + - numpy >=1.26.4,<2.0a0 + - python_abi 3.11.* *_cp311 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + license: BSD-3-Clause + size: 28451 + timestamp: 1753314148256 +- conda: https://prefix.dev/robostack-staging/osx-arm64/ros-humble-rqt-msg-1.2.0-np126py311h2a51a2c_13.conda + sha256: 7018fe9bdbde8b9ede97e70e183a451c1204b620c2ccef1f02c8fd1ee93c9d15 + md5: b396f4187e5d0df63db3d533e7dba60e + depends: + - catkin_pkg + - python + - ros-humble-python-qt-binding + - ros-humble-rclpy + - ros-humble-ros-workspace + - ros-humble-rqt-console + - ros-humble-rqt-gui + - ros-humble-rqt-gui-py + - ros-humble-rqt-py-common + - ros2-distro-mutex 0.7.* humble_* + - __osx >=11.0 + - libcxx >=18 + - python_abi 3.11.* *_cp311 + - numpy >=1.26.4,<2.0a0 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + license: BSD-3-Clause + size: 28719 + timestamp: 1753314418157 +- conda: https://prefix.dev/robostack-staging/win-64/ros-humble-rqt-msg-1.2.0-np126py311hd5de103_13.conda + sha256: 23c51d6f21a1cd7e84d989ca01344e7ddca3c18afd1aa467b90b0a2b2935a1be + md5: ff0e5d8dc0d490df68de731525eecac3 + depends: + - catkin_pkg + - python + - ros-humble-python-qt-binding + - ros-humble-rclpy + - ros-humble-ros-workspace + - ros-humble-rqt-console + - ros-humble-rqt-gui + - ros-humble-rqt-gui-py + - ros-humble-rqt-py-common + - ros2-distro-mutex 0.7.* humble_* + - vc >=14.3,<15 + - vc14_runtime >=14.44.35208 + - ucrt >=10.0.20348.0 + - vc >=14.3,<15 + - vc14_runtime >=14.44.35208 + - ucrt >=10.0.20348.0 + - numpy >=1.26.4,<2.0a0 + - python_abi 3.11.* *_cp311 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + license: BSD-3-Clause + size: 34186 + timestamp: 1753335735480 +- conda: https://prefix.dev/robostack-staging/linux-64/ros-humble-rqt-plot-1.1.5-np126py311hbc2a38a_13.conda + sha256: aa08029d34bb9bc8c3515d8649effcf61ec4f75e4b3b79f04922ef9aae97efaf + md5: 6544cf80c9b0aa369dbe9d58a2d96bfb + depends: + - catkin_pkg + - matplotlib-base + - numpy + - python + - ros-humble-python-qt-binding + - ros-humble-qt-gui-py-common + - ros-humble-rclpy + - ros-humble-ros-workspace + - ros-humble-rqt-gui + - ros-humble-rqt-gui-py + - ros-humble-rqt-py-common + - ros-humble-std-msgs + - ros2-distro-mutex 0.7.* humble_* + - libgcc >=13 + - libstdcxx >=13 + - libgcc >=13 + - __glibc >=2.17,<3.0.a0 + - python_abi 3.11.* *_cp311 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + - numpy >=1.26.4,<2.0a0 + license: BSD-3-Clause + size: 68412 + timestamp: 1753313867057 +- conda: https://prefix.dev/robostack-staging/linux-aarch64/ros-humble-rqt-plot-1.1.5-np126py311hbdd918e_13.conda + sha256: 7cd063bd9dbbe059e66931165195663667730c6d909858001f3231070571d182 + md5: b2f4b20867562651b37cb22500ef71d4 + depends: + - catkin_pkg + - matplotlib-base + - numpy + - python + - ros-humble-python-qt-binding + - ros-humble-qt-gui-py-common + - ros-humble-rclpy + - ros-humble-ros-workspace + - ros-humble-rqt-gui + - ros-humble-rqt-gui-py + - ros-humble-rqt-py-common + - ros-humble-std-msgs + - ros2-distro-mutex 0.7.* humble_* + - libgcc >=13 + - libstdcxx >=13 + - libgcc >=13 + - python_abi 3.11.* *_cp311 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + - numpy >=1.26.4,<2.0a0 + license: BSD-3-Clause + size: 68249 + timestamp: 1753313975413 +- conda: https://prefix.dev/robostack-staging/osx-arm64/ros-humble-rqt-plot-1.1.5-np126py311h2a51a2c_13.conda + sha256: 0cfd1e6e68d5c903681bbe450d191988421bd20e70c6382750a06bcbbece6429 + md5: 177925a4b409d875a153a91fd23550ca + depends: + - catkin_pkg + - matplotlib-base + - numpy + - python + - ros-humble-python-qt-binding + - ros-humble-qt-gui-py-common + - ros-humble-rclpy + - ros-humble-ros-workspace + - ros-humble-rqt-gui + - ros-humble-rqt-gui-py + - ros-humble-rqt-py-common + - ros-humble-std-msgs + - ros2-distro-mutex 0.7.* humble_* + - __osx >=11.0 + - libcxx >=18 + - numpy >=1.26.4,<2.0a0 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + - python_abi 3.11.* *_cp311 + license: BSD-3-Clause + size: 68506 + timestamp: 1753313851270 +- conda: https://prefix.dev/robostack-staging/win-64/ros-humble-rqt-plot-1.1.5-np126py311hd5de103_13.conda + sha256: cfc7733d57ddcfeb6dee8fb351ce18d0ff61e2a560efd4f6e5e8381890569a59 + md5: f4d1c5d2c21302e01225c76a7e09d6ed + depends: + - catkin_pkg + - matplotlib-base + - numpy + - python + - ros-humble-python-qt-binding + - ros-humble-qt-gui-py-common + - ros-humble-rclpy + - ros-humble-ros-workspace + - ros-humble-rqt-gui + - ros-humble-rqt-gui-py + - ros-humble-rqt-py-common + - ros-humble-std-msgs + - ros2-distro-mutex 0.7.* humble_* + - vc >=14.3,<15 + - vc14_runtime >=14.44.35208 + - ucrt >=10.0.20348.0 + - vc >=14.3,<15 + - vc14_runtime >=14.44.35208 + - ucrt >=10.0.20348.0 + - numpy >=1.26.4,<2.0a0 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + - python_abi 3.11.* *_cp311 + license: BSD-3-Clause + size: 73816 + timestamp: 1753334879910 +- conda: https://prefix.dev/robostack-staging/linux-64/ros-humble-rqt-publisher-1.5.0-np126py311hbc2a38a_13.conda + sha256: a68de1af15ae1a912f66a88e62ce2d1bd9e0d31462fced61b1f644c3f85ba2b8 + md5: a17fddb7392121398033bd29b6ac917f + depends: + - catkin_pkg + - python + - ros-humble-python-qt-binding + - ros-humble-qt-gui-py-common + - ros-humble-ros-workspace + - ros-humble-rqt-gui + - ros-humble-rqt-gui-py + - ros-humble-rqt-py-common + - ros2-distro-mutex 0.7.* humble_* + - libstdcxx >=13 + - libgcc >=13 + - __glibc >=2.17,<3.0.a0 + - python_abi 3.11.* *_cp311 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + - numpy >=1.26.4,<2.0a0 + license: BSD-3-Clause + size: 41912 + timestamp: 1753313854583 +- conda: https://prefix.dev/robostack-staging/linux-aarch64/ros-humble-rqt-publisher-1.5.0-np126py311hbdd918e_13.conda + sha256: fb84470525172cdc9110bcdccc149343beb813def6d659cd229319713e7584c1 + md5: 94098a23a5cd68dc07a4f9a7bb4b6b38 + depends: + - catkin_pkg + - python + - ros-humble-python-qt-binding + - ros-humble-qt-gui-py-common + - ros-humble-ros-workspace + - ros-humble-rqt-gui + - ros-humble-rqt-gui-py + - ros-humble-rqt-py-common + - ros2-distro-mutex 0.7.* humble_* + - libgcc >=13 + - libstdcxx >=13 + - libgcc >=13 + - numpy >=1.26.4,<2.0a0 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + - python_abi 3.11.* *_cp311 + license: BSD-3-Clause + size: 41767 + timestamp: 1753313963079 +- conda: https://prefix.dev/robostack-staging/osx-arm64/ros-humble-rqt-publisher-1.5.0-np126py311h2a51a2c_13.conda + sha256: aa9dc7de3953f08d2129d3852b012a076ed5456a9b9a2b9e562b8e6a3d836444 + md5: f50891109adb2587a0876389f84107a5 + depends: + - catkin_pkg + - python + - ros-humble-python-qt-binding + - ros-humble-qt-gui-py-common + - ros-humble-ros-workspace + - ros-humble-rqt-gui + - ros-humble-rqt-gui-py + - ros-humble-rqt-py-common + - ros2-distro-mutex 0.7.* humble_* + - __osx >=11.0 + - libcxx >=18 + - numpy >=1.26.4,<2.0a0 + - python_abi 3.11.* *_cp311 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + license: BSD-3-Clause + size: 42019 + timestamp: 1753313834387 +- conda: https://prefix.dev/robostack-staging/win-64/ros-humble-rqt-publisher-1.5.0-np126py311hd5de103_13.conda + sha256: 8ba487f0674387363542dbfafcc5c43c3cb62992fac4c0cc782826222dd2ec29 + md5: 5f6fc31946b6409f4a5d3ec6216dcbdc + depends: + - catkin_pkg + - python + - ros-humble-python-qt-binding + - ros-humble-qt-gui-py-common + - ros-humble-ros-workspace + - ros-humble-rqt-gui + - ros-humble-rqt-gui-py + - ros-humble-rqt-py-common + - ros2-distro-mutex 0.7.* humble_* + - vc >=14.3,<15 + - vc14_runtime >=14.44.35208 + - ucrt >=10.0.20348.0 + - vc >=14.3,<15 + - vc14_runtime >=14.44.35208 + - ucrt >=10.0.20348.0 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + - python_abi 3.11.* *_cp311 + - numpy >=1.26.4,<2.0a0 + license: BSD-3-Clause + size: 47399 + timestamp: 1753334355326 +- conda: https://prefix.dev/robostack-staging/linux-64/ros-humble-rqt-py-common-1.1.7-np126py311hbc2a38a_13.conda + sha256: 71be87277c553ea15a6a6d881fe35ff8a18107dfc5c2dcae712317b9dea5683d + md5: ca58c176174ba74d63442c32ddcd66eb + depends: + - python + - qt-main + - ros-humble-python-qt-binding + - ros-humble-qt-gui + - ros-humble-rclpy + - ros-humble-ros-workspace + - ros2-distro-mutex 0.7.* humble_* + - xorg-libx11 + - xorg-libxext + - libstdcxx >=13 + - libgcc >=13 + - __glibc >=2.17,<3.0.a0 + - libgcc >=13 + - qt-main >=5.15.15,<5.16.0a0 + - libopengl >=1.7.0,<2.0a0 + - libgl >=1.7.0,<2.0a0 + - xorg-libxext >=1.3.6,<2.0a0 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + - python_abi 3.11.* *_cp311 + - xorg-libx11 >=1.8.12,<2.0a0 + - numpy >=1.26.4,<2.0a0 + license: BSD-3-Clause + size: 85777 + timestamp: 1753313151869 +- conda: https://prefix.dev/robostack-staging/linux-aarch64/ros-humble-rqt-py-common-1.1.7-np126py311hbdd918e_13.conda + sha256: 7aaeea6b70efb97a35179119711c182fe6bbe98aa4304c65e6b2bf8a7371c088 + md5: 768ff275bdaf76e035a723b7b4ded675 + depends: + - python + - qt-main + - ros-humble-python-qt-binding + - ros-humble-qt-gui + - ros-humble-rclpy + - ros-humble-ros-workspace + - ros2-distro-mutex 0.7.* humble_* + - xorg-libx11 + - xorg-libxext + - libstdcxx >=13 + - libgcc >=13 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + - python_abi 3.11.* *_cp311 + - numpy >=1.26.4,<2.0a0 + - xorg-libx11 >=1.8.12,<2.0a0 + - libopengl >=1.7.0,<2.0a0 + - xorg-libxext >=1.3.6,<2.0a0 + - qt-main >=5.15.15,<5.16.0a0 + - libgl >=1.7.0,<2.0a0 + license: BSD-3-Clause + size: 85496 + timestamp: 1753313383726 +- conda: https://prefix.dev/robostack-staging/osx-arm64/ros-humble-rqt-py-common-1.1.7-np126py311h2a51a2c_13.conda + sha256: a420113be765e86e643b170704e505680ae047f81b799e3d866e856e85e6991e + md5: d48eb71dd6f78e827f32b11ac847c377 + depends: + - python + - qt-main + - ros-humble-python-qt-binding + - ros-humble-qt-gui + - ros-humble-rclpy + - ros-humble-ros-workspace + - ros2-distro-mutex 0.7.* humble_* + - xorg-libx11 + - xorg-libxext + - __osx >=11.0 + - libcxx >=18 + - qt-main >=5.15.15,<5.16.0a0 + - xorg-libxext >=1.3.6,<2.0a0 + - python_abi 3.11.* *_cp311 + - numpy >=1.26.4,<2.0a0 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + - xorg-libx11 >=1.8.12,<2.0a0 + license: BSD-3-Clause + size: 77254 + timestamp: 1753313290353 +- conda: https://prefix.dev/robostack-staging/win-64/ros-humble-rqt-py-common-1.1.7-np126py311hd5de103_13.conda + sha256: 821a8c593796b6a511555ec5ae3048510c319876fb39fd583a6e9abc46a76003 + md5: 2c8c6a8f94a73d33eef04ee1d3be2d12 + depends: + - python + - qt-main + - ros-humble-python-qt-binding + - ros-humble-qt-gui + - ros-humble-rclpy + - ros-humble-ros-workspace + - ros2-distro-mutex 0.7.* humble_* + - vc >=14.3,<15 + - vc14_runtime >=14.44.35208 + - ucrt >=10.0.20348.0 + - vc >=14.3,<15 + - vc14_runtime >=14.44.35208 + - ucrt >=10.0.20348.0 + - numpy >=1.26.4,<2.0a0 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + - qt-main >=5.15.15,<5.16.0a0 + - python_abi 3.11.* *_cp311 + license: BSD-3-Clause + size: 72754 + timestamp: 1753332192940 +- conda: https://prefix.dev/robostack-staging/linux-64/ros-humble-rqt-py-console-1.0.2-np126py311hbc2a38a_13.conda + sha256: ba709025f9d01a9b2f20c2da56fe9c36041ce34d8481683ea52353971b77d9d6 + md5: 8356d8e0a1ae31b479ea148883582ff8 + depends: + - python + - ros-humble-ament-index-python + - ros-humble-python-qt-binding + - ros-humble-qt-gui + - ros-humble-qt-gui-py-common + - ros-humble-rclpy + - ros-humble-ros-workspace + - ros-humble-rqt-gui + - ros-humble-rqt-gui-py + - ros2-distro-mutex 0.7.* humble_* + - libgcc >=13 + - libstdcxx >=13 + - libgcc >=13 + - __glibc >=2.17,<3.0.a0 + - python_abi 3.11.* *_cp311 + - numpy >=1.26.4,<2.0a0 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + license: BSD-3-Clause + size: 24940 + timestamp: 1753313917376 +- conda: https://prefix.dev/robostack-staging/linux-aarch64/ros-humble-rqt-py-console-1.0.2-np126py311hbdd918e_13.conda + sha256: 8678ea07a7eabd7f3e1d9a23a497a8c8f4637f723f57c4598d988d82ef7cb66c + md5: ba1d12b76c55d1895435068ec96715c6 + depends: + - python + - ros-humble-ament-index-python + - ros-humble-python-qt-binding + - ros-humble-qt-gui + - ros-humble-qt-gui-py-common + - ros-humble-rclpy + - ros-humble-ros-workspace + - ros-humble-rqt-gui + - ros-humble-rqt-gui-py + - ros2-distro-mutex 0.7.* humble_* + - libgcc >=13 + - libstdcxx >=13 + - libgcc >=13 + - python_abi 3.11.* *_cp311 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + - numpy >=1.26.4,<2.0a0 + license: BSD-3-Clause + size: 24776 + timestamp: 1753314048705 +- conda: https://prefix.dev/robostack-staging/osx-arm64/ros-humble-rqt-py-console-1.0.2-np126py311h2a51a2c_13.conda + sha256: 0b7e0d8539eb8ea2017fd35af98e72a4b7f68b3956448c3db8dc5f54e8fa75ec + md5: 9b4dc38f7cef8687832051eb1d1c5cef + depends: + - python + - ros-humble-ament-index-python + - ros-humble-python-qt-binding + - ros-humble-qt-gui + - ros-humble-qt-gui-py-common + - ros-humble-rclpy + - ros-humble-ros-workspace + - ros-humble-rqt-gui + - ros-humble-rqt-gui-py + - ros2-distro-mutex 0.7.* humble_* + - libcxx >=18 + - __osx >=11.0 + - python_abi 3.11.* *_cp311 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + - numpy >=1.26.4,<2.0a0 + license: BSD-3-Clause + size: 25034 + timestamp: 1753314071628 +- conda: https://prefix.dev/robostack-staging/win-64/ros-humble-rqt-py-console-1.0.2-np126py311hd5de103_13.conda + sha256: 5f472c523a7b03ddcf991adfa7cfc1226c30c805cf3f6c88652d20a65db45d92 + md5: fe4cd6f9f0f52b29f3b3373e139fd6db + depends: + - python + - ros-humble-ament-index-python + - ros-humble-python-qt-binding + - ros-humble-qt-gui + - ros-humble-qt-gui-py-common + - ros-humble-rclpy + - ros-humble-ros-workspace + - ros-humble-rqt-gui + - ros-humble-rqt-gui-py + - ros2-distro-mutex 0.7.* humble_* + - vc >=14.3,<15 + - vc14_runtime >=14.44.35208 + - ucrt >=10.0.20348.0 + - vc >=14.3,<15 + - vc14_runtime >=14.44.35208 + - ucrt >=10.0.20348.0 + - python_abi 3.11.* *_cp311 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + - numpy >=1.26.4,<2.0a0 + license: BSD-3-Clause + size: 30199 + timestamp: 1753334316401 +- conda: https://prefix.dev/robostack-staging/linux-64/ros-humble-rqt-reconfigure-1.1.2-np126py311hbc2a38a_13.conda + sha256: ce8226268aaaa857463b3ef0c9794d6dc1afe6060e42c970ba7efdd10a7c4e82 + md5: 7f7eed9f806449c34b2e841557c86964 + depends: + - python + - pyyaml + - ros-humble-ament-index-python + - ros-humble-python-qt-binding + - ros-humble-qt-gui-py-common + - ros-humble-rclpy + - ros-humble-ros-workspace + - ros-humble-rqt-console + - ros-humble-rqt-gui + - ros-humble-rqt-gui-py + - ros-humble-rqt-py-common + - ros2-distro-mutex 0.7.* humble_* + - libstdcxx >=13 + - libgcc >=13 + - __glibc >=2.17,<3.0.a0 + - libgcc >=13 + - numpy >=1.26.4,<2.0a0 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + - python_abi 3.11.* *_cp311 + license: BSD-3-Clause + size: 76020 + timestamp: 1753314149044 +- conda: https://prefix.dev/robostack-staging/linux-aarch64/ros-humble-rqt-reconfigure-1.1.2-np126py311hbdd918e_13.conda + sha256: 8cab90c9d6b44e0086d4cc4e157d97026e1597dba9a6e1d252208be04f169f5c + md5: fd1511360c68b473e57cb2b5fe889792 + depends: + - python + - pyyaml + - ros-humble-ament-index-python + - ros-humble-python-qt-binding + - ros-humble-qt-gui-py-common + - ros-humble-rclpy + - ros-humble-ros-workspace + - ros-humble-rqt-console + - ros-humble-rqt-gui + - ros-humble-rqt-gui-py + - ros-humble-rqt-py-common + - ros2-distro-mutex 0.7.* humble_* + - libstdcxx >=13 + - libgcc >=13 + - python_abi 3.11.* *_cp311 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + - numpy >=1.26.4,<2.0a0 + license: BSD-3-Clause + size: 75952 + timestamp: 1753314266547 +- conda: https://prefix.dev/robostack-staging/osx-arm64/ros-humble-rqt-reconfigure-1.1.2-np126py311h2a51a2c_13.conda + sha256: 2da0656fdec6d8b272046b7e71572691eee853701ea0faeba75bb624af459e6f + md5: 10801c19205a376745de6f2532f2bf18 + depends: + - python + - pyyaml + - ros-humble-ament-index-python + - ros-humble-python-qt-binding + - ros-humble-qt-gui-py-common + - ros-humble-rclpy + - ros-humble-ros-workspace + - ros-humble-rqt-console + - ros-humble-rqt-gui + - ros-humble-rqt-gui-py + - ros-humble-rqt-py-common + - ros2-distro-mutex 0.7.* humble_* + - libcxx >=18 + - __osx >=11.0 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + - python_abi 3.11.* *_cp311 + - numpy >=1.26.4,<2.0a0 + license: BSD-3-Clause + size: 76091 + timestamp: 1753314364325 +- conda: https://prefix.dev/robostack-staging/win-64/ros-humble-rqt-reconfigure-1.1.2-np126py311hd5de103_13.conda + sha256: 79599e25693f9ed1c2149c18d9e3b9a3f0f414ea434efdc6cba1601ba0c1d0a7 + md5: 485466a84b0e36a511a5f05882eb53b6 + depends: + - python + - pyyaml + - ros-humble-ament-index-python + - ros-humble-python-qt-binding + - ros-humble-qt-gui-py-common + - ros-humble-rclpy + - ros-humble-ros-workspace + - ros-humble-rqt-console + - ros-humble-rqt-gui + - ros-humble-rqt-gui-py + - ros-humble-rqt-py-common + - ros2-distro-mutex 0.7.* humble_* + - vc >=14.3,<15 + - vc14_runtime >=14.44.35208 + - ucrt >=10.0.20348.0 + - vc >=14.3,<15 + - vc14_runtime >=14.44.35208 + - ucrt >=10.0.20348.0 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + - numpy >=1.26.4,<2.0a0 + - python_abi 3.11.* *_cp311 + license: BSD-3-Clause + size: 82391 + timestamp: 1753335928372 +- conda: https://prefix.dev/robostack-staging/linux-64/ros-humble-rqt-service-caller-1.0.5-np126py311hbc2a38a_13.conda + sha256: a9014dfdf428f71855c2b73869e2ae08664723a10af172191a460ffa3c6df680 + md5: 5124b59f341fd2541643888ddaa35311 + depends: + - python + - ros-humble-ros-workspace + - ros-humble-rqt-gui + - ros-humble-rqt-gui-py + - ros-humble-rqt-py-common + - ros2-distro-mutex 0.7.* humble_* + - __glibc >=2.17,<3.0.a0 + - libstdcxx >=13 + - libgcc >=13 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + - python_abi 3.11.* *_cp311 + - numpy >=1.26.4,<2.0a0 + license: BSD-3-Clause + size: 31978 + timestamp: 1753313913480 +- conda: https://prefix.dev/robostack-staging/linux-aarch64/ros-humble-rqt-service-caller-1.0.5-np126py311hbdd918e_13.conda + sha256: 8440cd7f3356326c3ddd93f0d52803a5b9256e887a311a5fdeabfc7cf7b480dc + md5: 60851734609bc1805e1d0900717fd1a9 + depends: + - python + - ros-humble-ros-workspace + - ros-humble-rqt-gui + - ros-humble-rqt-gui-py + - ros-humble-rqt-py-common + - ros2-distro-mutex 0.7.* humble_* + - libstdcxx >=13 + - libgcc >=13 + - python_abi 3.11.* *_cp311 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + - numpy >=1.26.4,<2.0a0 + license: BSD-3-Clause + size: 31834 + timestamp: 1753314045200 +- conda: https://prefix.dev/robostack-staging/osx-arm64/ros-humble-rqt-service-caller-1.0.5-np126py311h2a51a2c_13.conda + sha256: 9e0531e5adfb4f90f2f622e1149cc922f0612a98509671016885d57e0715cde5 + md5: a9ea51584f8dd31caa4b073b44d64901 + depends: + - python + - ros-humble-ros-workspace + - ros-humble-rqt-gui + - ros-humble-rqt-gui-py + - ros-humble-rqt-py-common + - ros2-distro-mutex 0.7.* humble_* + - libcxx >=18 + - __osx >=11.0 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + - python_abi 3.11.* *_cp311 + - numpy >=1.26.4,<2.0a0 + license: BSD-3-Clause + size: 32070 + timestamp: 1753314066053 +- conda: https://prefix.dev/robostack-staging/win-64/ros-humble-rqt-service-caller-1.0.5-np126py311hd5de103_13.conda + sha256: 797c0e6007b2a2c187369dcc903dc091d3b34cf54a85ad953decf9c8abe49883 + md5: 72cf857f4c2a74b1aeacce14c5f8d366 + depends: + - python + - ros-humble-ros-workspace + - ros-humble-rqt-gui + - ros-humble-rqt-gui-py + - ros-humble-rqt-py-common + - ros2-distro-mutex 0.7.* humble_* + - vc >=14.3,<15 + - vc14_runtime >=14.44.35208 + - ucrt >=10.0.20348.0 + - vc >=14.3,<15 + - vc14_runtime >=14.44.35208 + - ucrt >=10.0.20348.0 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + - python_abi 3.11.* *_cp311 + - numpy >=1.26.4,<2.0a0 + license: BSD-3-Clause + size: 37610 + timestamp: 1753334284270 +- conda: https://prefix.dev/robostack-staging/linux-64/ros-humble-rqt-shell-1.0.2-np126py311hbc2a38a_13.conda + sha256: 8836443096ea5d0fee366fe733dbe2c2a8ade82d015d70e46f3e4ef5cfb98a6b + md5: d210da79703b6f10b5a026fe60be114b + depends: + - catkin_pkg + - python + - ros-humble-python-qt-binding + - ros-humble-qt-gui + - ros-humble-qt-gui-py-common + - ros-humble-ros-workspace + - ros-humble-rqt-gui + - ros-humble-rqt-gui-py + - ros2-distro-mutex 0.7.* humble_* + - __glibc >=2.17,<3.0.a0 + - libstdcxx >=13 + - libgcc >=13 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + - numpy >=1.26.4,<2.0a0 + - python_abi 3.11.* *_cp311 + license: BSD-3-Clause + size: 28927 + timestamp: 1753313909352 +- conda: https://prefix.dev/robostack-staging/linux-aarch64/ros-humble-rqt-shell-1.0.2-np126py311hbdd918e_13.conda + sha256: df8b078fd4d402ae9ca6e06cc209a08199784d5b2f50394713c983c9e51c45d9 + md5: 9aebc5ff149bdf486eabc8cf9fba9e9e + depends: + - catkin_pkg + - python + - ros-humble-python-qt-binding + - ros-humble-qt-gui + - ros-humble-qt-gui-py-common + - ros-humble-ros-workspace + - ros-humble-rqt-gui + - ros-humble-rqt-gui-py + - ros2-distro-mutex 0.7.* humble_* + - libgcc >=13 + - libstdcxx >=13 + - libgcc >=13 + - python_abi 3.11.* *_cp311 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + - numpy >=1.26.4,<2.0a0 + license: BSD-3-Clause + size: 28796 + timestamp: 1753314038852 +- conda: https://prefix.dev/robostack-staging/osx-arm64/ros-humble-rqt-shell-1.0.2-np126py311h2a51a2c_13.conda + sha256: 51527890d15513efc351411348c30c364cb9cf26991761f721da1f4d587dfb39 + md5: 46343bf4a3b566ec43a648464716e4d8 + depends: + - catkin_pkg + - python + - ros-humble-python-qt-binding + - ros-humble-qt-gui + - ros-humble-qt-gui-py-common + - ros-humble-ros-workspace + - ros-humble-rqt-gui + - ros-humble-rqt-gui-py + - ros2-distro-mutex 0.7.* humble_* + - libcxx >=18 + - __osx >=11.0 + - python_abi 3.11.* *_cp311 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + - numpy >=1.26.4,<2.0a0 + license: BSD-3-Clause + size: 29046 + timestamp: 1753314059682 +- conda: https://prefix.dev/robostack-staging/win-64/ros-humble-rqt-shell-1.0.2-np126py311hd5de103_13.conda + sha256: 04cb8d58c72a5f4e4ae84e790a8356488c72f2d59f051572bd1ba0e170e2b0df + md5: edcc478427bb89ef553c3c3eedcd0722 + depends: + - catkin_pkg + - python + - ros-humble-python-qt-binding + - ros-humble-qt-gui + - ros-humble-qt-gui-py-common + - ros-humble-ros-workspace + - ros-humble-rqt-gui + - ros-humble-rqt-gui-py + - ros2-distro-mutex 0.7.* humble_* + - vc >=14.3,<15 + - vc14_runtime >=14.44.35208 + - ucrt >=10.0.20348.0 + - vc >=14.3,<15 + - vc14_runtime >=14.44.35208 + - ucrt >=10.0.20348.0 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + - numpy >=1.26.4,<2.0a0 + - python_abi 3.11.* *_cp311 + license: BSD-3-Clause + size: 34454 + timestamp: 1753334223404 +- conda: https://prefix.dev/robostack-staging/linux-64/ros-humble-rqt-srv-1.0.3-np126py311hbc2a38a_13.conda + sha256: d31fb95ad9d7e2d209f350631676a5b8e29c1ce585476cf3ba3d94cb55d5975d + md5: a4b4186270d666ae22772c30f27417a0 + depends: + - python + - ros-humble-rclpy + - ros-humble-ros-workspace + - ros-humble-rqt-gui + - ros-humble-rqt-gui-py + - ros-humble-rqt-msg + - ros2-distro-mutex 0.7.* humble_* + - libgcc >=13 + - libstdcxx >=13 + - libgcc >=13 + - __glibc >=2.17,<3.0.a0 + - numpy >=1.26.4,<2.0a0 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + - python_abi 3.11.* *_cp311 + license: BSD-3-Clause + size: 19057 + timestamp: 1753314324391 +- conda: https://prefix.dev/robostack-staging/linux-aarch64/ros-humble-rqt-srv-1.0.3-np126py311hbdd918e_13.conda + sha256: 1739ebb968ab1442375a786603c740a8e07c79a29930ed6150bf3cc66e0f4611 + md5: 898e50aa17eb1dcfb44ac7320f47604e + depends: + - python + - ros-humble-rclpy + - ros-humble-ros-workspace + - ros-humble-rqt-gui + - ros-humble-rqt-gui-py + - ros-humble-rqt-msg + - ros2-distro-mutex 0.7.* humble_* + - libstdcxx >=13 + - libgcc >=13 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + - python_abi 3.11.* *_cp311 + - numpy >=1.26.4,<2.0a0 + license: BSD-3-Clause + size: 18881 + timestamp: 1753314391550 +- conda: https://prefix.dev/robostack-staging/osx-arm64/ros-humble-rqt-srv-1.0.3-np126py311h2a51a2c_13.conda + sha256: e8e70a4d21a030c598d75d0b61714ebdce1a145f0ad359faccdbaaead0d71f75 + md5: 029fa0c6716f20f9d09be7371b8ce0b5 + depends: + - python + - ros-humble-rclpy + - ros-humble-ros-workspace + - ros-humble-rqt-gui + - ros-humble-rqt-gui-py + - ros-humble-rqt-msg + - ros2-distro-mutex 0.7.* humble_* + - libcxx >=18 + - __osx >=11.0 + - numpy >=1.26.4,<2.0a0 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + - python_abi 3.11.* *_cp311 + license: BSD-3-Clause + size: 19172 + timestamp: 1753314911300 +- conda: https://prefix.dev/robostack-staging/win-64/ros-humble-rqt-srv-1.0.3-np126py311hd5de103_13.conda + sha256: ffb38cf482ce6681f5f56276f9875c9c634776f9ce6eff1e9cf08ed639cb97a0 + md5: e4f330e51053db87988f10f0e596fbad + depends: + - python + - ros-humble-rclpy + - ros-humble-ros-workspace + - ros-humble-rqt-gui + - ros-humble-rqt-gui-py + - ros-humble-rqt-msg + - ros2-distro-mutex 0.7.* humble_* + - vc >=14.3,<15 + - vc14_runtime >=14.44.35208 + - ucrt >=10.0.20348.0 + - vc >=14.3,<15 + - vc14_runtime >=14.44.35208 + - ucrt >=10.0.20348.0 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + - numpy >=1.26.4,<2.0a0 + - python_abi 3.11.* *_cp311 + license: BSD-3-Clause + size: 24515 + timestamp: 1753336701627 +- conda: https://prefix.dev/robostack-staging/linux-64/ros-humble-rqt-topic-1.5.0-np126py311hbc2a38a_13.conda + sha256: faa563142237e0adfc68c72a4d0a2a058306a98e70dd2d177f1c1cfcf5ca70f5 + md5: f48816e66b970b9feb841827d65f7087 + depends: + - python + - ros-humble-python-qt-binding + - ros-humble-ros-workspace + - ros-humble-rqt-gui + - ros-humble-rqt-gui-py + - ros-humble-rqt-py-common + - ros2-distro-mutex 0.7.* humble_* + - __glibc >=2.17,<3.0.a0 + - libgcc >=13 + - libstdcxx >=13 + - libgcc >=13 + - python_abi 3.11.* *_cp311 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + - numpy >=1.26.4,<2.0a0 + license: BSD-3-Clause + size: 37468 + timestamp: 1753313855169 +- conda: https://prefix.dev/robostack-staging/linux-aarch64/ros-humble-rqt-topic-1.5.0-np126py311hbdd918e_13.conda + sha256: db1890b1ef4e375dc9766d1a4121e4e14c9576273ade5c8614e0371a6622d2b6 + md5: a845894dd452b0a9b4fb8b965a945d6d + depends: + - python + - ros-humble-python-qt-binding + - ros-humble-ros-workspace + - ros-humble-rqt-gui + - ros-humble-rqt-gui-py + - ros-humble-rqt-py-common + - ros2-distro-mutex 0.7.* humble_* + - libstdcxx >=13 + - libgcc >=13 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + - numpy >=1.26.4,<2.0a0 + - python_abi 3.11.* *_cp311 + license: BSD-3-Clause + size: 37384 + timestamp: 1753313960771 +- conda: https://prefix.dev/robostack-staging/osx-arm64/ros-humble-rqt-topic-1.5.0-np126py311h2a51a2c_13.conda + sha256: bbf348996e1682808eb101e58d6f4334c830a3f51b2344ef50eee595b543b086 + md5: 33c9aebd69a6f7bd383068e02c64edd0 + depends: + - python + - ros-humble-python-qt-binding + - ros-humble-ros-workspace + - ros-humble-rqt-gui + - ros-humble-rqt-gui-py + - ros-humble-rqt-py-common + - ros2-distro-mutex 0.7.* humble_* + - libcxx >=18 + - __osx >=11.0 + - numpy >=1.26.4,<2.0a0 + - python_abi 3.11.* *_cp311 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + license: BSD-3-Clause + size: 37539 + timestamp: 1753313836711 +- conda: https://prefix.dev/robostack-staging/win-64/ros-humble-rqt-topic-1.5.0-np126py311hd5de103_13.conda + sha256: 2a562c9afaca35fc6034f34bf89f76eabc76bd7ef59354a0db0ef4f9027e53be + md5: 963c8dae78d8baa8df52b0e029291242 + depends: + - python + - ros-humble-python-qt-binding + - ros-humble-ros-workspace + - ros-humble-rqt-gui + - ros-humble-rqt-gui-py + - ros-humble-rqt-py-common + - ros2-distro-mutex 0.7.* humble_* + - vc >=14.3,<15 + - vc14_runtime >=14.44.35208 + - ucrt >=10.0.20348.0 + - vc >=14.3,<15 + - vc14_runtime >=14.44.35208 + - ucrt >=10.0.20348.0 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + - python_abi 3.11.* *_cp311 + - numpy >=1.26.4,<2.0a0 + license: BSD-3-Clause + size: 42904 + timestamp: 1753335075831 +- conda: https://prefix.dev/robostack-staging/linux-64/ros-humble-rti-connext-dds-cmake-module-0.11.3-np126py311hbc2a38a_13.conda + sha256: 710b793c1a78baab8626c07ed04aba0c20200cc229dbeb2d29414364c91ab331 + md5: 044ff177cdfdc53a802018d42355fb44 + depends: + - python + - ros-humble-ament-cmake + - ros-humble-ros-workspace + - ros2-distro-mutex 0.7.* humble_* + - libstdcxx >=13 + - libgcc >=13 + - __glibc >=2.17,<3.0.a0 + - libgcc >=13 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + - numpy >=1.26.4,<2.0a0 + - python_abi 3.11.* *_cp311 + license: BSD-3-Clause + size: 30811 + timestamp: 1753309786021 +- conda: https://prefix.dev/robostack-staging/linux-aarch64/ros-humble-rti-connext-dds-cmake-module-0.11.3-np126py311hbdd918e_13.conda + sha256: 7163dcf5c45e656eca3b1137567a3a510efa3045f7717c347704aeb45d698471 + md5: 09a26ceeea15b1ae7066d9d4f8a507f6 + depends: + - python + - ros-humble-ament-cmake + - ros-humble-ros-workspace + - ros2-distro-mutex 0.7.* humble_* + - libstdcxx >=13 + - libgcc >=13 + - numpy >=1.26.4,<2.0a0 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + - python_abi 3.11.* *_cp311 + license: BSD-3-Clause + size: 30741 + timestamp: 1753309569389 +- conda: https://prefix.dev/robostack-staging/osx-arm64/ros-humble-rti-connext-dds-cmake-module-0.11.3-np126py311h2a51a2c_13.conda + sha256: eb0e31bf4691327c08e7e674c97aa0b3a82db16e486c02dfd6734c4ea888a6d3 + md5: 3151b798860ee7250a094be4ed5e849c + depends: + - python + - ros-humble-ament-cmake + - ros-humble-ros-workspace + - ros2-distro-mutex 0.7.* humble_* + - __osx >=11.0 + - libcxx >=18 + - numpy >=1.26.4,<2.0a0 + - python_abi 3.11.* *_cp311 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + license: BSD-3-Clause + size: 30970 + timestamp: 1753310254638 +- conda: https://prefix.dev/robostack-staging/win-64/ros-humble-rti-connext-dds-cmake-module-0.11.3-np126py311hd5de103_13.conda + sha256: 87bedcf9b81b888a4ac58781d96797b11afe8a0502e6eb185911d9e5904a3a7b + md5: 5ffaed20398c8d3fecb7444bd430768f + depends: + - python + - ros-humble-ament-cmake + - ros-humble-ros-workspace + - ros2-distro-mutex 0.7.* humble_* + - vc >=14.3,<15 + - vc14_runtime >=14.44.35208 + - ucrt >=10.0.20348.0 + - vc >=14.3,<15 + - vc14_runtime >=14.44.35208 + - ucrt >=10.0.20348.0 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + - numpy >=1.26.4,<2.0a0 + - python_abi 3.11.* *_cp311 + license: BSD-3-Clause + size: 27515 + timestamp: 1753318381252 +- conda: https://prefix.dev/robostack-staging/linux-64/ros-humble-rttest-0.13.0-np126py311hbc2a38a_13.conda + sha256: e2a138a78c1f6640ef858d5a8aeddc29175cf74e0c58052fe2a3c6aec236928c + md5: 32b5a9a898d8ab1b503a3968342c43d1 + depends: + - python + - ros-humble-ros-workspace + - ros2-distro-mutex 0.7.* humble_* + - libgcc >=13 + - libstdcxx >=13 + - libgcc >=13 + - __glibc >=2.17,<3.0.a0 + - numpy >=1.26.4,<2.0a0 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + - python_abi 3.11.* *_cp311 + license: BSD-3-Clause + size: 53574 + timestamp: 1753309547037 +- conda: https://prefix.dev/robostack-staging/linux-aarch64/ros-humble-rttest-0.13.0-np126py311hbdd918e_13.conda + sha256: e4377d3dfa4aa370b02b668740e93828defbd08943a8b68d4254df95f09b2997 + md5: 4f53b75c17a414ba187f689cb2f7cd5d + depends: + - python + - ros-humble-ros-workspace + - ros2-distro-mutex 0.7.* humble_* + - libgcc >=13 + - libstdcxx >=13 + - libgcc >=13 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + - numpy >=1.26.4,<2.0a0 + - python_abi 3.11.* *_cp311 + license: BSD-3-Clause + size: 53935 + timestamp: 1753309405415 +- conda: https://prefix.dev/robostack-staging/linux-64/ros-humble-rviz-assimp-vendor-11.2.18-np126py311hbc2a38a_13.conda + sha256: 497c6ca0e05824dc535b7098517b2c8c0417c43cb2af3a68f59a11d2f94d5faa + md5: 84e0848a7bffc769ecc08d0238c627ba + depends: + - assimp + - python + - ros-humble-ros-workspace + - ros2-distro-mutex 0.7.* humble_* + - libstdcxx >=13 + - libgcc >=13 + - __glibc >=2.17,<3.0.a0 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + - numpy >=1.26.4,<2.0a0 + - assimp >=5.4.3,<5.4.4.0a0 + - python_abi 3.11.* *_cp311 + license: BSD-3-Clause + size: 24156 + timestamp: 1753309483401 +- conda: https://prefix.dev/robostack-staging/linux-aarch64/ros-humble-rviz-assimp-vendor-11.2.18-np126py311hbdd918e_13.conda + sha256: 8423436f5e5d0a6e90d9e519603c12fbfd60ba857a321f7f7d47b515faea1f4a + md5: 788efd6ea662d0353992b246e1c969b9 + depends: + - assimp + - python + - ros-humble-ros-workspace + - ros2-distro-mutex 0.7.* humble_* + - libgcc >=13 + - libstdcxx >=13 + - libgcc >=13 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + - numpy >=1.26.4,<2.0a0 + - assimp >=5.4.3,<5.4.4.0a0 + - python_abi 3.11.* *_cp311 + license: BSD-3-Clause + size: 24070 + timestamp: 1753309348817 +- conda: https://prefix.dev/robostack-staging/osx-arm64/ros-humble-rviz-assimp-vendor-11.2.18-np126py311h2a51a2c_13.conda + sha256: 31ab0948afea6c6f9ab92718883a51756c7f1e7e6faa99e8d58710b42a42523f + md5: 84b4f3558121ea49616e8bce62d772fc + depends: + - assimp + - python + - ros-humble-ros-workspace + - ros2-distro-mutex 0.7.* humble_* + - __osx >=11.0 + - libcxx >=18 + - python_abi 3.11.* *_cp311 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + - numpy >=1.26.4,<2.0a0 + - assimp >=5.4.3,<5.4.4.0a0 + license: BSD-3-Clause + size: 24287 + timestamp: 1753310054365 +- conda: https://prefix.dev/robostack-staging/win-64/ros-humble-rviz-assimp-vendor-11.2.18-np126py311hd5de103_13.conda + sha256: 1125d1180cdea036dfaa362d5d97495781664cde0966811453602c6fe82a5dbd + md5: 12d57b49d699bb0284fbea0d4ba44097 + depends: + - assimp + - python + - ros-humble-ros-workspace + - ros2-distro-mutex 0.7.* humble_* + - vc >=14.3,<15 + - vc14_runtime >=14.44.35208 + - ucrt >=10.0.20348.0 + - vc >=14.3,<15 + - vc14_runtime >=14.44.35208 + - ucrt >=10.0.20348.0 + - numpy >=1.26.4,<2.0a0 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + - python_abi 3.11.* *_cp311 + - assimp >=5.4.3,<5.4.4.0a0 + license: BSD-3-Clause + size: 20698 + timestamp: 1753317160349 +- conda: https://prefix.dev/robostack-staging/linux-64/ros-humble-rviz-common-11.2.18-np126py311hbc2a38a_13.conda + sha256: 46c3eaeb5cb9034418e8177188e5249eca6cb17e5d40f228162606fcd036b3a1 + md5: 2169ef3b7aa736cb26e197f6205332d6 + depends: + - python + - qt-main + - ros-humble-geometry-msgs + - ros-humble-message-filters + - ros-humble-pluginlib + - ros-humble-rclcpp + - ros-humble-rcpputils + - ros-humble-resource-retriever + - ros-humble-ros-workspace + - ros-humble-rviz-ogre-vendor + - ros-humble-rviz-rendering + - ros-humble-sensor-msgs + - ros-humble-std-msgs + - ros-humble-tf2 + - ros-humble-tf2-geometry-msgs + - ros-humble-tf2-ros + - ros-humble-tinyxml2-vendor + - ros-humble-urdf + - ros-humble-yaml-cpp-vendor + - ros2-distro-mutex 0.7.* humble_* + - xorg-libx11 + - xorg-libxext + - __glibc >=2.17,<3.0.a0 + - libgcc >=13 + - libstdcxx >=13 + - libgcc >=13 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + - xorg-libxext >=1.3.6,<2.0a0 + - qt-main >=5.15.15,<5.16.0a0 + - libgl >=1.7.0,<2.0a0 + - xorg-libx11 >=1.8.12,<2.0a0 + - numpy >=1.26.4,<2.0a0 + - python_abi 3.11.* *_cp311 + - libopengl >=1.7.0,<2.0a0 + license: BSD-3-Clause + size: 839286 + timestamp: 1753314316450 +- conda: https://prefix.dev/robostack-staging/linux-aarch64/ros-humble-rviz-common-11.2.18-np126py311hbdd918e_13.conda + sha256: 80ebbd97dc0d5e4d1b25a1c5dbd0dd510c5a9b092d95860027d6f8edf818d58b + md5: fe7a38ba7583a610ea3143f24882be82 + depends: + - python + - qt-main + - ros-humble-geometry-msgs + - ros-humble-message-filters + - ros-humble-pluginlib + - ros-humble-rclcpp + - ros-humble-rcpputils + - ros-humble-resource-retriever + - ros-humble-ros-workspace + - ros-humble-rviz-ogre-vendor + - ros-humble-rviz-rendering + - ros-humble-sensor-msgs + - ros-humble-std-msgs + - ros-humble-tf2 + - ros-humble-tf2-geometry-msgs + - ros-humble-tf2-ros + - ros-humble-tinyxml2-vendor + - ros-humble-urdf + - ros-humble-yaml-cpp-vendor + - ros2-distro-mutex 0.7.* humble_* + - xorg-libx11 + - xorg-libxext + - libstdcxx >=13 + - libgcc >=13 + - python_abi 3.11.* *_cp311 + - libgl >=1.7.0,<2.0a0 + - libopengl >=1.7.0,<2.0a0 + - xorg-libx11 >=1.8.12,<2.0a0 + - xorg-libxext >=1.3.6,<2.0a0 + - qt-main >=5.15.15,<5.16.0a0 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + - numpy >=1.26.4,<2.0a0 + license: BSD-3-Clause + size: 832802 + timestamp: 1753314374909 +- conda: https://prefix.dev/robostack-staging/osx-arm64/ros-humble-rviz-common-11.2.18-np126py311h2a51a2c_13.conda + sha256: 69f11e4e2eb40bc8b1232b983fe58b9d22058807387de1ef93872ad0f2553be3 + md5: 3a0f393c33247fe479e49076f328b210 + depends: + - python + - qt-main + - ros-humble-geometry-msgs + - ros-humble-message-filters + - ros-humble-pluginlib + - ros-humble-rclcpp + - ros-humble-rcpputils + - ros-humble-resource-retriever + - ros-humble-ros-workspace + - ros-humble-rviz-ogre-vendor + - ros-humble-rviz-rendering + - ros-humble-sensor-msgs + - ros-humble-std-msgs + - ros-humble-tf2 + - ros-humble-tf2-geometry-msgs + - ros-humble-tf2-ros + - ros-humble-tinyxml2-vendor + - ros-humble-urdf + - ros-humble-yaml-cpp-vendor + - ros2-distro-mutex 0.7.* humble_* + - xorg-libx11 + - xorg-libxext + - __osx >=11.0 + - libcxx >=18 + - xorg-libxext >=1.3.6,<2.0a0 + - qt-main >=5.15.15,<5.16.0a0 + - xorg-libx11 >=1.8.12,<2.0a0 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + - python_abi 3.11.* *_cp311 + - numpy >=1.26.4,<2.0a0 + license: BSD-3-Clause + size: 633173 + timestamp: 1753314907654 +- conda: https://prefix.dev/robostack-staging/win-64/ros-humble-rviz-common-11.2.18-np126py311hd5de103_13.conda + sha256: b90c1c0c6e2f073eeabbf18839918dcec08d507bf638903ae582ba3d5a3cae04 + md5: 50c37c16c28b7519f6c1a7070568f2b8 + depends: + - python + - qt-main + - ros-humble-geometry-msgs + - ros-humble-message-filters + - ros-humble-pluginlib + - ros-humble-rclcpp + - ros-humble-rcpputils + - ros-humble-resource-retriever + - ros-humble-ros-workspace + - ros-humble-rviz-ogre-vendor + - ros-humble-rviz-rendering + - ros-humble-sensor-msgs + - ros-humble-std-msgs + - ros-humble-tf2 + - ros-humble-tf2-geometry-msgs + - ros-humble-tf2-ros + - ros-humble-tinyxml2-vendor + - ros-humble-urdf + - ros-humble-yaml-cpp-vendor + - ros2-distro-mutex 0.7.* humble_* + - vc >=14.3,<15 + - vc14_runtime >=14.44.35208 + - ucrt >=10.0.20348.0 + - vc >=14.3,<15 + - vc14_runtime >=14.44.35208 + - ucrt >=10.0.20348.0 + - qt-main >=5.15.15,<5.16.0a0 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + - numpy >=1.26.4,<2.0a0 + - python_abi 3.11.* *_cp311 + license: BSD-3-Clause + size: 631406 + timestamp: 1753336805533 +- conda: https://prefix.dev/robostack-staging/linux-64/ros-humble-rviz-default-plugins-11.2.18-np126py311hbc2a38a_13.conda + sha256: 1d527cc98d85e6480ae09a040bc3488343af7203473bc12f8905413065a30161 + md5: 59c48098f4c12158abe33ad7f15124ac + depends: + - python + - qt-main + - ros-humble-geometry-msgs + - ros-humble-ignition-math6-vendor + - ros-humble-image-transport + - ros-humble-interactive-markers + - ros-humble-laser-geometry + - ros-humble-map-msgs + - ros-humble-nav-msgs + - ros-humble-pluginlib + - ros-humble-rclcpp + - ros-humble-resource-retriever + - ros-humble-ros-workspace + - ros-humble-rviz-common + - ros-humble-rviz-ogre-vendor + - ros-humble-rviz-rendering + - ros-humble-tf2 + - ros-humble-tf2-geometry-msgs + - ros-humble-tf2-ros + - ros-humble-urdf + - ros-humble-visualization-msgs + - ros2-distro-mutex 0.7.* humble_* + - xorg-libx11 + - xorg-libxext + - libgcc >=13 + - libstdcxx >=13 + - libgcc >=13 + - __glibc >=2.17,<3.0.a0 + - qt-main >=5.15.15,<5.16.0a0 + - libopengl >=1.7.0,<2.0a0 + - numpy >=1.26.4,<2.0a0 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + - xorg-libxext >=1.3.6,<2.0a0 + - python_abi 3.11.* *_cp311 + - libgl >=1.7.0,<2.0a0 + - xorg-libx11 >=1.8.12,<2.0a0 + license: BSD-3-Clause + size: 2238373 + timestamp: 1753315139439 +- conda: https://prefix.dev/robostack-staging/linux-aarch64/ros-humble-rviz-default-plugins-11.2.18-np126py311hbdd918e_13.conda + sha256: d6db00239f5b9669b8beb91a1d94f68ecb0da30eafa0157b15919d0e8db71839 + md5: 2ea71bbbaccde19b509a60f6543a846c + depends: + - python + - qt-main + - ros-humble-geometry-msgs + - ros-humble-ignition-math6-vendor + - ros-humble-image-transport + - ros-humble-interactive-markers + - ros-humble-laser-geometry + - ros-humble-map-msgs + - ros-humble-nav-msgs + - ros-humble-pluginlib + - ros-humble-rclcpp + - ros-humble-resource-retriever + - ros-humble-ros-workspace + - ros-humble-rviz-common + - ros-humble-rviz-ogre-vendor + - ros-humble-rviz-rendering + - ros-humble-tf2 + - ros-humble-tf2-geometry-msgs + - ros-humble-tf2-ros + - ros-humble-urdf + - ros-humble-visualization-msgs + - ros2-distro-mutex 0.7.* humble_* + - xorg-libx11 + - xorg-libxext + - libgcc >=13 + - libstdcxx >=13 + - libgcc >=13 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + - libopengl >=1.7.0,<2.0a0 + - qt-main >=5.15.15,<5.16.0a0 + - xorg-libx11 >=1.8.12,<2.0a0 + - xorg-libxext >=1.3.6,<2.0a0 + - numpy >=1.26.4,<2.0a0 + - libgl >=1.7.0,<2.0a0 + - python_abi 3.11.* *_cp311 + license: BSD-3-Clause + size: 2264456 + timestamp: 1753315075550 +- conda: https://prefix.dev/robostack-staging/osx-arm64/ros-humble-rviz-default-plugins-11.2.18-np126py311h2a51a2c_13.conda + sha256: e771c5ae9698760ab191a74dc55e8eb69ef1547022522e331286d303c43bf6c8 + md5: b73ddea227e6eff47f99a3ac9137a611 + depends: + - python + - qt-main + - ros-humble-geometry-msgs + - ros-humble-ignition-math6-vendor + - ros-humble-image-transport + - ros-humble-interactive-markers + - ros-humble-laser-geometry + - ros-humble-map-msgs + - ros-humble-nav-msgs + - ros-humble-pluginlib + - ros-humble-rclcpp + - ros-humble-resource-retriever + - ros-humble-ros-workspace + - ros-humble-rviz-common + - ros-humble-rviz-ogre-vendor + - ros-humble-rviz-rendering + - ros-humble-tf2 + - ros-humble-tf2-geometry-msgs + - ros-humble-tf2-ros + - ros-humble-urdf + - ros-humble-visualization-msgs + - ros2-distro-mutex 0.7.* humble_* + - xorg-libx11 + - xorg-libxext + - libcxx >=18 + - __osx >=11.0 + - python_abi 3.11.* *_cp311 + - numpy >=1.26.4,<2.0a0 + - xorg-libxext >=1.3.6,<2.0a0 + - qt-main >=5.15.15,<5.16.0a0 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + - xorg-libx11 >=1.8.12,<2.0a0 + license: BSD-3-Clause + size: 1541252 + timestamp: 1753317596231 +- conda: https://prefix.dev/robostack-staging/win-64/ros-humble-rviz-default-plugins-11.2.18-np126py311hd5de103_13.conda + sha256: dfed895a2c7328df6cf55697e1c2905ee3166ce82201e634613d0179cdc075b7 + md5: de523092deaf7d754fa8e681c8975b34 + depends: + - python + - qt-main + - ros-humble-geometry-msgs + - ros-humble-ignition-math6-vendor + - ros-humble-image-transport + - ros-humble-interactive-markers + - ros-humble-laser-geometry + - ros-humble-map-msgs + - ros-humble-nav-msgs + - ros-humble-pluginlib + - ros-humble-rclcpp + - ros-humble-resource-retriever + - ros-humble-ros-workspace + - ros-humble-rviz-common + - ros-humble-rviz-ogre-vendor + - ros-humble-rviz-rendering + - ros-humble-tf2 + - ros-humble-tf2-geometry-msgs + - ros-humble-tf2-ros + - ros-humble-urdf + - ros-humble-visualization-msgs + - ros2-distro-mutex 0.7.* humble_* + - vc >=14.3,<15 + - vc14_runtime >=14.44.35208 + - ucrt >=10.0.20348.0 + - vc >=14.3,<15 + - vc14_runtime >=14.44.35208 + - ucrt >=10.0.20348.0 + - python_abi 3.11.* *_cp311 + - numpy >=1.26.4,<2.0a0 + - qt-main >=5.15.15,<5.16.0a0 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + license: BSD-3-Clause + size: 1069171 + timestamp: 1753342164709 +- conda: https://prefix.dev/robostack-staging/linux-64/ros-humble-rviz-ogre-vendor-11.2.18-np126py311h0de9e34_13.conda + sha256: d18cabb92f780b91e13d5a4abe8a63a001dcd1fe68f46fdf5a728b2507ac031e + md5: 084fb7fc5fa70628fba4fda1b58af4bd + depends: + - assimp + - freetype + - glew + - python + - ros-humble-ros-workspace + - ros2-distro-mutex 0.7.* humble_* + - xorg-libx11 + - xorg-libxaw + - xorg-libxrandr + - xorg-xorgproto + - xorg-libx11 + - xorg-libxext + - __glibc >=2.17,<3.0.a0 + - libstdcxx >=13 + - libgcc >=13 + - freeimage >=3.18.0,<3.19.0a0 + - xorg-libxext >=1.3.6,<2.0a0 + - libopengl >=1.7.0,<2.0a0 + - xorg-libxrandr >=1.5.4,<2.0a0 + - pugixml >=1.15,<1.16.0a0 + - libzlib >=1.3.1,<2.0a0 + - assimp >=5.4.3,<5.4.4.0a0 + - numpy >=1.26.4,<2.0a0 + - zziplib >=0.13.69,<0.14.0a0 + - libfreetype >=2.13.3 + - libfreetype6 >=2.13.3 + - libglu >=9.0.3,<9.1.0a0 + - glew >=2.1.0,<2.2.0a0 + - libgl >=1.7.0,<2.0a0 + - xorg-libx11 >=1.8.12,<2.0a0 + - python_abi 3.11.* *_cp311 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + license: BSD-3-Clause + size: 5420331 + timestamp: 1753309107123 +- conda: https://prefix.dev/robostack-staging/linux-aarch64/ros-humble-rviz-ogre-vendor-11.2.18-np126py311ha9b9805_13.conda + sha256: deebdd720d24d2e6328092ad09147274e9c9c359ef3d225054c4560dcdd02b88 + md5: 330861fb57c8d0b5c517d5cff76012a2 + depends: + - assimp + - freetype + - glew + - python + - ros-humble-ros-workspace + - ros2-distro-mutex 0.7.* humble_* + - xorg-libx11 + - xorg-libxaw + - xorg-libxrandr + - xorg-xorgproto + - xorg-libx11 + - xorg-libxext + - libstdcxx >=13 + - libgcc >=13 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + - xorg-libx11 >=1.8.12,<2.0a0 + - libzlib >=1.3.1,<2.0a0 + - zziplib >=0.13.69,<0.14.0a0 + - libgl >=1.7.0,<2.0a0 + - numpy >=1.26.4,<2.0a0 + - glew >=2.1.0,<2.2.0a0 + - xorg-libxext >=1.3.6,<2.0a0 + - python_abi 3.11.* *_cp311 + - pugixml >=1.15,<1.16.0a0 + - assimp >=5.4.3,<5.4.4.0a0 + - xorg-libxrandr >=1.5.4,<2.0a0 + - libopengl >=1.7.0,<2.0a0 + - libfreetype >=2.13.3 + - libfreetype6 >=2.13.3 + - freeimage >=3.18.0,<3.19.0a0 + - libglu >=9.0.3,<9.1.0a0 + license: BSD-3-Clause + size: 5297221 + timestamp: 1753309093026 +- conda: https://prefix.dev/robostack-staging/osx-arm64/ros-humble-rviz-ogre-vendor-11.2.18-np126py311h36b6526_13.conda + sha256: 28886da54a0dd9d1fdb6381c701248510ccc202ed77bdb12193f4f026507a434 + md5: a3f671dbd1e6312b1781d0e38cff68ad + depends: + - assimp + - freetype + - glew + - python + - ros-humble-ros-workspace + - ros2-distro-mutex 0.7.* humble_* + - xorg-libx11 + - xorg-libxaw + - xorg-libxrandr + - xorg-xorgproto + - xorg-libx11 + - xorg-libxext + - __osx >=11.0 + - libcxx >=18 + - freeimage >=3.18.0,<3.19.0a0 + - xorg-libxrandr >=1.5.4,<2.0a0 + - zziplib >=0.13.69,<0.14.0a0 + - glew >=2.1.0,<2.2.0a0 + - libzlib >=1.3.1,<2.0a0 + - numpy >=1.26.4,<2.0a0 + - xorg-libx11 >=1.8.12,<2.0a0 + - python_abi 3.11.* *_cp311 + - assimp >=5.4.3,<5.4.4.0a0 + - libfreetype >=2.13.3 + - libfreetype6 >=2.13.3 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + - xorg-libxext >=1.3.6,<2.0a0 + - pugixml >=1.15,<1.16.0a0 + license: BSD-3-Clause + size: 4103289 + timestamp: 1753309730744 +- conda: https://prefix.dev/robostack-staging/win-64/ros-humble-rviz-ogre-vendor-11.2.18-np126py311hcdf5458_13.conda + sha256: 255686448aec45ed74a45bfc6d73ec52b2586a1a79b31295fc6790bfee17e072 + md5: e78a913edfd9dd566970dcd94311e11f + depends: + - assimp + - freetype + - glew + - python + - ros-humble-ros-workspace + - ros2-distro-mutex 0.7.* humble_* + - xorg-libx11 + - xorg-xorgproto + - vc >=14.3,<15 + - vc14_runtime >=14.44.35208 + - ucrt >=10.0.20348.0 + - vc >=14.3,<15 + - vc14_runtime >=14.44.35208 + - ucrt >=10.0.20348.0 + - freeimage >=3.18.0,<3.19.0a0 + - glew >=2.1.0,<2.2.0a0 + - xorg-libx11 >=1.8.12,<2.0a0 + - libfreetype >=2.13.3 + - libfreetype6 >=2.13.3 + - libzlib >=1.3.1,<2.0a0 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + - zziplib >=0.13.69,<0.14.0a0 + - numpy >=1.26.4,<2.0a0 + - assimp >=5.4.3,<5.4.4.0a0 + - pugixml >=1.15,<1.16.0a0 + - python_abi 3.11.* *_cp311 + license: BSD-3-Clause + size: 4628486 + timestamp: 1753315767546 +- conda: https://prefix.dev/robostack-staging/linux-64/ros-humble-rviz-rendering-11.2.18-np126py311hbc2a38a_13.conda + sha256: 0169c842ba6aadb23f13c47d3b7de7edf9cdcf201e8120cea9a35c09b336ad66 + md5: 08f7d032fc46b5a7444220851d0e1fe7 + depends: + - eigen + - python + - qt-main + - ros-humble-ament-index-cpp + - ros-humble-eigen3-cmake-module + - ros-humble-resource-retriever + - ros-humble-ros-workspace + - ros-humble-rviz-assimp-vendor + - ros-humble-rviz-ogre-vendor + - ros2-distro-mutex 0.7.* humble_* + - xorg-libx11 + - xorg-libxext + - __glibc >=2.17,<3.0.a0 + - libgcc >=13 + - libstdcxx >=13 + - libgcc >=13 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + - glew >=2.1.0,<2.2.0a0 + - xorg-libx11 >=1.8.12,<2.0a0 + - numpy >=1.26.4,<2.0a0 + - libopengl >=1.7.0,<2.0a0 + - xorg-libxext >=1.3.6,<2.0a0 + - qt-main >=5.15.15,<5.16.0a0 + - libgl >=1.7.0,<2.0a0 + - python_abi 3.11.* *_cp311 + license: BSD-3-Clause + size: 899566 + timestamp: 1753309946425 +- conda: https://prefix.dev/robostack-staging/linux-aarch64/ros-humble-rviz-rendering-11.2.18-np126py311hbdd918e_13.conda + sha256: d4c7915fc0f9fe2f6efe85faf25bdd7cb159c75a5e2d9bc07eb370813acc8c42 + md5: fd6342cb75e9b3cdb87d20b667bb5521 + depends: + - eigen + - python + - qt-main + - ros-humble-ament-index-cpp + - ros-humble-eigen3-cmake-module + - ros-humble-resource-retriever + - ros-humble-ros-workspace + - ros-humble-rviz-assimp-vendor + - ros-humble-rviz-ogre-vendor + - ros2-distro-mutex 0.7.* humble_* + - xorg-libx11 + - xorg-libxext + - libgcc >=13 + - libstdcxx >=13 + - libgcc >=13 + - python_abi 3.11.* *_cp311 + - libgl >=1.7.0,<2.0a0 + - glew >=2.1.0,<2.2.0a0 + - libopengl >=1.7.0,<2.0a0 + - numpy >=1.26.4,<2.0a0 + - xorg-libx11 >=1.8.12,<2.0a0 + - xorg-libxext >=1.3.6,<2.0a0 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + - qt-main >=5.15.15,<5.16.0a0 + license: BSD-3-Clause + size: 890716 + timestamp: 1753309732832 +- conda: https://prefix.dev/robostack-staging/osx-arm64/ros-humble-rviz-rendering-11.2.18-np126py311h2a51a2c_13.conda + sha256: 75537e13e205605bd09427ec666228ac58fd7a67fc12f5a2394d838c180c9609 + md5: 90c34599ec6484aabb6051127963e394 + depends: + - eigen + - python + - qt-main + - ros-humble-ament-index-cpp + - ros-humble-eigen3-cmake-module + - ros-humble-resource-retriever + - ros-humble-ros-workspace + - ros-humble-rviz-assimp-vendor + - ros-humble-rviz-ogre-vendor + - ros2-distro-mutex 0.7.* humble_* + - xorg-libx11 + - xorg-libxext + - __osx >=11.0 + - libcxx >=18 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + - qt-main >=5.15.15,<5.16.0a0 + - xorg-libx11 >=1.8.12,<2.0a0 + - glew >=2.1.0,<2.2.0a0 + - xorg-libxext >=1.3.6,<2.0a0 + - numpy >=1.26.4,<2.0a0 + - python_abi 3.11.* *_cp311 + license: BSD-3-Clause + size: 855473 + timestamp: 1753310465040 +- conda: https://prefix.dev/robostack-staging/win-64/ros-humble-rviz-rendering-11.2.18-np126py311hd5de103_13.conda + sha256: d57551bfbd9a0e1f417e7447189fdbbb042341f6de128b328185f67d87eddbfe + md5: 7dff5eb745bff8a9102a5bb8ae942e0a + depends: + - eigen + - python + - qt-main + - ros-humble-ament-index-cpp + - ros-humble-eigen3-cmake-module + - ros-humble-resource-retriever + - ros-humble-ros-workspace + - ros-humble-rviz-assimp-vendor + - ros-humble-rviz-ogre-vendor + - ros2-distro-mutex 0.7.* humble_* + - vc >=14.3,<15 + - vc14_runtime >=14.44.35208 + - ucrt >=10.0.20348.0 + - vc >=14.3,<15 + - vc14_runtime >=14.44.35208 + - ucrt >=10.0.20348.0 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + - python_abi 3.11.* *_cp311 + - qt-main >=5.15.15,<5.16.0a0 + - numpy >=1.26.4,<2.0a0 + - glew >=2.1.0,<2.2.0a0 + license: BSD-3-Clause + size: 858382 + timestamp: 1753319633942 +- conda: https://prefix.dev/robostack-staging/linux-64/ros-humble-rviz2-11.2.18-np126py311hbc2a38a_13.conda + sha256: 9dcf98b1b9dc1dbbcafb90318118241ab59633527b95c6ca212e4977126a8940 + md5: 4c126328aa8d7fe1202648e8dca9bd63 + depends: + - python + - ros-humble-ros-workspace + - ros-humble-rviz-common + - ros-humble-rviz-default-plugins + - ros-humble-rviz-ogre-vendor + - ros2-distro-mutex 0.7.* humble_* + - xorg-libx11 + - xorg-libxext + - __glibc >=2.17,<3.0.a0 + - libstdcxx >=13 + - libgcc >=13 + - xorg-libx11 >=1.8.12,<2.0a0 + - libopengl >=1.7.0,<2.0a0 + - qt-main >=5.15.15,<5.16.0a0 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + - xorg-libxext >=1.3.6,<2.0a0 + - libgl >=1.7.0,<2.0a0 + - python_abi 3.11.* *_cp311 + - numpy >=1.26.4,<2.0a0 + license: BSD-3-Clause + size: 61825 + timestamp: 1753315820870 +- conda: https://prefix.dev/robostack-staging/linux-aarch64/ros-humble-rviz2-11.2.18-np126py311hbdd918e_13.conda + sha256: a1c3c538aeda8e47e56c283820af132421b62afc586d7dc8fee8f3478f31ebf8 + md5: 9d1c52aac186053fa3c222b5ba93f0ed + depends: + - python + - ros-humble-ros-workspace + - ros-humble-rviz-common + - ros-humble-rviz-default-plugins + - ros-humble-rviz-ogre-vendor + - ros2-distro-mutex 0.7.* humble_* + - xorg-libx11 + - xorg-libxext + - libgcc >=13 + - libstdcxx >=13 + - libgcc >=13 + - xorg-libxext >=1.3.6,<2.0a0 + - qt-main >=5.15.15,<5.16.0a0 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + - libopengl >=1.7.0,<2.0a0 + - python_abi 3.11.* *_cp311 + - libgl >=1.7.0,<2.0a0 + - numpy >=1.26.4,<2.0a0 + - xorg-libx11 >=1.8.12,<2.0a0 + license: BSD-3-Clause + size: 62930 + timestamp: 1753315600675 +- conda: https://prefix.dev/robostack-staging/osx-arm64/ros-humble-rviz2-11.2.18-np126py311h2a51a2c_13.conda + sha256: 49f82bb09e27e3229af5b3c9a414a67a448c38404029fb7290e391bc214ce2cb + md5: 18891933b0a6d22ce9c215018bf97530 + depends: + - python + - ros-humble-ros-workspace + - ros-humble-rviz-common + - ros-humble-rviz-default-plugins + - ros-humble-rviz-ogre-vendor + - ros2-distro-mutex 0.7.* humble_* + - xorg-libx11 + - xorg-libxext + - libcxx >=18 + - __osx >=11.0 + - python_abi 3.11.* *_cp311 + - xorg-libxext >=1.3.6,<2.0a0 + - xorg-libx11 >=1.8.12,<2.0a0 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + - qt-main >=5.15.15,<5.16.0a0 + - numpy >=1.26.4,<2.0a0 + license: BSD-3-Clause + size: 54751 + timestamp: 1753318420036 +- conda: https://prefix.dev/robostack-staging/win-64/ros-humble-rviz2-11.2.18-np126py311hd5de103_13.conda + sha256: 09d322329498585af164584e418dae793685124b3bcec75191f5118ffba3f6fc + md5: ef69f66a3efaa233773220d6a4bad610 + depends: + - python + - ros-humble-ros-workspace + - ros-humble-rviz-common + - ros-humble-rviz-default-plugins + - ros-humble-rviz-ogre-vendor + - ros2-distro-mutex 0.7.* humble_* + - vc >=14.3,<15 + - vc14_runtime >=14.44.35208 + - ucrt >=10.0.20348.0 + - vc >=14.3,<15 + - vc14_runtime >=14.44.35208 + - ucrt >=10.0.20348.0 + - qt-main >=5.15.15,<5.16.0a0 + - numpy >=1.26.4,<2.0a0 + - python_abi 3.11.* *_cp311 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + license: BSD-3-Clause + size: 52137 + timestamp: 1753345601453 +- conda: https://prefix.dev/robostack-staging/linux-64/ros-humble-sdl2-vendor-3.3.0-np126py311hbc2a38a_13.conda + sha256: 5b812e26ec48e88d2f9acab69338179fe81f09764ceabc3f27e4d3f3c30bd1a1 + md5: 94c8355727610bfc0e133b5d105358ff + depends: + - python + - ros-humble-ros-workspace + - ros2-distro-mutex 0.7.* humble_* + - sdl2 + - __glibc >=2.17,<3.0.a0 + - libgcc >=13 + - libstdcxx >=13 + - libgcc >=13 + - python_abi 3.11.* *_cp311 + - numpy >=1.26.4,<2.0a0 + - sdl2 >=2.32.54,<3.0a0 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + license: BSD-3-Clause + size: 28339 + timestamp: 1753308412970 +- conda: https://prefix.dev/robostack-staging/linux-aarch64/ros-humble-sdl2-vendor-3.3.0-np126py311hbdd918e_13.conda + sha256: 70d47b5a1e2fa50e1b2608cc4f7334205322489089666c360223888fc2208080 + md5: d47e96108502dc77f83f82e0f7d37e8d + depends: + - python + - ros-humble-ros-workspace + - ros2-distro-mutex 0.7.* humble_* + - sdl2 + - libstdcxx >=13 + - libgcc >=13 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + - numpy >=1.26.4,<2.0a0 + - sdl2 >=2.32.54,<3.0a0 + - python_abi 3.11.* *_cp311 + license: BSD-3-Clause + size: 27883 + timestamp: 1753308528237 +- conda: https://prefix.dev/robostack-staging/osx-arm64/ros-humble-sdl2-vendor-3.3.0-np126py311h2a51a2c_13.conda + sha256: b0187e462fd03177b827c2152d9223a680c8564e4328da51973cd639aa61c3af + md5: 4acb880836a66e9e1073f76dbb6905fe + depends: + - python + - ros-humble-ros-workspace + - ros2-distro-mutex 0.7.* humble_* + - sdl2 + - libcxx >=18 + - __osx >=11.0 + - numpy >=1.26.4,<2.0a0 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + - python_abi 3.11.* *_cp311 + - sdl2 >=2.32.54,<3.0a0 + license: BSD-3-Clause + size: 23413 + timestamp: 1753308797193 +- conda: https://prefix.dev/robostack-staging/win-64/ros-humble-sdl2-vendor-3.3.0-np126py311hd5de103_13.conda + sha256: 9c104611ac20af78ed4ec1e54abd5a904da478bb98e418a4d7899084aef70abf + md5: 5bb6dd98bc9e7dd3bed2df5de0df5ce4 + depends: + - python + - ros-humble-ros-workspace + - ros2-distro-mutex 0.7.* humble_* + - sdl2 + - vc >=14.3,<15 + - vc14_runtime >=14.44.35208 + - ucrt >=10.0.20348.0 + - vc >=14.3,<15 + - vc14_runtime >=14.44.35208 + - ucrt >=10.0.20348.0 + - python_abi 3.11.* *_cp311 + - sdl2 >=2.32.54,<3.0a0 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + - numpy >=1.26.4,<2.0a0 + license: BSD-3-Clause + size: 19904 + timestamp: 1753313187997 +- conda: https://prefix.dev/robostack-staging/linux-64/ros-humble-sensor-msgs-4.9.0-np126py311hbc2a38a_13.conda + sha256: d09931cc0cdaaf016b706d5545174fce4e677f9bc05d1308ce5330cb3cb84f3c + md5: 4795c3510ef11156a36a5b6bcea5c847 + depends: + - python + - ros-humble-builtin-interfaces + - ros-humble-geometry-msgs + - ros-humble-ros-workspace + - ros-humble-rosidl-default-runtime + - ros-humble-std-msgs + - ros2-distro-mutex 0.7.* humble_* + - libstdcxx >=13 + - libgcc >=13 + - __glibc >=2.17,<3.0.a0 + - numpy >=1.26.4,<2.0a0 + - python_abi 3.11.* *_cp311 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + license: BSD-3-Clause + size: 443332 + timestamp: 1753312237440 +- conda: https://prefix.dev/robostack-staging/linux-aarch64/ros-humble-sensor-msgs-4.9.0-np126py311hbdd918e_13.conda + sha256: cf5e45cbd5f940b0c8fb02ffd00191c7258cc0b76955df8c55a8ad47eff23ccf + md5: 0540ada8f149735d719379313eb1161f + depends: + - python + - ros-humble-builtin-interfaces + - ros-humble-geometry-msgs + - ros-humble-ros-workspace + - ros-humble-rosidl-default-runtime + - ros-humble-std-msgs + - ros2-distro-mutex 0.7.* humble_* + - libgcc >=13 + - libstdcxx >=13 + - libgcc >=13 + - numpy >=1.26.4,<2.0a0 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + - python_abi 3.11.* *_cp311 + license: BSD-3-Clause + size: 451376 + timestamp: 1753312655453 +- conda: https://prefix.dev/robostack-staging/osx-arm64/ros-humble-sensor-msgs-4.9.0-np126py311h2a51a2c_13.conda + sha256: c38037b3d0fdcba7a884aa66ca667be81ce36633443c77744c6fa7ce024e34c9 + md5: af77ec45e7c7168b0c2ff90dcebd39ca + depends: + - python + - ros-humble-builtin-interfaces + - ros-humble-geometry-msgs + - ros-humble-ros-workspace + - ros-humble-rosidl-default-runtime + - ros-humble-std-msgs + - ros2-distro-mutex 0.7.* humble_* + - libcxx >=18 + - __osx >=11.0 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + - numpy >=1.26.4,<2.0a0 + - python_abi 3.11.* *_cp311 + license: BSD-3-Clause + size: 386673 + timestamp: 1753311770051 +- conda: https://prefix.dev/robostack-staging/win-64/ros-humble-sensor-msgs-4.9.0-np126py311hd5de103_13.conda + sha256: 3e1c369e3d8fbeb4f87279fa6d6838ac54a8da75c75b4880b9e4ad4bce2eb076 + md5: 54f9ab45ce93ac807115b9e960751d1b + depends: + - python + - ros-humble-builtin-interfaces + - ros-humble-geometry-msgs + - ros-humble-ros-workspace + - ros-humble-rosidl-default-runtime + - ros-humble-std-msgs + - ros2-distro-mutex 0.7.* humble_* + - vc >=14.3,<15 + - vc14_runtime >=14.44.35208 + - ucrt >=10.0.20348.0 + - vc >=14.3,<15 + - vc14_runtime >=14.44.35208 + - ucrt >=10.0.20348.0 + - python_abi 3.11.* *_cp311 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + - numpy >=1.26.4,<2.0a0 + license: BSD-3-Clause + size: 395091 + timestamp: 1753326491022 +- conda: https://prefix.dev/robostack-staging/linux-64/ros-humble-sensor-msgs-py-4.9.0-np126py311hbc2a38a_13.conda + sha256: f673c00a47cca02bdc9264897895e2593fddb1d582fcbee0d340173c29f5f2e4 + md5: 62830a314cd50dbd017d6ebd1638ca22 + depends: + - numpy + - python + - ros-humble-ros-workspace + - ros-humble-sensor-msgs + - ros2-distro-mutex 0.7.* humble_* + - __glibc >=2.17,<3.0.a0 + - libstdcxx >=13 + - libgcc >=13 + - numpy >=1.26.4,<2.0a0 + - python_abi 3.11.* *_cp311 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + license: BSD-3-Clause + size: 30447 + timestamp: 1753312423962 +- conda: https://prefix.dev/robostack-staging/linux-aarch64/ros-humble-sensor-msgs-py-4.9.0-np126py311hbdd918e_13.conda + sha256: 76199c803d51c89e7255e26c5a30fefeaac93bce19ad8764b35efbb14d1f1d07 + md5: 5f713261bd3c9c6b62d77fd6db9c1726 + depends: + - numpy + - python + - ros-humble-ros-workspace + - ros-humble-sensor-msgs + - ros2-distro-mutex 0.7.* humble_* + - libstdcxx >=13 + - libgcc >=13 + - numpy >=1.26.4,<2.0a0 + - python_abi 3.11.* *_cp311 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + license: BSD-3-Clause + size: 30288 + timestamp: 1753312814058 +- conda: https://prefix.dev/robostack-staging/osx-arm64/ros-humble-sensor-msgs-py-4.9.0-np126py311h2a51a2c_13.conda + sha256: 1acb4d9fd93cd2a33da3b39539e45eb7083748e961a136f70e2beceba97828bd + md5: a40a71728fcfd1ba51a59b4ae0cd1776 + depends: + - numpy + - python + - ros-humble-ros-workspace + - ros-humble-sensor-msgs + - ros2-distro-mutex 0.7.* humble_* + - libcxx >=18 + - __osx >=11.0 + - python_abi 3.11.* *_cp311 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + - numpy >=1.26.4,<2.0a0 + license: BSD-3-Clause + size: 30582 + timestamp: 1753312173044 +- conda: https://prefix.dev/robostack-staging/win-64/ros-humble-sensor-msgs-py-4.9.0-np126py311hd5de103_13.conda + sha256: 0ef6d8d87cfdcf20ca583d902381dd1154a86e7f2f83717dd066d9fa9be77794 + md5: 126dedd42ee553c10f5767aa54dd603f + depends: + - numpy + - python + - ros-humble-ros-workspace + - ros-humble-sensor-msgs + - ros2-distro-mutex 0.7.* humble_* + - vc >=14.3,<15 + - vc14_runtime >=14.44.35208 + - ucrt >=10.0.20348.0 + - vc >=14.3,<15 + - vc14_runtime >=14.44.35208 + - ucrt >=10.0.20348.0 + - python_abi 3.11.* *_cp311 + - numpy >=1.26.4,<2.0a0 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + license: BSD-3-Clause + size: 28292 + timestamp: 1753327971483 +- conda: https://prefix.dev/robostack-staging/linux-64/ros-humble-shape-msgs-4.9.0-np126py311hbc2a38a_13.conda + sha256: 5566eb46ba47bdea256d0cf2b5167b49889494e628537a9d1da02978355208b2 + md5: 03d5ada9dea91fb87c3e78419f06d626 + depends: + - python + - ros-humble-geometry-msgs + - ros-humble-ros-workspace + - ros-humble-rosidl-default-runtime + - ros2-distro-mutex 0.7.* humble_* + - libstdcxx >=13 + - libgcc >=13 + - __glibc >=2.17,<3.0.a0 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + - python_abi 3.11.* *_cp311 + - numpy >=1.26.4,<2.0a0 + license: BSD-3-Clause + size: 114935 + timestamp: 1753312217365 +- conda: https://prefix.dev/robostack-staging/linux-aarch64/ros-humble-shape-msgs-4.9.0-np126py311hbdd918e_13.conda + sha256: 98ce85e894f2744104d891f5e519751fd278cbdbc297aaaf062d5d2263a2aeb9 + md5: 811d9701d78dd234a7b824f08455643f + depends: + - python + - ros-humble-geometry-msgs + - ros-humble-ros-workspace + - ros-humble-rosidl-default-runtime + - ros2-distro-mutex 0.7.* humble_* + - libstdcxx >=13 + - libgcc >=13 + - python_abi 3.11.* *_cp311 + - numpy >=1.26.4,<2.0a0 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + license: BSD-3-Clause + size: 119768 + timestamp: 1753312637933 +- conda: https://prefix.dev/robostack-staging/osx-arm64/ros-humble-shape-msgs-4.9.0-np126py311h2a51a2c_13.conda + sha256: 30ce98f5b251c927c16a6d35cad51ae48675ce3271a606a3edfca79e8ad45206 + md5: d5d8a72f877ba3c32a90ef784d612129 + depends: + - python + - ros-humble-geometry-msgs + - ros-humble-ros-workspace + - ros-humble-rosidl-default-runtime + - ros2-distro-mutex 0.7.* humble_* + - libcxx >=18 + - __osx >=11.0 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + - python_abi 3.11.* *_cp311 + - numpy >=1.26.4,<2.0a0 + license: BSD-3-Clause + size: 106825 + timestamp: 1753311890043 +- conda: https://prefix.dev/robostack-staging/win-64/ros-humble-shape-msgs-4.9.0-np126py311hd5de103_13.conda + sha256: e769de3c6ab5cdeaca14c94d09ee0e4219a6c7806a672ec65def80efe9bb6a00 + md5: d8559d55affa3ccf259ad165b4c882b4 + depends: + - python + - ros-humble-geometry-msgs + - ros-humble-ros-workspace + - ros-humble-rosidl-default-runtime + - ros2-distro-mutex 0.7.* humble_* + - vc >=14.3,<15 + - vc14_runtime >=14.44.35208 + - ucrt >=10.0.20348.0 + - vc >=14.3,<15 + - vc14_runtime >=14.44.35208 + - ucrt >=10.0.20348.0 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + - numpy >=1.26.4,<2.0a0 + - python_abi 3.11.* *_cp311 + license: BSD-3-Clause + size: 116924 + timestamp: 1753326778074 +- conda: https://prefix.dev/robostack-staging/linux-64/ros-humble-shared-queues-vendor-0.15.14-np126py311hbc2a38a_13.conda + sha256: ce7f0f0051ed8c1fbd324f753bc19ca54565430ac1e2cb3a4796966703192c0e + md5: 01b55c16f699762eec0ed4184963c57a + depends: + - python + - ros-humble-ros-workspace + - ros2-distro-mutex 0.7.* humble_* + - __glibc >=2.17,<3.0.a0 + - libstdcxx >=13 + - libgcc >=13 + - numpy >=1.26.4,<2.0a0 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + - python_abi 3.11.* *_cp311 + license: BSD-3-Clause + size: 66250 + timestamp: 1753308423423 +- conda: https://prefix.dev/robostack-staging/linux-aarch64/ros-humble-shared-queues-vendor-0.15.14-np126py311hbdd918e_13.conda + sha256: 33e8cf1ffb5b0766976dc0358c19ccd82ebf37638039bda3d8fb69da4277687b + md5: aee557ea32933f8454eb34e1b7529d74 + depends: + - python + - ros-humble-ros-workspace + - ros2-distro-mutex 0.7.* humble_* + - libgcc >=13 + - libstdcxx >=13 + - libgcc >=13 + - python_abi 3.11.* *_cp311 + - numpy >=1.26.4,<2.0a0 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + license: BSD-3-Clause + size: 66073 + timestamp: 1753308541856 +- conda: https://prefix.dev/robostack-staging/osx-arm64/ros-humble-shared-queues-vendor-0.15.14-np126py311h2a51a2c_13.conda + sha256: 3807d1276c92eb84bbb72565dcde50769e5c9b087cba4459f68e5d8cf7ab145b + md5: d3f87e17feeca0d87ac0accf506e3882 + depends: + - python + - ros-humble-ros-workspace + - ros2-distro-mutex 0.7.* humble_* + - libcxx >=18 + - __osx >=11.0 + - python_abi 3.11.* *_cp311 + - numpy >=1.26.4,<2.0a0 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + license: BSD-3-Clause + size: 66446 + timestamp: 1753308823837 +- conda: https://prefix.dev/robostack-staging/win-64/ros-humble-shared-queues-vendor-0.15.14-np126py311hd5de103_13.conda + sha256: 51dafe446124b0007f1551680ff128111b606954a11a40fcd4e5693ce255edd2 + md5: dc3d2dbf1db7b37b9a8e228eb8ff2529 + depends: + - python + - ros-humble-ros-workspace + - ros2-distro-mutex 0.7.* humble_* + - vc >=14.3,<15 + - vc14_runtime >=14.44.35208 + - ucrt >=10.0.20348.0 + - vc >=14.3,<15 + - vc14_runtime >=14.44.35208 + - ucrt >=10.0.20348.0 + - python_abi 3.11.* *_cp311 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + - numpy >=1.26.4,<2.0a0 + license: BSD-3-Clause + size: 61222 + timestamp: 1753312750183 +- conda: https://prefix.dev/robostack-staging/linux-64/ros-humble-spdlog-vendor-1.3.1-np126py311h11365e7_13.conda + sha256: ea5aada82ffde9e73df2933bb8c5292132cdd8c0bb39b428620e0009643f8bbd + md5: 2326efbd7109deeb4c2226478b2459ab + depends: + - python + - ros-humble-ros-workspace + - ros2-distro-mutex 0.7.* humble_* + - spdlog + - __glibc >=2.17,<3.0.a0 + - libgcc >=13 + - libstdcxx >=13 + - libgcc >=13 + - python_abi 3.11.* *_cp311 + - spdlog >=1.15.3,<1.16.0a0 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + - numpy >=1.26.4,<2.0a0 + license: BSD-3-Clause + size: 26816 + timestamp: 1753309530353 +- conda: https://prefix.dev/robostack-staging/linux-aarch64/ros-humble-spdlog-vendor-1.3.1-np126py311h5f8052a_13.conda + sha256: 913836a8436afe8daf28d0e64fc57827614e5ac14644f56392426ca9a777bbd3 + md5: fe1a420f011750bdf859f5871b894bff + depends: + - python + - ros-humble-ros-workspace + - ros2-distro-mutex 0.7.* humble_* + - spdlog + - libgcc >=13 + - libstdcxx >=13 + - libgcc >=13 + - spdlog >=1.15.3,<1.16.0a0 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + - python_abi 3.11.* *_cp311 + - numpy >=1.26.4,<2.0a0 + license: BSD-3-Clause + size: 26744 + timestamp: 1753309383162 +- conda: https://prefix.dev/robostack-staging/osx-arm64/ros-humble-spdlog-vendor-1.3.1-np126py311h6932ae0_13.conda + sha256: 19ddd342a090ead8c44876abc51b1a0b2a71a007547c047bac26b364000bced6 + md5: ea80390dd9ce91561fedb4084d14a3b3 + depends: + - python + - ros-humble-ros-workspace + - ros2-distro-mutex 0.7.* humble_* + - spdlog + - __osx >=11.0 + - libcxx >=18 + - spdlog >=1.15.3,<1.16.0a0 + - numpy >=1.26.4,<2.0a0 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + - python_abi 3.11.* *_cp311 + license: BSD-3-Clause + size: 26972 + timestamp: 1753310096446 +- conda: https://prefix.dev/robostack-staging/win-64/ros-humble-spdlog-vendor-1.3.1-np126py311hc120487_13.conda + sha256: d1eff449ea44fc07cc0932ded798784a0b0961c0446105830f254b5f7ee4a05d + md5: 0228bab0f455ef4cc582c134423ab1ba + depends: + - python + - ros-humble-ros-workspace + - ros2-distro-mutex 0.7.* humble_* + - spdlog + - vc >=14.3,<15 + - vc14_runtime >=14.44.35208 + - ucrt >=10.0.20348.0 + - vc >=14.3,<15 + - vc14_runtime >=14.44.35208 + - ucrt >=10.0.20348.0 + - python_abi 3.11.* *_cp311 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + - spdlog >=1.15.3,<1.16.0a0 + - numpy >=1.26.4,<2.0a0 + license: BSD-3-Clause + size: 23564 + timestamp: 1753317468674 +- conda: https://prefix.dev/robostack-staging/linux-64/ros-humble-sqlite3-vendor-0.15.14-np126py311hbc2a38a_13.conda + sha256: 0a9cf7d2a2c362a305225f6414cb3f73fb628b294962fa1126e04ae6c8652542 + md5: a2c25527c3b29fff0a7eef925afdda55 + depends: + - python + - ros-humble-ros-workspace + - ros2-distro-mutex 0.7.* humble_* + - sqlite + - libstdcxx >=13 + - libgcc >=13 + - __glibc >=2.17,<3.0.a0 + - python_abi 3.11.* *_cp311 + - numpy >=1.26.4,<2.0a0 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + - libsqlite >=3.50.3,<4.0a0 + license: BSD-3-Clause + size: 23907 + timestamp: 1753308410770 +- conda: https://prefix.dev/robostack-staging/linux-aarch64/ros-humble-sqlite3-vendor-0.15.14-np126py311hbdd918e_13.conda + sha256: 57f122444324f4302fdd2171f8898ca0a36eace2f69e7239c01647287ebb51a6 + md5: e5dc784139838e94cfbd8967951512f1 + depends: + - python + - ros-humble-ros-workspace + - ros2-distro-mutex 0.7.* humble_* + - sqlite + - libstdcxx >=13 + - libgcc >=13 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + - libsqlite >=3.50.3,<4.0a0 + - python_abi 3.11.* *_cp311 + - numpy >=1.26.4,<2.0a0 + license: BSD-3-Clause + size: 23672 + timestamp: 1753308527837 +- conda: https://prefix.dev/robostack-staging/osx-arm64/ros-humble-sqlite3-vendor-0.15.14-np126py311h2a51a2c_13.conda + sha256: 6e601216b2c21bb084ec7ebf180dd744cf5d43b8c2aaa8a2a5850f54872515c3 + md5: f6c5c96f412b67744909ba18c456214c + depends: + - python + - ros-humble-ros-workspace + - ros2-distro-mutex 0.7.* humble_* + - sqlite + - libcxx >=18 + - __osx >=11.0 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + - libsqlite >=3.50.3,<4.0a0 + - numpy >=1.26.4,<2.0a0 + - python_abi 3.11.* *_cp311 + license: BSD-3-Clause + size: 24089 + timestamp: 1753308805503 +- conda: https://prefix.dev/robostack-staging/win-64/ros-humble-sqlite3-vendor-0.15.14-np126py311hd5de103_13.conda + sha256: 4859c78f4b3e91a89f461a9cbd1314a1736c9cd706a4f2af1ef3eb79edd80aac + md5: 0560148cd76bc472a5255ce6fab77b82 + depends: + - python + - ros-humble-ros-workspace + - ros2-distro-mutex 0.7.* humble_* + - sqlite + - vc >=14.3,<15 + - vc14_runtime >=14.44.35208 + - ucrt >=10.0.20348.0 + - vc >=14.3,<15 + - vc14_runtime >=14.44.35208 + - ucrt >=10.0.20348.0 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + - python_abi 3.11.* *_cp311 + - libsqlite >=3.50.3,<4.0a0 + - numpy >=1.26.4,<2.0a0 + license: BSD-3-Clause + size: 20722 + timestamp: 1753312663904 +- conda: https://prefix.dev/robostack-staging/linux-64/ros-humble-sros2-0.10.6-np126py311hbc2a38a_13.conda + sha256: 04962c257a3006d93ab47f0932e83c3a9fda53520a55cc9d0e60430ccc6b706e + md5: 8f2e340db8ace766d6f79de0ac1a650c + depends: + - cryptography + - importlib_resources + - lxml + - python + - ros-humble-ament-index-python + - ros-humble-rclpy + - ros-humble-ros-workspace + - ros-humble-ros2cli + - ros2-distro-mutex 0.7.* humble_* + - libgcc >=13 + - libstdcxx >=13 + - libgcc >=13 + - __glibc >=2.17,<3.0.a0 + - python_abi 3.11.* *_cp311 + - numpy >=1.26.4,<2.0a0 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + license: BSD-3-Clause + size: 72796 + timestamp: 1753314305610 +- conda: https://prefix.dev/robostack-staging/linux-aarch64/ros-humble-sros2-0.10.6-np126py311hbdd918e_13.conda + sha256: 67312ad87bba516aa3c2809dff760e366967d8ccf9a6e2e111a1809195d89908 + md5: a584cb61744389382a14f77b233a3df9 + depends: + - cryptography + - importlib_resources + - lxml + - python + - ros-humble-ament-index-python + - ros-humble-rclpy + - ros-humble-ros-workspace + - ros-humble-ros2cli + - ros2-distro-mutex 0.7.* humble_* + - libstdcxx >=13 + - libgcc >=13 + - python_abi 3.11.* *_cp311 + - numpy >=1.26.4,<2.0a0 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + license: BSD-3-Clause + size: 72548 + timestamp: 1753314363158 +- conda: https://prefix.dev/robostack-staging/osx-arm64/ros-humble-sros2-0.10.6-np126py311h2a51a2c_13.conda + sha256: 3a446f9cf8e2e51b3cc294c843e02a72c51fbf044f022a4e2efd5a3b47ab451f + md5: d9d6c3a3bdfca53c733c33554415e50c + depends: + - cryptography + - importlib_resources + - lxml + - python + - ros-humble-ament-index-python + - ros-humble-rclpy + - ros-humble-ros-workspace + - ros-humble-ros2cli + - ros2-distro-mutex 0.7.* humble_* + - __osx >=11.0 + - libcxx >=18 + - python_abi 3.11.* *_cp311 + - numpy >=1.26.4,<2.0a0 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + license: BSD-3-Clause + size: 72717 + timestamp: 1753314723929 +- conda: https://prefix.dev/robostack-staging/win-64/ros-humble-sros2-0.10.6-np126py311hd5de103_13.conda + sha256: c9fc71dc46abe41ee763555b7b957e6efa46b159b6bd16262e87caeeec5a07c6 + md5: b74ba572dcd06558f5c8c735847ce5d4 + depends: + - cryptography + - importlib_resources + - lxml + - python + - ros-humble-ament-index-python + - ros-humble-rclpy + - ros-humble-ros-workspace + - ros-humble-ros2cli + - ros2-distro-mutex 0.7.* humble_* + - vc >=14.3,<15 + - vc14_runtime >=14.44.35208 + - ucrt >=10.0.20348.0 + - vc >=14.3,<15 + - vc14_runtime >=14.44.35208 + - ucrt >=10.0.20348.0 + - python_abi 3.11.* *_cp311 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + - numpy >=1.26.4,<2.0a0 + license: BSD-3-Clause + size: 68212 + timestamp: 1753336701371 +- conda: https://prefix.dev/robostack-staging/linux-64/ros-humble-sros2-cmake-0.10.6-np126py311hbc2a38a_13.conda + sha256: ac87e07f46b01b032394fe7e283cd2ebcbefb18b4cfd87fad6125d5c7686ccb9 + md5: 20e7981231ef93d126da1da030fbf929 + depends: + - python + - ros-humble-ros-workspace + - ros-humble-ros2cli + - ros-humble-sros2 + - ros2-distro-mutex 0.7.* humble_* + - __glibc >=2.17,<3.0.a0 + - libgcc >=13 + - libstdcxx >=13 + - libgcc >=13 + - python_abi 3.11.* *_cp311 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + - numpy >=1.26.4,<2.0a0 + license: BSD-3-Clause + size: 36510 + timestamp: 1753314682116 +- conda: https://prefix.dev/robostack-staging/linux-aarch64/ros-humble-sros2-cmake-0.10.6-np126py311hbdd918e_13.conda + sha256: a9a73b2a89fb6713cb1f1dcb066e846be32659df7b1cdc22c1fe20878c78aed6 + md5: 0512c228c59bffa57070c4694281e674 + depends: + - python + - ros-humble-ros-workspace + - ros-humble-ros2cli + - ros-humble-sros2 + - ros2-distro-mutex 0.7.* humble_* + - libstdcxx >=13 + - libgcc >=13 + - numpy >=1.26.4,<2.0a0 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + - python_abi 3.11.* *_cp311 + license: BSD-3-Clause + size: 36178 + timestamp: 1753314712079 +- conda: https://prefix.dev/robostack-staging/osx-arm64/ros-humble-sros2-cmake-0.10.6-np126py311h2a51a2c_13.conda + sha256: 110338d147992bc83c180d5a39977fb2463c9f36cfaabb312d9d392e479b3502 + md5: 295e9d2011e39f4063dc2fa74ca312b0 + depends: + - python + - ros-humble-ros-workspace + - ros-humble-ros2cli + - ros-humble-sros2 + - ros2-distro-mutex 0.7.* humble_* + - __osx >=11.0 + - libcxx >=18 + - python_abi 3.11.* *_cp311 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + - numpy >=1.26.4,<2.0a0 + license: BSD-3-Clause + size: 36257 + timestamp: 1753315514088 +- conda: https://prefix.dev/robostack-staging/win-64/ros-humble-sros2-cmake-0.10.6-np126py311hd5de103_13.conda + sha256: c2129d94dff24e7fe07f8f938a635e18dc51a43a61f05ab595dbf4f7b7a2e082 + md5: 351a43f79738bb8477d34ae0bf849aaf + depends: + - python + - ros-humble-ros-workspace + - ros-humble-ros2cli + - ros-humble-sros2 + - ros2-distro-mutex 0.7.* humble_* + - vc >=14.3,<15 + - vc14_runtime >=14.44.35208 + - ucrt >=10.0.20348.0 + - vc >=14.3,<15 + - vc14_runtime >=14.44.35208 + - ucrt >=10.0.20348.0 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + - numpy >=1.26.4,<2.0a0 + - python_abi 3.11.* *_cp311 + license: BSD-3-Clause + size: 32839 + timestamp: 1753339685548 +- conda: https://prefix.dev/robostack-staging/linux-64/ros-humble-statistics-msgs-1.2.1-np126py311hbc2a38a_13.conda + sha256: 55028eab49855bb489d68d7adb5e659cebb2e33129e8bc1d9b502c78c332f2b6 + md5: 3b6ef2c32b065eb26541c7275ae02094 + depends: + - python + - ros-humble-builtin-interfaces + - ros-humble-ros-workspace + - ros-humble-rosidl-default-runtime + - ros2-distro-mutex 0.7.* humble_* + - __glibc >=2.17,<3.0.a0 + - libstdcxx >=13 + - libgcc >=13 + - numpy >=1.26.4,<2.0a0 + - python_abi 3.11.* *_cp311 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + license: BSD-3-Clause + size: 99723 + timestamp: 1753311916926 +- conda: https://prefix.dev/robostack-staging/linux-aarch64/ros-humble-statistics-msgs-1.2.1-np126py311hbdd918e_13.conda + sha256: 725c3d6814d874a84b45548791c833b0212611707f1dcfa6d59b4451bb3f51f0 + md5: 6b004311efee16adb2e016f055d2c9e1 + depends: + - python + - ros-humble-builtin-interfaces + - ros-humble-ros-workspace + - ros-humble-rosidl-default-runtime + - ros2-distro-mutex 0.7.* humble_* + - libstdcxx >=13 + - libgcc >=13 + - numpy >=1.26.4,<2.0a0 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + - python_abi 3.11.* *_cp311 + license: BSD-3-Clause + size: 104099 + timestamp: 1753312393096 +- conda: https://prefix.dev/robostack-staging/osx-arm64/ros-humble-statistics-msgs-1.2.1-np126py311h2a51a2c_13.conda + sha256: 75e86648ee6e325322a2afa648844780b24af884bfea14a1378e22b8ffcef7e4 + md5: 68d5ab3d6aac9877a7f7b7bfeb37ab84 + depends: + - python + - ros-humble-builtin-interfaces + - ros-humble-ros-workspace + - ros-humble-rosidl-default-runtime + - ros2-distro-mutex 0.7.* humble_* + - __osx >=11.0 + - libcxx >=18 + - numpy >=1.26.4,<2.0a0 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + - python_abi 3.11.* *_cp311 + license: BSD-3-Clause + size: 93263 + timestamp: 1753311290334 +- conda: https://prefix.dev/robostack-staging/win-64/ros-humble-statistics-msgs-1.2.1-np126py311hd5de103_13.conda + sha256: e302452e1f3aaeee84639d650fcb9abcd5be0c9d3baf3709f2603f97d172d455 + md5: 52b6c2b4a65f311560f7e9a0621b1a01 + depends: + - python + - ros-humble-builtin-interfaces + - ros-humble-ros-workspace + - ros-humble-rosidl-default-runtime + - ros2-distro-mutex 0.7.* humble_* + - vc >=14.3,<15 + - vc14_runtime >=14.44.35208 + - ucrt >=10.0.20348.0 + - vc >=14.3,<15 + - vc14_runtime >=14.44.35208 + - ucrt >=10.0.20348.0 + - python_abi 3.11.* *_cp311 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + - numpy >=1.26.4,<2.0a0 + license: BSD-3-Clause + size: 103654 + timestamp: 1753324381627 +- conda: https://prefix.dev/robostack-staging/linux-64/ros-humble-std-msgs-4.9.0-np126py311hbc2a38a_13.conda + sha256: 77c59dcc66b059a92d305b14e63559c043dd0258023059f32ea919b52003c713 + md5: f86d9cbd68ae901ca1bed2780c69b169 + depends: + - python + - ros-humble-builtin-interfaces + - ros-humble-ros-workspace + - ros-humble-rosidl-default-runtime + - ros2-distro-mutex 0.7.* humble_* + - libstdcxx >=13 + - libgcc >=13 + - __glibc >=2.17,<3.0.a0 + - numpy >=1.26.4,<2.0a0 + - python_abi 3.11.* *_cp311 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + license: BSD-3-Clause + size: 285335 + timestamp: 1753311872139 +- conda: https://prefix.dev/robostack-staging/linux-aarch64/ros-humble-std-msgs-4.9.0-np126py311hbdd918e_13.conda + sha256: b7817796813a371be7cd2ade42ca546992ee247aea2a8a2e0556f91efa970076 + md5: 9783682ecf0b5d23386b94e6b3cf2337 + depends: + - python + - ros-humble-builtin-interfaces + - ros-humble-ros-workspace + - ros-humble-rosidl-default-runtime + - ros2-distro-mutex 0.7.* humble_* + - libstdcxx >=13 + - libgcc >=13 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + - python_abi 3.11.* *_cp311 + - numpy >=1.26.4,<2.0a0 + license: BSD-3-Clause + size: 288605 + timestamp: 1753312351494 +- conda: https://prefix.dev/robostack-staging/osx-arm64/ros-humble-std-msgs-4.9.0-np126py311h2a51a2c_13.conda + sha256: c8498cf18ffc571ce9acbc7acc12d1c3fc0ca934f884e17d140c5a2a557913c8 + md5: 8ce14a1f457a737a6deb10ccd3d107cb + depends: + - python + - ros-humble-builtin-interfaces + - ros-humble-ros-workspace + - ros-humble-rosidl-default-runtime + - ros2-distro-mutex 0.7.* humble_* + - libcxx >=18 + - __osx >=11.0 + - numpy >=1.26.4,<2.0a0 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + - python_abi 3.11.* *_cp311 + license: BSD-3-Clause + size: 245288 + timestamp: 1753311243013 +- conda: https://prefix.dev/robostack-staging/win-64/ros-humble-std-msgs-4.9.0-np126py311hd5de103_13.conda + sha256: d0b2e97572ee4bd5e9aa6a4b67cd36cfab57cbd07b4dde39392bfb75f55c8f53 + md5: dd17ae64465e2627c55443b4ca4b4018 + depends: + - python + - ros-humble-builtin-interfaces + - ros-humble-ros-workspace + - ros-humble-rosidl-default-runtime + - ros2-distro-mutex 0.7.* humble_* + - vc >=14.3,<15 + - vc14_runtime >=14.44.35208 + - ucrt >=10.0.20348.0 + - vc >=14.3,<15 + - vc14_runtime >=14.44.35208 + - ucrt >=10.0.20348.0 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + - python_abi 3.11.* *_cp311 + - numpy >=1.26.4,<2.0a0 + license: BSD-3-Clause + size: 252366 + timestamp: 1753324261347 +- conda: https://prefix.dev/robostack-staging/linux-64/ros-humble-std-srvs-4.9.0-np126py311hbc2a38a_13.conda + sha256: a942136652e9d4a18b7d8717b21956274643d2cbb3672bf3d45363b53a40514d + md5: b6457bd6dd3c30b9cd5a92ab9f3839d0 + depends: + - python + - ros-humble-ros-workspace + - ros-humble-rosidl-default-runtime + - ros2-distro-mutex 0.7.* humble_* + - __glibc >=2.17,<3.0.a0 + - libgcc >=13 + - libstdcxx >=13 + - libgcc >=13 + - numpy >=1.26.4,<2.0a0 + - python_abi 3.11.* *_cp311 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + license: BSD-3-Clause + size: 105085 + timestamp: 1753310615822 +- conda: https://prefix.dev/robostack-staging/linux-aarch64/ros-humble-std-srvs-4.9.0-np126py311hbdd918e_13.conda + sha256: b5840c454c6360e68e6bceea308e0e1501a98c9c248ee4ec4bebb4f9272ea2ca + md5: 7c22d00353e3cd59ddf7ff2988795dac + depends: + - python + - ros-humble-ros-workspace + - ros-humble-rosidl-default-runtime + - ros2-distro-mutex 0.7.* humble_* + - libstdcxx >=13 + - libgcc >=13 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + - python_abi 3.11.* *_cp311 + - numpy >=1.26.4,<2.0a0 + license: BSD-3-Clause + size: 109136 + timestamp: 1753312321430 +- conda: https://prefix.dev/robostack-staging/osx-arm64/ros-humble-std-srvs-4.9.0-np126py311h2a51a2c_13.conda + sha256: e2a4a10ee05f04c409e8be711dc0f2012a5b124d0c4bf8473908685f435462e7 + md5: 8f8eccf4b61bbeedd5e7aec2350488a4 + depends: + - python + - ros-humble-ros-workspace + - ros-humble-rosidl-default-runtime + - ros2-distro-mutex 0.7.* humble_* + - libcxx >=18 + - __osx >=11.0 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + - python_abi 3.11.* *_cp311 + - numpy >=1.26.4,<2.0a0 + license: BSD-3-Clause + size: 94709 + timestamp: 1753311204458 +- conda: https://prefix.dev/robostack-staging/win-64/ros-humble-std-srvs-4.9.0-np126py311hd5de103_13.conda + sha256: 04e6e57c5abaf7c1a2037d9f59794e95a82a728a3a00fa19599afec317ed740d + md5: 0e2e7699cce24b623e6b3e909c687953 + depends: + - python + - ros-humble-ros-workspace + - ros-humble-rosidl-default-runtime + - ros2-distro-mutex 0.7.* humble_* + - vc >=14.3,<15 + - vc14_runtime >=14.44.35208 + - ucrt >=10.0.20348.0 + - vc >=14.3,<15 + - vc14_runtime >=14.44.35208 + - ucrt >=10.0.20348.0 + - numpy >=1.26.4,<2.0a0 + - python_abi 3.11.* *_cp311 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + license: BSD-3-Clause + size: 104184 + timestamp: 1753323353116 +- conda: https://prefix.dev/robostack-staging/linux-64/ros-humble-stereo-msgs-4.9.0-np126py311hbc2a38a_13.conda + sha256: 2cd72c49117f216d26a42054d1e552ff1563bb108afb997fad1ce9bec80103c2 + md5: 197edd14144c44d5f91d1831c63da28e + depends: + - python + - ros-humble-ros-workspace + - ros-humble-rosidl-default-runtime + - ros-humble-sensor-msgs + - ros-humble-std-msgs + - ros2-distro-mutex 0.7.* humble_* + - libstdcxx >=13 + - libgcc >=13 + - __glibc >=2.17,<3.0.a0 + - libgcc >=13 + - numpy >=1.26.4,<2.0a0 + - python_abi 3.11.* *_cp311 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + license: BSD-3-Clause + size: 76595 + timestamp: 1753312411556 +- conda: https://prefix.dev/robostack-staging/linux-aarch64/ros-humble-stereo-msgs-4.9.0-np126py311hbdd918e_13.conda + sha256: c402ed7282cb7c17f58448e8f6bac112f15bd7be23276df67a7a34427496e5a7 + md5: 12a3d3601caa5803c6360f04e5f9b7aa + depends: + - python + - ros-humble-ros-workspace + - ros-humble-rosidl-default-runtime + - ros-humble-sensor-msgs + - ros-humble-std-msgs + - ros2-distro-mutex 0.7.* humble_* + - libstdcxx >=13 + - libgcc >=13 + - python_abi 3.11.* *_cp311 + - numpy >=1.26.4,<2.0a0 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + license: BSD-3-Clause + size: 79887 + timestamp: 1753312805430 +- conda: https://prefix.dev/robostack-staging/osx-arm64/ros-humble-stereo-msgs-4.9.0-np126py311h2a51a2c_13.conda + sha256: ce8a080f31372e77a1743715a4e43f9c734a1d4b36b06fd7db8c3fe04fc08b4c + md5: 57597de65280ef762520ee21bddaf145 + depends: + - python + - ros-humble-ros-workspace + - ros-humble-rosidl-default-runtime + - ros-humble-sensor-msgs + - ros-humble-std-msgs + - ros2-distro-mutex 0.7.* humble_* + - __osx >=11.0 + - libcxx >=18 + - numpy >=1.26.4,<2.0a0 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + - python_abi 3.11.* *_cp311 + license: BSD-3-Clause + size: 73627 + timestamp: 1753312161185 +- conda: https://prefix.dev/robostack-staging/win-64/ros-humble-stereo-msgs-4.9.0-np126py311hd5de103_13.conda + sha256: 956947c52dc2a10b1629b8a1c22c381375773cdffab4c2c90c0ffdb1e8195059 + md5: 64ddc1c8c624a1bcbd713c424ddc0505 + depends: + - python + - ros-humble-ros-workspace + - ros-humble-rosidl-default-runtime + - ros-humble-sensor-msgs + - ros-humble-std-msgs + - ros2-distro-mutex 0.7.* humble_* + - vc >=14.3,<15 + - vc14_runtime >=14.44.35208 + - ucrt >=10.0.20348.0 + - vc >=14.3,<15 + - vc14_runtime >=14.44.35208 + - ucrt >=10.0.20348.0 + - numpy >=1.26.4,<2.0a0 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + - python_abi 3.11.* *_cp311 + license: BSD-3-Clause + size: 84423 + timestamp: 1753327907251 +- conda: src/talker-py + name: ros-humble-talker-py + version: 0.0.0 + build: h9352c13_0 + subdir: win-64 + depends: + - vc >=14.1,<15 + - vc >=14.2,<15 + - vc14_runtime >=14.16.27033 + - vc14_runtime >=14.29.30139 + - ucrt >=10.0.20348.0 + - python_abi 3.11.* *_cp311 + - numpy >=1.26.4,<2.0a0 + input: + hash: 697a0e222b885f3ab93c9f088d4530b85951c110161e6c146e2e82111e189035 + globs: + - CMakeLists.txt + - package.xml + - setup.cfg + - setup.py +- conda: src/talker-py + name: ros-humble-talker-py + version: 0.0.0 + build: hbf21a9e_0 + subdir: linux-64 + depends: + - libgcc >=15 + - libgcc >=15 + - libstdcxx >=15 + - python_abi 3.11.* *_cp311 + - numpy >=1.26.4,<2.0a0 + input: + hash: 697a0e222b885f3ab93c9f088d4530b85951c110161e6c146e2e82111e189035 + globs: + - CMakeLists.txt + - package.xml + - setup.cfg + - setup.py +- conda: src/talker-py + name: ros-humble-talker-py + version: 0.0.0 + build: hbf21a9e_0 + subdir: linux-aarch64 + depends: + - libgcc >=15 + - libgcc >=15 + - libstdcxx >=15 + - python_abi 3.11.* *_cp311 + - numpy >=1.26.4,<2.0a0 + input: + hash: 697a0e222b885f3ab93c9f088d4530b85951c110161e6c146e2e82111e189035 + globs: + - CMakeLists.txt + - package.xml + - setup.cfg + - setup.py +- conda: src/talker-py + name: ros-humble-talker-py + version: 0.0.0 + build: hbf21a9e_0 + subdir: osx-arm64 + depends: + - libcxx >=21 + - python_abi 3.11.* *_cp311 + - numpy >=1.26.4,<2.0a0 + input: + hash: 697a0e222b885f3ab93c9f088d4530b85951c110161e6c146e2e82111e189035 + globs: + - CMakeLists.txt + - package.xml + - setup.cfg + - setup.py +- conda: https://prefix.dev/robostack-staging/linux-64/ros-humble-tango-icons-vendor-0.1.1-np126py311hbc2a38a_13.conda + sha256: f42f029e15f253f7720e34d09f5267d1deab7871e5ebc352f4c10d21cd1c32e3 + md5: b27952b578f44a1fe6bfcf2092e95170 + depends: + - python + - ros-humble-ros-workspace + - ros2-distro-mutex 0.7.* humble_* + - __glibc >=2.17,<3.0.a0 + - libstdcxx >=13 + - libgcc >=13 + - python_abi 3.11.* *_cp311 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + - numpy >=1.26.4,<2.0a0 + license: BSD-3-Clause + size: 25650 + timestamp: 1753309542807 +- conda: https://prefix.dev/robostack-staging/linux-aarch64/ros-humble-tango-icons-vendor-0.1.1-np126py311hbdd918e_13.conda + sha256: 19be952c89fb93495a123e55914337d20e9e153716f617cd6a7a4550f05c0a10 + md5: 7a3d2bd6635369425bedc4609ced74db + depends: + - python + - ros-humble-ros-workspace + - ros2-distro-mutex 0.7.* humble_* + - libgcc >=13 + - libstdcxx >=13 + - libgcc >=13 + - numpy >=1.26.4,<2.0a0 + - python_abi 3.11.* *_cp311 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + license: BSD-3-Clause + size: 25569 + timestamp: 1753309407389 +- conda: https://prefix.dev/robostack-staging/osx-arm64/ros-humble-tango-icons-vendor-0.1.1-np126py311h2a51a2c_13.conda + sha256: ebe67c360d3e38406b899be494979e923a27d6890591b6e38072cf5ed59b57d6 + md5: 60b9a2ace120a8a5b7db621d1a6530da + depends: + - python + - ros-humble-ros-workspace + - ros2-distro-mutex 0.7.* humble_* + - __osx >=11.0 + - libcxx >=18 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + - numpy >=1.26.4,<2.0a0 + - python_abi 3.11.* *_cp311 + license: BSD-3-Clause + size: 533757 + timestamp: 1753310113797 +- conda: https://prefix.dev/robostack-staging/win-64/ros-humble-tango-icons-vendor-0.1.1-np126py311hd5de103_13.conda + sha256: 224f67e9cfeefb7776ff64d2c9f45c7f7e7f6b9f61793f9e51725337a439ecfe + md5: 4bcfeb1f09103286bc5a0c0f84a803fb + depends: + - python + - ros-humble-ros-workspace + - ros2-distro-mutex 0.7.* humble_* + - vc >=14.3,<15 + - vc14_runtime >=14.44.35208 + - ucrt >=10.0.20348.0 + - vc >=14.3,<15 + - vc14_runtime >=14.44.35208 + - ucrt >=10.0.20348.0 + - numpy >=1.26.4,<2.0a0 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + - python_abi 3.11.* *_cp311 + license: BSD-3-Clause + size: 535024 + timestamp: 1753317894323 +- conda: https://prefix.dev/robostack-staging/linux-64/ros-humble-teleop-twist-joy-2.4.7-np126py311hbc2a38a_13.conda + sha256: 776addbcbc8f4aa9210bd128d7f92f54c627eb59c6fd5fba09352498cd16805b + md5: 8544082e6776549d4e6370e9dbb2a8b0 + depends: + - python + - ros-humble-geometry-msgs + - ros-humble-joy + - ros-humble-rclcpp + - ros-humble-rclcpp-components + - ros-humble-ros-workspace + - ros-humble-sensor-msgs + - ros2-distro-mutex 0.7.* humble_* + - libstdcxx >=13 + - libgcc >=13 + - __glibc >=2.17,<3.0.a0 + - libgcc >=13 + - python_abi 3.11.* *_cp311 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + - numpy >=1.26.4,<2.0a0 + license: BSD-3-Clause + size: 209019 + timestamp: 1753313875639 +- conda: https://prefix.dev/robostack-staging/linux-aarch64/ros-humble-teleop-twist-joy-2.4.7-np126py311hbdd918e_13.conda + sha256: 1749e7e80443eedad630e369b2a24b0a044408bc9da56d06022dea97b198d80e + md5: dec6657abad85c65b38dc65860b09ec5 + depends: + - python + - ros-humble-geometry-msgs + - ros-humble-joy + - ros-humble-rclcpp + - ros-humble-rclcpp-components + - ros-humble-ros-workspace + - ros-humble-sensor-msgs + - ros2-distro-mutex 0.7.* humble_* + - libstdcxx >=13 + - libgcc >=13 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + - numpy >=1.26.4,<2.0a0 + - python_abi 3.11.* *_cp311 + license: BSD-3-Clause + size: 205441 + timestamp: 1753313983108 +- conda: https://prefix.dev/robostack-staging/osx-arm64/ros-humble-teleop-twist-joy-2.4.7-np126py311h2a51a2c_13.conda + sha256: c962bfaec2237d3c51a20f8d50bc9d3831b83ab892e67921ce7e838ef4b6e662 + md5: 176a923b08fce1338d950bbc312eeed8 + depends: + - python + - ros-humble-geometry-msgs + - ros-humble-joy + - ros-humble-rclcpp + - ros-humble-rclcpp-components + - ros-humble-ros-workspace + - ros-humble-sensor-msgs + - ros2-distro-mutex 0.7.* humble_* + - __osx >=11.0 + - libcxx >=18 + - numpy >=1.26.4,<2.0a0 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + - python_abi 3.11.* *_cp311 + license: BSD-3-Clause + size: 175414 + timestamp: 1753314022333 +- conda: https://prefix.dev/robostack-staging/win-64/ros-humble-teleop-twist-joy-2.4.7-np126py311hd5de103_13.conda + sha256: 1219582c34fc343a3fe3d71a80195d358eb27bf7974e25ed6df624f0efb2abbf + md5: 76663e3dd7c3f802aea05e499a66deb7 + depends: + - python + - ros-humble-geometry-msgs + - ros-humble-joy + - ros-humble-rclcpp + - ros-humble-rclcpp-components + - ros-humble-ros-workspace + - ros-humble-sensor-msgs + - ros2-distro-mutex 0.7.* humble_* + - vc >=14.3,<15 + - vc14_runtime >=14.44.35208 + - ucrt >=10.0.20348.0 + - vc >=14.3,<15 + - vc14_runtime >=14.44.35208 + - ucrt >=10.0.20348.0 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + - numpy >=1.26.4,<2.0a0 + - python_abi 3.11.* *_cp311 + license: BSD-3-Clause + size: 147911 + timestamp: 1753334417768 +- conda: https://prefix.dev/robostack-staging/linux-64/ros-humble-teleop-twist-keyboard-2.4.0-np126py311hbc2a38a_13.conda + sha256: b27baedb148cd15d9a9081368412110b5ce459bd00f93f1f1873fbcfcf89356a + md5: 8a2c9dcd1964768f4fb39e11c9c902cc + depends: + - python + - ros-humble-geometry-msgs + - ros-humble-rclpy + - ros-humble-ros-workspace + - ros2-distro-mutex 0.7.* humble_* + - libstdcxx >=13 + - libgcc >=13 + - __glibc >=2.17,<3.0.a0 + - python_abi 3.11.* *_cp311 + - numpy >=1.26.4,<2.0a0 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + license: BSD-3-Clause + size: 22411 + timestamp: 1753313216557 +- conda: https://prefix.dev/robostack-staging/linux-aarch64/ros-humble-teleop-twist-keyboard-2.4.0-np126py311hbdd918e_13.conda + sha256: fdcd80f3ae468878eff818a7af2541f973b8dd4165010425c018adc8fc4231e4 + md5: 7d92d138dacad5b6c19e2967b9d251d7 + depends: + - python + - ros-humble-geometry-msgs + - ros-humble-rclpy + - ros-humble-ros-workspace + - ros2-distro-mutex 0.7.* humble_* + - libstdcxx >=13 + - libgcc >=13 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + - numpy >=1.26.4,<2.0a0 + - python_abi 3.11.* *_cp311 + license: BSD-3-Clause + size: 22296 + timestamp: 1753313507547 +- conda: https://prefix.dev/robostack-staging/osx-arm64/ros-humble-teleop-twist-keyboard-2.4.0-np126py311h2a51a2c_13.conda + sha256: 89a1e70d132915b3fa109aa5eba1a985e46df0aa9d571854885f08c3cc92dd55 + md5: 1301867f24c57361dd5758a42e9f7833 + depends: + - python + - ros-humble-geometry-msgs + - ros-humble-rclpy + - ros-humble-ros-workspace + - ros2-distro-mutex 0.7.* humble_* + - libcxx >=18 + - __osx >=11.0 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + - python_abi 3.11.* *_cp311 + - numpy >=1.26.4,<2.0a0 + license: BSD-3-Clause + size: 22548 + timestamp: 1753313146918 +- conda: https://prefix.dev/robostack-staging/win-64/ros-humble-teleop-twist-keyboard-2.4.0-np126py311hd5de103_13.conda + sha256: 959b822b47b11efd5a391cad5b73c205b3e4c22147a1bfa923f3e68e7925256c + md5: 0a94bf5360b59005187349748378d324 + depends: + - python + - ros-humble-geometry-msgs + - ros-humble-rclpy + - ros-humble-ros-workspace + - ros2-distro-mutex 0.7.* humble_* + - vc >=14.3,<15 + - vc14_runtime >=14.44.35208 + - ucrt >=10.0.20348.0 + - vc >=14.3,<15 + - vc14_runtime >=14.44.35208 + - ucrt >=10.0.20348.0 + - numpy >=1.26.4,<2.0a0 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + - python_abi 3.11.* *_cp311 + license: BSD-3-Clause + size: 27990 + timestamp: 1753331474124 +- conda: https://prefix.dev/robostack-staging/linux-64/ros-humble-tf2-0.25.14-np126py311hbc2a38a_13.conda + sha256: 20074fb310cced124e01a92567b9b2097c66a9807c4bf6de0b4889e3e20cfaab + md5: b9b653f18a3046a382aa434b2730e911 + depends: + - console_bridge + - python + - ros-humble-builtin-interfaces + - ros-humble-console-bridge-vendor + - ros-humble-geometry-msgs + - ros-humble-rcutils + - ros-humble-ros-workspace + - ros-humble-rosidl-runtime-cpp + - ros2-distro-mutex 0.7.* humble_* + - libgcc >=13 + - __glibc >=2.17,<3.0.a0 + - libstdcxx >=13 + - libgcc >=13 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + - python_abi 3.11.* *_cp311 + - numpy >=1.26.4,<2.0a0 + - console_bridge >=1.0.2,<1.1.0a0 + license: BSD-3-Clause + size: 131232 + timestamp: 1753312285376 +- conda: https://prefix.dev/robostack-staging/linux-aarch64/ros-humble-tf2-0.25.14-np126py311hbdd918e_13.conda + sha256: 56616c25a4c55e5d69bd358a2d55b2e9e52d59c0981427616f5046d882077b44 + md5: de5ebd5b9a722639f54fbcff8eddd9c0 + depends: + - console_bridge + - python + - ros-humble-builtin-interfaces + - ros-humble-console-bridge-vendor + - ros-humble-geometry-msgs + - ros-humble-rcutils + - ros-humble-ros-workspace + - ros-humble-rosidl-runtime-cpp + - ros2-distro-mutex 0.7.* humble_* + - libgcc >=13 + - libstdcxx >=13 + - libgcc >=13 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + - numpy >=1.26.4,<2.0a0 + - python_abi 3.11.* *_cp311 + - console_bridge >=1.0.2,<1.1.0a0 + license: BSD-3-Clause + size: 126529 + timestamp: 1753312694805 +- conda: https://prefix.dev/robostack-staging/osx-arm64/ros-humble-tf2-0.25.14-np126py311h2a51a2c_13.conda + sha256: 96be4f43389e38ca46ea914433860a3c59d95fe5757f561d83f9d1a935437ad3 + md5: 570f98bc733642b5a891f04e0ffda2a6 + depends: + - console_bridge + - python + - ros-humble-builtin-interfaces + - ros-humble-console-bridge-vendor + - ros-humble-geometry-msgs + - ros-humble-rcutils + - ros-humble-ros-workspace + - ros-humble-rosidl-runtime-cpp + - ros2-distro-mutex 0.7.* humble_* + - libcxx >=18 + - __osx >=11.0 + - console_bridge >=1.0.2,<1.1.0a0 + - python_abi 3.11.* *_cp311 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + - numpy >=1.26.4,<2.0a0 + license: BSD-3-Clause + size: 117184 + timestamp: 1753311823368 +- conda: https://prefix.dev/robostack-staging/win-64/ros-humble-tf2-0.25.14-np126py311hd5de103_13.conda + sha256: 4a2c29db5a63fcae2f7acb272e4123ae4431e90416afa1ccc6af9bc10ea695d4 + md5: e1d97baaabe5b3a1323b36e023c840b0 + depends: + - console_bridge + - python + - ros-humble-builtin-interfaces + - ros-humble-console-bridge-vendor + - ros-humble-geometry-msgs + - ros-humble-rcutils + - ros-humble-ros-workspace + - ros-humble-rosidl-runtime-cpp + - ros2-distro-mutex 0.7.* humble_* + - vc >=14.3,<15 + - vc14_runtime >=14.44.35208 + - ucrt >=10.0.20348.0 + - vc >=14.3,<15 + - vc14_runtime >=14.44.35208 + - ucrt >=10.0.20348.0 + - console_bridge >=1.0.2,<1.1.0a0 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + - python_abi 3.11.* *_cp311 + - numpy >=1.26.4,<2.0a0 + license: BSD-3-Clause + size: 131567 + timestamp: 1753326659771 +- conda: https://prefix.dev/robostack-staging/linux-64/ros-humble-tf2-bullet-0.25.14-np126py311hbc2a38a_13.conda + sha256: 1bba3dd3d756a9a99d2e382d7a4dcbaa384d7d472267818ac81165d6c3ff737d + md5: 013bfe4eafbf6c70d4e809e7feea6832 + depends: + - bullet + - python + - ros-humble-geometry-msgs + - ros-humble-ros-workspace + - ros-humble-tf2 + - ros-humble-tf2-ros + - ros2-distro-mutex 0.7.* humble_* + - libstdcxx >=13 + - libgcc >=13 + - __glibc >=2.17,<3.0.a0 + - numpy >=1.26.4,<2.0a0 + - python_abi 3.11.* *_cp311 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + license: BSD-3-Clause + size: 42670 + timestamp: 1753314169343 +- conda: https://prefix.dev/robostack-staging/linux-aarch64/ros-humble-tf2-bullet-0.25.14-np126py311hbdd918e_13.conda + sha256: a8245aa60d78ffc999ef43069b3422d114077ea2f318f691b4bedce5705aae2d + md5: 3f18fc80de7f90fc6ee1f3b2fa874c03 + depends: + - bullet + - python + - ros-humble-geometry-msgs + - ros-humble-ros-workspace + - ros-humble-tf2 + - ros-humble-tf2-ros + - ros2-distro-mutex 0.7.* humble_* + - libstdcxx >=13 + - libgcc >=13 + - python_abi 3.11.* *_cp311 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + - numpy >=1.26.4,<2.0a0 + license: BSD-3-Clause + size: 42498 + timestamp: 1753314282285 +- conda: https://prefix.dev/robostack-staging/osx-arm64/ros-humble-tf2-bullet-0.25.14-np126py311h2a51a2c_13.conda + sha256: 5807baa6486b6dbdc3c18c7597dcb3a2c7a45e9ed7b1daefb0169399e84cc20d + md5: daa322e00ad3db22fde2d46854864f69 + depends: + - bullet + - python + - ros-humble-geometry-msgs + - ros-humble-ros-workspace + - ros-humble-tf2 + - ros-humble-tf2-ros + - ros2-distro-mutex 0.7.* humble_* + - __osx >=11.0 + - libcxx >=18 + - python_abi 3.11.* *_cp311 + - numpy >=1.26.4,<2.0a0 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + license: BSD-3-Clause + size: 40963 + timestamp: 1753314395197 +- conda: https://prefix.dev/robostack-staging/win-64/ros-humble-tf2-bullet-0.25.14-np126py311hd5de103_13.conda + sha256: ad1c39ab19a326dac0c2554c2953ed246f0cefdebfda54688e15920cdb081998 + md5: bbbfe73eba39f74fca121f992dac60a7 + depends: + - bullet + - python + - ros-humble-geometry-msgs + - ros-humble-ros-workspace + - ros-humble-tf2 + - ros-humble-tf2-ros + - ros2-distro-mutex 0.7.* humble_* + - vc >=14.3,<15 + - vc14_runtime >=14.44.35208 + - ucrt >=10.0.20348.0 + - vc >=14.3,<15 + - vc14_runtime >=14.44.35208 + - ucrt >=10.0.20348.0 + - numpy >=1.26.4,<2.0a0 + - python_abi 3.11.* *_cp311 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + license: BSD-3-Clause + size: 36706 + timestamp: 1753335631816 +- conda: https://prefix.dev/robostack-staging/linux-64/ros-humble-tf2-eigen-0.25.14-np126py311hbc2a38a_13.conda + sha256: c555ecec413506c6b53f91afbfaa1e2657d6f65c001bd537187ad909dda62502 + md5: cb79194a2c419ac4734c56f3d7781d54 + depends: + - eigen + - python + - ros-humble-geometry-msgs + - ros-humble-ros-workspace + - ros-humble-tf2 + - ros-humble-tf2-ros + - ros2-distro-mutex 0.7.* humble_* + - __glibc >=2.17,<3.0.a0 + - libgcc >=13 + - libstdcxx >=13 + - libgcc >=13 + - numpy >=1.26.4,<2.0a0 + - python_abi 3.11.* *_cp311 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + license: BSD-3-Clause + size: 42888 + timestamp: 1753314111418 +- conda: https://prefix.dev/robostack-staging/linux-aarch64/ros-humble-tf2-eigen-0.25.14-np126py311hbdd918e_13.conda + sha256: ec8e7dcfe4eaa44680190234398055a45ae18086ece275b7aac4d606b33ff59c + md5: be69c84bb8f010836bcc0798e1e8fa7e + depends: + - eigen + - python + - ros-humble-geometry-msgs + - ros-humble-ros-workspace + - ros-humble-tf2 + - ros-humble-tf2-ros + - ros2-distro-mutex 0.7.* humble_* + - libgcc >=13 + - libstdcxx >=13 + - libgcc >=13 + - python_abi 3.11.* *_cp311 + - numpy >=1.26.4,<2.0a0 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + license: BSD-3-Clause + size: 42726 + timestamp: 1753314209479 +- conda: https://prefix.dev/robostack-staging/osx-arm64/ros-humble-tf2-eigen-0.25.14-np126py311h2a51a2c_13.conda + sha256: daaa71cb6469b358c57d515f8979a7c2905d4daab04abeafd88968d07be90c86 + md5: 753d33223d7e4cb967054b4cf3db267b + depends: + - eigen + - python + - ros-humble-geometry-msgs + - ros-humble-ros-workspace + - ros-humble-tf2 + - ros-humble-tf2-ros + - ros2-distro-mutex 0.7.* humble_* + - libcxx >=18 + - __osx >=11.0 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + - python_abi 3.11.* *_cp311 + - numpy >=1.26.4,<2.0a0 + license: BSD-3-Clause + size: 42686 + timestamp: 1753314268142 +- conda: https://prefix.dev/robostack-staging/win-64/ros-humble-tf2-eigen-0.25.14-np126py311hd5de103_13.conda + sha256: c0806536f41f2d45202a262c6b51427bb233e108c0d4c6c77be7604e0cfbde6e + md5: 7997b39541ab5e6b08195d135fc9a73b + depends: + - eigen + - python + - ros-humble-geometry-msgs + - ros-humble-ros-workspace + - ros-humble-tf2 + - ros-humble-tf2-ros + - ros2-distro-mutex 0.7.* humble_* + - vc >=14.3,<15 + - vc14_runtime >=14.44.35208 + - ucrt >=10.0.20348.0 + - vc >=14.3,<15 + - vc14_runtime >=14.44.35208 + - ucrt >=10.0.20348.0 + - python_abi 3.11.* *_cp311 + - numpy >=1.26.4,<2.0a0 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + license: BSD-3-Clause + size: 39183 + timestamp: 1753335682774 +- conda: https://prefix.dev/robostack-staging/linux-64/ros-humble-tf2-eigen-kdl-0.25.14-np126py311hbc2a38a_13.conda + sha256: a9f10a78f052c637cb6355f7785a512e1841259cfc34d10c96fceecab29fa8e7 + md5: bcd16f579e595dab8b17c9683576440a + depends: + - eigen + - python + - ros-humble-orocos-kdl-vendor + - ros-humble-ros-workspace + - ros-humble-tf2 + - ros2-distro-mutex 0.7.* humble_* + - libstdcxx >=13 + - libgcc >=13 + - __glibc >=2.17,<3.0.a0 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + - python_abi 3.11.* *_cp311 + - numpy >=1.26.4,<2.0a0 + license: BSD-3-Clause + size: 40072 + timestamp: 1753312444958 +- conda: https://prefix.dev/robostack-staging/linux-aarch64/ros-humble-tf2-eigen-kdl-0.25.14-np126py311hbdd918e_13.conda + sha256: b7e43386434d55bea0e04f6d0fb8aa765097026f5ccacf510006a53ac99351c6 + md5: a84ac4d6046ae2f428f6da267715a3de + depends: + - eigen + - python + - ros-humble-orocos-kdl-vendor + - ros-humble-ros-workspace + - ros-humble-tf2 + - ros2-distro-mutex 0.7.* humble_* + - libgcc >=13 + - libstdcxx >=13 + - libgcc >=13 + - numpy >=1.26.4,<2.0a0 + - python_abi 3.11.* *_cp311 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + license: BSD-3-Clause + size: 40268 + timestamp: 1753312833135 +- conda: https://prefix.dev/robostack-staging/osx-arm64/ros-humble-tf2-eigen-kdl-0.25.14-np126py311h2a51a2c_13.conda + sha256: 0041319ee9a480e8c761214cd769054101ff9ba6f3a091e409b670aaf84b158f + md5: 767d0c1610cc123883ffb8fcb10c5da9 + depends: + - eigen + - python + - ros-humble-orocos-kdl-vendor + - ros-humble-ros-workspace + - ros-humble-tf2 + - ros2-distro-mutex 0.7.* humble_* + - __osx >=11.0 + - libcxx >=18 + - python_abi 3.11.* *_cp311 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + - numpy >=1.26.4,<2.0a0 + license: BSD-3-Clause + size: 39389 + timestamp: 1753312250651 +- conda: https://prefix.dev/robostack-staging/win-64/ros-humble-tf2-eigen-kdl-0.25.14-np126py311hd5de103_13.conda + sha256: c9f587194f465107a1c5fd51d86589d512f7451c5d42ad39189a652d4b8710d1 + md5: be0f5734b8211c0a3594d056dcbd7aee + depends: + - eigen + - python + - ros-humble-orocos-kdl-vendor + - ros-humble-ros-workspace + - ros-humble-tf2 + - ros2-distro-mutex 0.7.* humble_* + - vc >=14.3,<15 + - vc14_runtime >=14.44.35208 + - ucrt >=10.0.20348.0 + - vc >=14.3,<15 + - vc14_runtime >=14.44.35208 + - ucrt >=10.0.20348.0 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + - python_abi 3.11.* *_cp311 + - numpy >=1.26.4,<2.0a0 + license: BSD-3-Clause + size: 40967 + timestamp: 1753328390642 +- conda: https://prefix.dev/robostack-staging/linux-64/ros-humble-tf2-geometry-msgs-0.25.14-np126py311hbc2a38a_13.conda + sha256: 295dc6a7b18e693f4184caaa8c2ca400253c3d5c0473643e1ed8235783608f16 + md5: 6edb42eb8871d465f7b3252aa6cdd66c + depends: + - numpy + - python + - ros-humble-geometry-msgs + - ros-humble-orocos-kdl-vendor + - ros-humble-ros-workspace + - ros-humble-tf2 + - ros-humble-tf2-ros + - ros-humble-tf2-ros-py + - ros2-distro-mutex 0.7.* humble_* + - __glibc >=2.17,<3.0.a0 + - libstdcxx >=13 + - libgcc >=13 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + - numpy >=1.26.4,<2.0a0 + - python_abi 3.11.* *_cp311 + license: BSD-3-Clause + size: 56102 + timestamp: 1753314104169 +- conda: https://prefix.dev/robostack-staging/linux-aarch64/ros-humble-tf2-geometry-msgs-0.25.14-np126py311hbdd918e_13.conda + sha256: f48eb91988ab7b769eceb138eff0409022f9fc63ba7547d989458ffc204dd8d3 + md5: f6d9df0b37a4cedd8e709f650e971c07 + depends: + - numpy + - python + - ros-humble-geometry-msgs + - ros-humble-orocos-kdl-vendor + - ros-humble-ros-workspace + - ros-humble-tf2 + - ros-humble-tf2-ros + - ros-humble-tf2-ros-py + - ros2-distro-mutex 0.7.* humble_* + - libgcc >=13 + - libstdcxx >=13 + - libgcc >=13 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + - numpy >=1.26.4,<2.0a0 + - python_abi 3.11.* *_cp311 + license: BSD-3-Clause + size: 55939 + timestamp: 1753314202230 +- conda: https://prefix.dev/robostack-staging/osx-arm64/ros-humble-tf2-geometry-msgs-0.25.14-np126py311h2a51a2c_13.conda + sha256: d3404e5f6e620f66faef33a91d1f15a47799943c7c3627a2f34f470fb3348bf9 + md5: d446a876850a5e97867944e3439ed5d5 + depends: + - numpy + - python + - ros-humble-geometry-msgs + - ros-humble-orocos-kdl-vendor + - ros-humble-ros-workspace + - ros-humble-tf2 + - ros-humble-tf2-ros + - ros-humble-tf2-ros-py + - ros2-distro-mutex 0.7.* humble_* + - libcxx >=18 + - __osx >=11.0 + - python_abi 3.11.* *_cp311 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + - numpy >=1.26.4,<2.0a0 + license: BSD-3-Clause + size: 54934 + timestamp: 1753314255864 +- conda: https://prefix.dev/robostack-staging/win-64/ros-humble-tf2-geometry-msgs-0.25.14-np126py311hd5de103_13.conda + sha256: 8d1d61a693621551de45fb62ae20ebf25d2c03e059b2e4aadab72b0cdc8cebed + md5: d34314fa85178d98fd4e7721711b96d8 + depends: + - numpy + - python + - ros-humble-geometry-msgs + - ros-humble-orocos-kdl-vendor + - ros-humble-ros-workspace + - ros-humble-tf2 + - ros-humble-tf2-ros + - ros-humble-tf2-ros-py + - ros2-distro-mutex 0.7.* humble_* + - vc >=14.3,<15 + - vc14_runtime >=14.44.35208 + - ucrt >=10.0.20348.0 + - vc >=14.3,<15 + - vc14_runtime >=14.44.35208 + - ucrt >=10.0.20348.0 + - python_abi 3.11.* *_cp311 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + - numpy >=1.26.4,<2.0a0 + license: BSD-3-Clause + size: 51446 + timestamp: 1753335626843 +- conda: https://prefix.dev/robostack-staging/linux-64/ros-humble-tf2-kdl-0.25.14-np126py311hbc2a38a_13.conda + sha256: a6b327b09c2f16a4a01cccc7c85593c28b38f2115257ba6013b401e6f07304ef + md5: 078bd777f1f577d8259e226cd01ccc44 + depends: + - python + - ros-humble-builtin-interfaces + - ros-humble-geometry-msgs + - ros-humble-orocos-kdl-vendor + - ros-humble-python-orocos-kdl-vendor + - ros-humble-ros-workspace + - ros-humble-tf2 + - ros-humble-tf2-ros + - ros-humble-tf2-ros-py + - ros2-distro-mutex 0.7.* humble_* + - libstdcxx >=13 + - libgcc >=13 + - __glibc >=2.17,<3.0.a0 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + - numpy >=1.26.4,<2.0a0 + - python_abi 3.11.* *_cp311 + license: BSD-3-Clause + size: 42340 + timestamp: 1753314094365 +- conda: https://prefix.dev/robostack-staging/linux-aarch64/ros-humble-tf2-kdl-0.25.14-np126py311hbdd918e_13.conda + sha256: 30732fa6921a2102644efa020bf3f2502bdf905662fae5a0f0c623ddb35edca9 + md5: abb17544632339fb375074ac1adb8830 + depends: + - python + - ros-humble-builtin-interfaces + - ros-humble-geometry-msgs + - ros-humble-orocos-kdl-vendor + - ros-humble-python-orocos-kdl-vendor + - ros-humble-ros-workspace + - ros-humble-tf2 + - ros-humble-tf2-ros + - ros-humble-tf2-ros-py + - ros2-distro-mutex 0.7.* humble_* + - libstdcxx >=13 + - libgcc >=13 + - numpy >=1.26.4,<2.0a0 + - python_abi 3.11.* *_cp311 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + license: BSD-3-Clause + size: 42149 + timestamp: 1753314193442 +- conda: https://prefix.dev/robostack-staging/osx-arm64/ros-humble-tf2-kdl-0.25.14-np126py311h2a51a2c_13.conda + sha256: 817cf9ec2560ffb2bda7e4c4e22cf935aeec0e951c8eaec5f21596308ae82046 + md5: 7163abeaa8ae09ee2081845858dbfeab + depends: + - python + - ros-humble-builtin-interfaces + - ros-humble-geometry-msgs + - ros-humble-orocos-kdl-vendor + - ros-humble-python-orocos-kdl-vendor + - ros-humble-ros-workspace + - ros-humble-tf2 + - ros-humble-tf2-ros + - ros-humble-tf2-ros-py + - ros2-distro-mutex 0.7.* humble_* + - libcxx >=18 + - __osx >=11.0 + - python_abi 3.11.* *_cp311 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + - numpy >=1.26.4,<2.0a0 + license: BSD-3-Clause + size: 42307 + timestamp: 1753314242133 +- conda: https://prefix.dev/robostack-staging/win-64/ros-humble-tf2-kdl-0.25.14-np126py311hd5de103_13.conda + sha256: 0daed93db8785659509e3ec10d2136565c2b677ded038185f36a8b3c7e2b7126 + md5: d14c228c7f23073da296856a41a20818 + depends: + - python + - ros-humble-builtin-interfaces + - ros-humble-geometry-msgs + - ros-humble-orocos-kdl-vendor + - ros-humble-python-orocos-kdl-vendor + - ros-humble-ros-workspace + - ros-humble-tf2 + - ros-humble-tf2-ros + - ros-humble-tf2-ros-py + - ros2-distro-mutex 0.7.* humble_* + - vc >=14.3,<15 + - vc14_runtime >=14.44.35208 + - ucrt >=10.0.20348.0 + - vc >=14.3,<15 + - vc14_runtime >=14.44.35208 + - ucrt >=10.0.20348.0 + - python_abi 3.11.* *_cp311 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + - numpy >=1.26.4,<2.0a0 + license: BSD-3-Clause + size: 38985 + timestamp: 1753335572741 +- conda: https://prefix.dev/robostack-staging/linux-64/ros-humble-tf2-msgs-0.25.14-np126py311hbc2a38a_13.conda + sha256: 24d65455d31effcb963347a1f7b278cb4613e136b746cf95e7f673a993855856 + md5: 5da6a174f12405a44f84f4d5adf9e409 + depends: + - python + - ros-humble-action-msgs + - ros-humble-builtin-interfaces + - ros-humble-geometry-msgs + - ros-humble-ros-workspace + - ros-humble-rosidl-default-runtime + - ros2-distro-mutex 0.7.* humble_* + - libstdcxx >=13 + - libgcc >=13 + - __glibc >=2.17,<3.0.a0 + - libgcc >=13 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + - numpy >=1.26.4,<2.0a0 + - python_abi 3.11.* *_cp311 + license: BSD-3-Clause + size: 170525 + timestamp: 1753312188939 +- conda: https://prefix.dev/robostack-staging/linux-aarch64/ros-humble-tf2-msgs-0.25.14-np126py311hbdd918e_13.conda + sha256: ad697e53e68c9deff85d76057d69fcba25843da249c57a77f0fadb1584537670 + md5: b6b8e63dd5dabc1a3efeda831f2bfb5f + depends: + - python + - ros-humble-action-msgs + - ros-humble-builtin-interfaces + - ros-humble-geometry-msgs + - ros-humble-ros-workspace + - ros-humble-rosidl-default-runtime + - ros2-distro-mutex 0.7.* humble_* + - libstdcxx >=13 + - libgcc >=13 + - python_abi 3.11.* *_cp311 + - numpy >=1.26.4,<2.0a0 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + license: BSD-3-Clause + size: 174257 + timestamp: 1753312614608 +- conda: https://prefix.dev/robostack-staging/osx-arm64/ros-humble-tf2-msgs-0.25.14-np126py311h2a51a2c_13.conda + sha256: d43065c7c640207c67d34d824afff681d84b00c5a836959415998c42faccdd8b + md5: 62cf9478357bd4491a2dfbae20cc87d9 + depends: + - python + - ros-humble-action-msgs + - ros-humble-builtin-interfaces + - ros-humble-geometry-msgs + - ros-humble-ros-workspace + - ros-humble-rosidl-default-runtime + - ros2-distro-mutex 0.7.* humble_* + - __osx >=11.0 + - libcxx >=18 + - numpy >=1.26.4,<2.0a0 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + - python_abi 3.11.* *_cp311 + license: BSD-3-Clause + size: 152955 + timestamp: 1753311861247 +- conda: https://prefix.dev/robostack-staging/win-64/ros-humble-tf2-msgs-0.25.14-np126py311hd5de103_13.conda + sha256: 60c9a4b5022ba7861fcd77acf813385b412f282e9aaf4317186d93f5f121b354 + md5: efbcddc74b6f7d7355212a56696a6d60 + depends: + - python + - ros-humble-action-msgs + - ros-humble-builtin-interfaces + - ros-humble-geometry-msgs + - ros-humble-ros-workspace + - ros-humble-rosidl-default-runtime + - ros2-distro-mutex 0.7.* humble_* + - vc >=14.3,<15 + - vc14_runtime >=14.44.35208 + - ucrt >=10.0.20348.0 + - vc >=14.3,<15 + - vc14_runtime >=14.44.35208 + - ucrt >=10.0.20348.0 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + - numpy >=1.26.4,<2.0a0 + - python_abi 3.11.* *_cp311 + license: BSD-3-Clause + size: 167547 + timestamp: 1753326713942 +- conda: https://prefix.dev/robostack-staging/linux-64/ros-humble-tf2-py-0.25.14-np126py311hbc2a38a_13.conda + sha256: ca162128f43c9540ac6a5f92400a0f1720423240019dfcf305ceff1b64a01dc0 + md5: 6ec160638206734caa1b853a60cc81f2 + depends: + - python + - ros-humble-builtin-interfaces + - ros-humble-geometry-msgs + - ros-humble-rclpy + - ros-humble-ros-workspace + - ros-humble-rpyutils + - ros-humble-tf2 + - ros2-distro-mutex 0.7.* humble_* + - __glibc >=2.17,<3.0.a0 + - libstdcxx >=13 + - libgcc >=13 + - python_abi 3.11.* *_cp311 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + - numpy >=1.26.4,<2.0a0 + license: BSD-3-Clause + size: 55858 + timestamp: 1753313131962 +- conda: https://prefix.dev/robostack-staging/linux-aarch64/ros-humble-tf2-py-0.25.14-np126py311hbdd918e_13.conda + sha256: 9641ee88f4d5674d6a0016ece88bab124e6b9cdd5491199e890f4b81cad33637 + md5: 2de0b90a6fa6b6a0fc1483d5bace6aa9 + depends: + - python + - ros-humble-builtin-interfaces + - ros-humble-geometry-msgs + - ros-humble-rclpy + - ros-humble-ros-workspace + - ros-humble-rpyutils + - ros-humble-tf2 + - ros2-distro-mutex 0.7.* humble_* + - libstdcxx >=13 + - libgcc >=13 + - numpy >=1.26.4,<2.0a0 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + - python_abi 3.11.* *_cp311 + license: BSD-3-Clause + size: 54089 + timestamp: 1753313362834 +- conda: https://prefix.dev/robostack-staging/osx-arm64/ros-humble-tf2-py-0.25.14-np126py311h2a51a2c_13.conda + sha256: 859273191342ba51733bc7525ac6366cca8dfb82ee538c2c24c8362bc679b755 + md5: 8214a96048e3405304deb4dee475fb02 + depends: + - python + - ros-humble-builtin-interfaces + - ros-humble-geometry-msgs + - ros-humble-rclpy + - ros-humble-ros-workspace + - ros-humble-rpyutils + - ros-humble-tf2 + - ros2-distro-mutex 0.7.* humble_* + - __osx >=11.0 + - libcxx >=18 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + - numpy >=1.26.4,<2.0a0 + - python_abi 3.11.* *_cp311 + license: BSD-3-Clause + size: 50027 + timestamp: 1753313083406 +- conda: https://prefix.dev/robostack-staging/win-64/ros-humble-tf2-py-0.25.14-np126py311hd5de103_13.conda + sha256: 2a20e3b031bfe702fd511258d76f32978d99bb7792caaffec26e0dfeb679d11b + md5: 6abedaf79713b87c1933d393b894a846 + depends: + - python + - ros-humble-builtin-interfaces + - ros-humble-geometry-msgs + - ros-humble-rclpy + - ros-humble-ros-workspace + - ros-humble-rpyutils + - ros-humble-tf2 + - ros2-distro-mutex 0.7.* humble_* + - vc >=14.3,<15 + - vc14_runtime >=14.44.35208 + - ucrt >=10.0.20348.0 + - vc >=14.3,<15 + - vc14_runtime >=14.44.35208 + - ucrt >=10.0.20348.0 + - python_abi 3.11.* *_cp311 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + - numpy >=1.26.4,<2.0a0 + license: BSD-3-Clause + size: 47531 + timestamp: 1753331728053 +- conda: https://prefix.dev/robostack-staging/linux-64/ros-humble-tf2-ros-0.25.14-np126py311hbc2a38a_13.conda + sha256: 626283458e370de1412a3d79071b4af0c6a59d0b66117582e5dacd3173602997 + md5: b18122c6356bea1251d8d8441db588c0 + depends: + - python + - ros-humble-builtin-interfaces + - ros-humble-geometry-msgs + - ros-humble-message-filters + - ros-humble-rcl-interfaces + - ros-humble-rclcpp + - ros-humble-rclcpp-action + - ros-humble-rclcpp-components + - ros-humble-ros-workspace + - ros-humble-tf2 + - ros-humble-tf2-msgs + - ros2-distro-mutex 0.7.* humble_* + - __glibc >=2.17,<3.0.a0 + - libgcc >=13 + - libstdcxx >=13 + - libgcc >=13 + - python_abi 3.11.* *_cp311 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + - numpy >=1.26.4,<2.0a0 + license: BSD-3-Clause + size: 449759 + timestamp: 1753313870085 +- conda: https://prefix.dev/robostack-staging/linux-aarch64/ros-humble-tf2-ros-0.25.14-np126py311hbdd918e_13.conda + sha256: 72c3663286c9bb103dc33b4f2b70f2a10232eb2088cd0ad5b4b9fbfc9237ba7b + md5: 84a25377d9f37787bd2bb1e51a0893c4 + depends: + - python + - ros-humble-builtin-interfaces + - ros-humble-geometry-msgs + - ros-humble-message-filters + - ros-humble-rcl-interfaces + - ros-humble-rclcpp + - ros-humble-rclcpp-action + - ros-humble-rclcpp-components + - ros-humble-ros-workspace + - ros-humble-tf2 + - ros-humble-tf2-msgs + - ros2-distro-mutex 0.7.* humble_* + - libstdcxx >=13 + - libgcc >=13 + - numpy >=1.26.4,<2.0a0 + - python_abi 3.11.* *_cp311 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + license: BSD-3-Clause + size: 451913 + timestamp: 1753313978533 +- conda: https://prefix.dev/robostack-staging/osx-arm64/ros-humble-tf2-ros-0.25.14-np126py311h2a51a2c_13.conda + sha256: b951121fe010d03fea6f493f772436e5b3a0702a01dc35b4a17886a2193adf0f + md5: fb6db02d782e17a687fca2004cf17e3c + depends: + - python + - ros-humble-builtin-interfaces + - ros-humble-geometry-msgs + - ros-humble-message-filters + - ros-humble-rcl-interfaces + - ros-humble-rclcpp + - ros-humble-rclcpp-action + - ros-humble-rclcpp-components + - ros-humble-ros-workspace + - ros-humble-tf2 + - ros-humble-tf2-msgs + - ros2-distro-mutex 0.7.* humble_* + - __osx >=11.0 + - libcxx >=18 + - python_abi 3.11.* *_cp311 + - numpy >=1.26.4,<2.0a0 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + license: BSD-3-Clause + size: 332549 + timestamp: 1753313865350 +- conda: https://prefix.dev/robostack-staging/win-64/ros-humble-tf2-ros-0.25.14-np126py311hd5de103_13.conda + sha256: c7afc2030dd9868d503b27dfdff3c589078ba15b00b0d61f02b1e96e2e9f78bc + md5: 81eeefcd047ba10acdf78da9565ffda4 + depends: + - python + - ros-humble-builtin-interfaces + - ros-humble-geometry-msgs + - ros-humble-message-filters + - ros-humble-rcl-interfaces + - ros-humble-rclcpp + - ros-humble-rclcpp-action + - ros-humble-rclcpp-components + - ros-humble-ros-workspace + - ros-humble-tf2 + - ros-humble-tf2-msgs + - ros2-distro-mutex 0.7.* humble_* + - vc >=14.3,<15 + - vc14_runtime >=14.44.35208 + - ucrt >=10.0.20348.0 + - vc >=14.3,<15 + - vc14_runtime >=14.44.35208 + - ucrt >=10.0.20348.0 + - python_abi 3.11.* *_cp311 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + - numpy >=1.26.4,<2.0a0 + license: BSD-3-Clause + size: 288371 + timestamp: 1753334364177 +- conda: https://prefix.dev/robostack-staging/linux-64/ros-humble-tf2-ros-py-0.25.14-np126py311hbc2a38a_13.conda + sha256: c32d00748d90ebeab97ec13df6be290acaf670ad7470f9330439167a458401b6 + md5: 21a0efcb62a128cf0d13ee1f066100ad + depends: + - python + - ros-humble-geometry-msgs + - ros-humble-rclpy + - ros-humble-ros-workspace + - ros-humble-sensor-msgs + - ros-humble-std-msgs + - ros-humble-tf2-msgs + - ros-humble-tf2-py + - ros2-distro-mutex 0.7.* humble_* + - libstdcxx >=13 + - libgcc >=13 + - __glibc >=2.17,<3.0.a0 + - libgcc >=13 + - numpy >=1.26.4,<2.0a0 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + - python_abi 3.11.* *_cp311 + license: BSD-3-Clause + size: 45070 + timestamp: 1753313502785 +- conda: https://prefix.dev/robostack-staging/linux-aarch64/ros-humble-tf2-ros-py-0.25.14-np126py311hbdd918e_13.conda + sha256: 45bf92e21b560be95aeca43da67ddc7c19974b1a79381793b19bdd2e40927ddb + md5: 998f1a30f85c1462c7255bb545a0767f + depends: + - python + - ros-humble-geometry-msgs + - ros-humble-rclpy + - ros-humble-ros-workspace + - ros-humble-sensor-msgs + - ros-humble-std-msgs + - ros-humble-tf2-msgs + - ros-humble-tf2-py + - ros2-distro-mutex 0.7.* humble_* + - libgcc >=13 + - libstdcxx >=13 + - libgcc >=13 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + - numpy >=1.26.4,<2.0a0 + - python_abi 3.11.* *_cp311 + license: BSD-3-Clause + size: 44826 + timestamp: 1753313662116 +- conda: https://prefix.dev/robostack-staging/osx-arm64/ros-humble-tf2-ros-py-0.25.14-np126py311h2a51a2c_13.conda + sha256: c1f9661b56a25a1919143c077bdf6e0c51441ca238f40b2235cd47e9b05a305b + md5: 631915cb28418ad0010696e3381f2db6 + depends: + - python + - ros-humble-geometry-msgs + - ros-humble-rclpy + - ros-humble-ros-workspace + - ros-humble-sensor-msgs + - ros-humble-std-msgs + - ros-humble-tf2-msgs + - ros-humble-tf2-py + - ros2-distro-mutex 0.7.* humble_* + - __osx >=11.0 + - libcxx >=18 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + - python_abi 3.11.* *_cp311 + - numpy >=1.26.4,<2.0a0 + license: BSD-3-Clause + size: 45159 + timestamp: 1753313431439 +- conda: https://prefix.dev/robostack-staging/win-64/ros-humble-tf2-ros-py-0.25.14-np126py311hd5de103_13.conda + sha256: 28c7a373fa23924263fe9f8ffb96e264198f230e36e4d9f9c2700e282edb3516 + md5: 3adc0c82ae85ed886eb29402dbcf0262 + depends: + - python + - ros-humble-geometry-msgs + - ros-humble-rclpy + - ros-humble-ros-workspace + - ros-humble-sensor-msgs + - ros-humble-std-msgs + - ros-humble-tf2-msgs + - ros-humble-tf2-py + - ros2-distro-mutex 0.7.* humble_* + - vc >=14.3,<15 + - vc14_runtime >=14.44.35208 + - ucrt >=10.0.20348.0 + - vc >=14.3,<15 + - vc14_runtime >=14.44.35208 + - ucrt >=10.0.20348.0 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + - numpy >=1.26.4,<2.0a0 + - python_abi 3.11.* *_cp311 + license: BSD-3-Clause + size: 42728 + timestamp: 1753333023954 +- conda: https://prefix.dev/robostack-staging/linux-64/ros-humble-tf2-sensor-msgs-0.25.14-np126py311hbc2a38a_13.conda + sha256: 5bcaae8c3fe80b0d24773f9fe25a009b0e53be27560250fde929ea8da15c837a + md5: 97d9d163d06210f2462a9493903e1399 + depends: + - eigen + - numpy + - python + - ros-humble-eigen3-cmake-module + - ros-humble-geometry-msgs + - ros-humble-ros-workspace + - ros-humble-sensor-msgs + - ros-humble-sensor-msgs-py + - ros-humble-std-msgs + - ros-humble-tf2 + - ros-humble-tf2-ros + - ros-humble-tf2-ros-py + - ros2-distro-mutex 0.7.* humble_* + - __glibc >=2.17,<3.0.a0 + - libstdcxx >=13 + - libgcc >=13 + - python_abi 3.11.* *_cp311 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + - numpy >=1.26.4,<2.0a0 + license: BSD-3-Clause + size: 46995 + timestamp: 1753314089813 +- conda: https://prefix.dev/robostack-staging/linux-aarch64/ros-humble-tf2-sensor-msgs-0.25.14-np126py311hbdd918e_13.conda + sha256: 021654521fd1c299c3a34cc6280e5ac5f3dd514e66ded91b02383fb2fb160ba5 + md5: f82b589d3ee270d4be6449f7629c19fe + depends: + - eigen + - numpy + - python + - ros-humble-eigen3-cmake-module + - ros-humble-geometry-msgs + - ros-humble-ros-workspace + - ros-humble-sensor-msgs + - ros-humble-sensor-msgs-py + - ros-humble-std-msgs + - ros-humble-tf2 + - ros-humble-tf2-ros + - ros-humble-tf2-ros-py + - ros2-distro-mutex 0.7.* humble_* + - libstdcxx >=13 + - libgcc >=13 + - python_abi 3.11.* *_cp311 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + - numpy >=1.26.4,<2.0a0 + license: BSD-3-Clause + size: 46756 + timestamp: 1753314183325 +- conda: https://prefix.dev/robostack-staging/osx-arm64/ros-humble-tf2-sensor-msgs-0.25.14-np126py311h2a51a2c_13.conda + sha256: feb587b82207c94cdf0420f44407f4b459b81ff6108997ef24490254a600727f + md5: 0e73403c454377964424843182060748 + depends: + - eigen + - numpy + - python + - ros-humble-eigen3-cmake-module + - ros-humble-geometry-msgs + - ros-humble-ros-workspace + - ros-humble-sensor-msgs + - ros-humble-sensor-msgs-py + - ros-humble-std-msgs + - ros-humble-tf2 + - ros-humble-tf2-ros + - ros-humble-tf2-ros-py + - ros2-distro-mutex 0.7.* humble_* + - libcxx >=18 + - __osx >=11.0 + - python_abi 3.11.* *_cp311 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + - numpy >=1.26.4,<2.0a0 + license: BSD-3-Clause + size: 45664 + timestamp: 1753314200346 +- conda: https://prefix.dev/robostack-staging/win-64/ros-humble-tf2-sensor-msgs-0.25.14-np126py311hd5de103_13.conda + sha256: f430195702b8735dd3ac65e6dcc800ea826e187cdd6a11e45bbff0dda84a7a9e + md5: abbf918e7d1af7149ce1c07edd8b320b + depends: + - eigen + - numpy + - python + - ros-humble-eigen3-cmake-module + - ros-humble-geometry-msgs + - ros-humble-ros-workspace + - ros-humble-sensor-msgs + - ros-humble-sensor-msgs-py + - ros-humble-std-msgs + - ros-humble-tf2 + - ros-humble-tf2-ros + - ros-humble-tf2-ros-py + - ros2-distro-mutex 0.7.* humble_* + - vc >=14.3,<15 + - vc14_runtime >=14.44.35208 + - ucrt >=10.0.20348.0 + - vc >=14.3,<15 + - vc14_runtime >=14.44.35208 + - ucrt >=10.0.20348.0 + - numpy >=1.26.4,<2.0a0 + - python_abi 3.11.* *_cp311 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + license: BSD-3-Clause + size: 42229 + timestamp: 1753335848255 +- conda: https://prefix.dev/robostack-staging/linux-64/ros-humble-tf2-tools-0.25.14-np126py311hbc2a38a_13.conda + sha256: 995f5e6a1a89b4dbb75e1ab3164da658925669a44adb1b6da8b753be0258d97b + md5: 1107690cb96e4553d0b580e670734d66 + depends: + - graphviz + - python + - pyyaml + - ros-humble-rclpy + - ros-humble-ros-workspace + - ros-humble-tf2-msgs + - ros-humble-tf2-py + - ros-humble-tf2-ros-py + - ros2-distro-mutex 0.7.* humble_* + - libgcc >=13 + - __glibc >=2.17,<3.0.a0 + - libstdcxx >=13 + - libgcc >=13 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + - numpy >=1.26.4,<2.0a0 + - python_abi 3.11.* *_cp311 + license: BSD-3-Clause + size: 21368 + timestamp: 1753313871334 +- conda: https://prefix.dev/robostack-staging/linux-aarch64/ros-humble-tf2-tools-0.25.14-np126py311hbdd918e_13.conda + sha256: e9191636930fbd97e5c0fefdbe2ce9fd55ef07ab56eb33e5ade53fc7fad15ecf + md5: 6b62fe9b62decc1253389971704fdae0 + depends: + - graphviz + - python + - pyyaml + - ros-humble-rclpy + - ros-humble-ros-workspace + - ros-humble-tf2-msgs + - ros-humble-tf2-py + - ros-humble-tf2-ros-py + - ros2-distro-mutex 0.7.* humble_* + - libstdcxx >=13 + - libgcc >=13 + - numpy >=1.26.4,<2.0a0 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + - python_abi 3.11.* *_cp311 + license: BSD-3-Clause + size: 21215 + timestamp: 1753313979025 +- conda: https://prefix.dev/robostack-staging/osx-arm64/ros-humble-tf2-tools-0.25.14-np126py311h2a51a2c_13.conda + sha256: 1c6811c89199d1839a8cfb0b9a3208ed31938ef2893bb0f4bb8f71f5c53cf854 + md5: 51c2c58e72787473164c34a4429a3f5a + depends: + - graphviz + - python + - pyyaml + - ros-humble-rclpy + - ros-humble-ros-workspace + - ros-humble-tf2-msgs + - ros-humble-tf2-py + - ros-humble-tf2-ros-py + - ros2-distro-mutex 0.7.* humble_* + - libcxx >=18 + - __osx >=11.0 + - numpy >=1.26.4,<2.0a0 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + - python_abi 3.11.* *_cp311 + license: BSD-3-Clause + size: 21480 + timestamp: 1753313863761 +- conda: https://prefix.dev/robostack-staging/win-64/ros-humble-tf2-tools-0.25.14-np126py311hd5de103_13.conda + sha256: b34d1fdd019c5068e4684d53aeaba5223e24a9bccc670f350284ddd57a7d9689 + md5: b55ca1b340ac1dbc10b5a4ba733f3f0c + depends: + - graphviz + - python + - pyyaml + - ros-humble-rclpy + - ros-humble-ros-workspace + - ros-humble-tf2-msgs + - ros-humble-tf2-py + - ros-humble-tf2-ros-py + - ros2-distro-mutex 0.7.* humble_* + - vc >=14.3,<15 + - vc14_runtime >=14.44.35208 + - ucrt >=10.0.20348.0 + - vc >=14.3,<15 + - vc14_runtime >=14.44.35208 + - ucrt >=10.0.20348.0 + - python_abi 3.11.* *_cp311 + - numpy >=1.26.4,<2.0a0 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + license: BSD-3-Clause + size: 26806 + timestamp: 1753334833814 +- conda: https://prefix.dev/robostack-staging/linux-64/ros-humble-tinyxml-vendor-0.8.3-np126py311hbc2a38a_13.conda + sha256: 5a27846578d5c9139931a2f5afb34b4a25a8f84478b05b0c5c64dfef17ef531a + md5: bc37e340a36e7ead6f4df9586c652cb5 + depends: + - python + - ros-humble-ros-workspace + - ros2-distro-mutex 0.7.* humble_* + - tinyxml + - libstdcxx >=13 + - libgcc >=13 + - __glibc >=2.17,<3.0.a0 + - numpy >=1.26.4,<2.0a0 + - python_abi 3.11.* *_cp311 + - tinyxml + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + license: BSD-3-Clause + size: 23608 + timestamp: 1753308431112 +- conda: https://prefix.dev/robostack-staging/linux-aarch64/ros-humble-tinyxml-vendor-0.8.3-np126py311hbdd918e_13.conda + sha256: 1dd2bfcef76bc4820c84152ea4070128bfce2fc18d29a7314482c9da850159c3 + md5: 14d62c47717a01b2bfd0712ab942a33b + depends: + - python + - ros-humble-ros-workspace + - ros2-distro-mutex 0.7.* humble_* + - tinyxml + - libstdcxx >=13 + - libgcc >=13 + - numpy >=1.26.4,<2.0a0 + - tinyxml + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + - python_abi 3.11.* *_cp311 + license: BSD-3-Clause + size: 23440 + timestamp: 1753308548715 +- conda: https://prefix.dev/robostack-staging/osx-arm64/ros-humble-tinyxml-vendor-0.8.3-np126py311h2a51a2c_13.conda + sha256: 12821834331bb21b679d171ffb9d13781f64a25e1bf0b8a28135a40d41f9e11b + md5: f68d8da98188cec9e2d2217660066f53 + depends: + - python + - ros-humble-ros-workspace + - ros2-distro-mutex 0.7.* humble_* + - tinyxml + - __osx >=11.0 + - libcxx >=18 + - python_abi 3.11.* *_cp311 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + - tinyxml + - numpy >=1.26.4,<2.0a0 + license: BSD-3-Clause + size: 23844 + timestamp: 1753308745147 +- conda: https://prefix.dev/robostack-staging/win-64/ros-humble-tinyxml-vendor-0.8.3-np126py311hd5de103_13.conda + sha256: 14d4b044e800aea2e67cb36dd3b4de1b4d32dd27d98b5ca84af879964ba2db5b + md5: 31a4b1b2d94817bef7eb38eb09b2f2f7 + depends: + - python + - ros-humble-ros-workspace + - ros2-distro-mutex 0.7.* humble_* + - tinyxml + - vc >=14.3,<15 + - vc14_runtime >=14.44.35208 + - ucrt >=10.0.20348.0 + - vc >=14.3,<15 + - vc14_runtime >=14.44.35208 + - ucrt >=10.0.20348.0 + - python_abi 3.11.* *_cp311 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + - tinyxml + - numpy >=1.26.4,<2.0a0 + license: BSD-3-Clause + size: 20536 + timestamp: 1753313028531 +- conda: https://prefix.dev/robostack-staging/linux-64/ros-humble-tinyxml2-vendor-0.7.6-np126py311hbc2a38a_13.conda + sha256: 2049f6feb0fba3e57dbcd9d9af26998bd1e34b4c31dafc8528fc7c54ae2e05dc + md5: 614116b683b685d829cbcc8903e0d62b + depends: + - python + - ros-humble-ros-workspace + - ros2-distro-mutex 0.7.* humble_* + - tinyxml2 + - libstdcxx >=13 + - libgcc >=13 + - __glibc >=2.17,<3.0.a0 + - libgcc >=13 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + - numpy >=1.26.4,<2.0a0 + - python_abi 3.11.* *_cp311 + - tinyxml2 >=11.0.0,<11.1.0a0 + license: BSD-3-Clause + size: 23816 + timestamp: 1753308436076 +- conda: https://prefix.dev/robostack-staging/linux-aarch64/ros-humble-tinyxml2-vendor-0.7.6-np126py311hbdd918e_13.conda + sha256: f4135e7725316f17c184ad7f5b5d2b479b4204aa6d07abb5c0dd775e056e9b8b + md5: 469b02e74affd162ff9bf550fa674fff + depends: + - python + - ros-humble-ros-workspace + - ros2-distro-mutex 0.7.* humble_* + - tinyxml2 + - libgcc >=13 + - libstdcxx >=13 + - libgcc >=13 + - tinyxml2 >=11.0.0,<11.1.0a0 + - numpy >=1.26.4,<2.0a0 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + - python_abi 3.11.* *_cp311 + license: BSD-3-Clause + size: 23583 + timestamp: 1753308555769 +- conda: https://prefix.dev/robostack-staging/osx-arm64/ros-humble-tinyxml2-vendor-0.7.6-np126py311h2a51a2c_13.conda + sha256: aa96b6a5badbb91a2f08bfeaf2adc2f91099f0ee7d0f59a978bed063f8699202 + md5: 19bd83de1c39c555172d2654ac04ad3c + depends: + - python + - ros-humble-ros-workspace + - ros2-distro-mutex 0.7.* humble_* + - tinyxml2 + - libcxx >=18 + - __osx >=11.0 + - numpy >=1.26.4,<2.0a0 + - python_abi 3.11.* *_cp311 + - tinyxml2 >=11.0.0,<11.1.0a0 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + license: BSD-3-Clause + size: 23999 + timestamp: 1753308752845 +- conda: https://prefix.dev/robostack-staging/win-64/ros-humble-tinyxml2-vendor-0.7.6-np126py311hd5de103_13.conda + sha256: 77e3b97427e269324ff1170cfa8f7817f8d2a4640a6c6e3616e7342d91dedd66 + md5: 470a7bc3b9b9445f2d6bd01764892b34 + depends: + - python + - ros-humble-ros-workspace + - ros2-distro-mutex 0.7.* humble_* + - tinyxml2 + - vc >=14.3,<15 + - vc14_runtime >=14.44.35208 + - ucrt >=10.0.20348.0 + - vc >=14.3,<15 + - vc14_runtime >=14.44.35208 + - ucrt >=10.0.20348.0 + - tinyxml2 >=11.0.0,<11.1.0a0 + - numpy >=1.26.4,<2.0a0 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + - python_abi 3.11.* *_cp311 + license: BSD-3-Clause + size: 20624 + timestamp: 1753313069218 +- conda: https://prefix.dev/robostack-staging/linux-64/ros-humble-tlsf-0.7.0-np126py311hbc2a38a_13.conda + sha256: 5e31a4e8fb07fc3df07586bc9a8d4ab652cc13ceb9037daeef39cdd70586a034 + md5: 1c8caada386c1329a25ce08887fadec6 + depends: + - python + - ros-humble-ament-cmake + - ros-humble-ros-workspace + - ros2-distro-mutex 0.7.* humble_* + - libstdcxx >=13 + - libgcc >=13 + - __glibc >=2.17,<3.0.a0 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + - numpy >=1.26.4,<2.0a0 + - python_abi 3.11.* *_cp311 + license: BSD-3-Clause + size: 32282 + timestamp: 1753309529131 +- conda: https://prefix.dev/robostack-staging/linux-aarch64/ros-humble-tlsf-0.7.0-np126py311hbdd918e_13.conda + sha256: cb8c34c5642935a63a1d881d6932939783b74e2a5562dc64ea458c3003c04310 + md5: 9cbbb8af4c89352741152be06ce20dde + depends: + - python + - ros-humble-ament-cmake + - ros-humble-ros-workspace + - ros2-distro-mutex 0.7.* humble_* + - libgcc >=13 + - libstdcxx >=13 + - libgcc >=13 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + - numpy >=1.26.4,<2.0a0 + - python_abi 3.11.* *_cp311 + license: BSD-3-Clause + size: 32084 + timestamp: 1753309386313 +- conda: https://prefix.dev/robostack-staging/linux-64/ros-humble-tlsf-cpp-0.13.0-np126py311hbc2a38a_13.conda + sha256: 6c8b904c6e794bd1f1a33ff87c13945cbe2295a35b0d8a7efd134e8ada6ba55f + md5: 4e1c09b0b733d2bceb5ba6691978b891 + depends: + - python + - ros-humble-ament-cmake + - ros-humble-rclcpp + - ros-humble-rmw + - ros-humble-ros-workspace + - ros-humble-std-msgs + - ros-humble-tlsf + - ros2-distro-mutex 0.7.* humble_* + - libstdcxx >=13 + - libgcc >=13 + - __glibc >=2.17,<3.0.a0 + - python_abi 3.11.* *_cp311 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + - numpy >=1.26.4,<2.0a0 + license: BSD-3-Clause + size: 179763 + timestamp: 1753313132350 +- conda: https://prefix.dev/robostack-staging/linux-aarch64/ros-humble-tlsf-cpp-0.13.0-np126py311hbdd918e_13.conda + sha256: 7ddcbbc3cce7461318f1f9e6174411e143026b7121de017c43e43e999e8217b9 + md5: d2781794798c8bca83c3efe84f7392bb + depends: + - python + - ros-humble-ament-cmake + - ros-humble-rclcpp + - ros-humble-rmw + - ros-humble-ros-workspace + - ros-humble-std-msgs + - ros-humble-tlsf + - ros2-distro-mutex 0.7.* humble_* + - libstdcxx >=13 + - libgcc >=13 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + - python_abi 3.11.* *_cp311 + - numpy >=1.26.4,<2.0a0 + license: BSD-3-Clause + size: 181326 + timestamp: 1753313370740 +- conda: https://prefix.dev/robostack-staging/linux-64/ros-humble-topic-monitor-0.20.5-np126py311hbc2a38a_13.conda + sha256: 97147565c663ca3689c7e8aac7e2b859d2533519db74bf9fce95651b8ea5adba + md5: 9473c15d5fdeae57cc942c84e19e56ca + depends: + - python + - ros-humble-launch + - ros-humble-launch-ros + - ros-humble-rclpy + - ros-humble-ros-workspace + - ros-humble-std-msgs + - ros2-distro-mutex 0.7.* humble_* + - libstdcxx >=13 + - libgcc >=13 + - __glibc >=2.17,<3.0.a0 + - libgcc >=13 + - numpy >=1.26.4,<2.0a0 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + - python_abi 3.11.* *_cp311 + license: BSD-3-Clause + size: 47436 + timestamp: 1753313480592 +- conda: https://prefix.dev/robostack-staging/linux-aarch64/ros-humble-topic-monitor-0.20.5-np126py311hbdd918e_13.conda + sha256: 62709998371166c8d6903ac5a455d2026d75547960f9bd82356f035c668f0f0b + md5: 63b0d80a35a3e6d5fb7c83e0c02c1ff3 + depends: + - python + - ros-humble-launch + - ros-humble-launch-ros + - ros-humble-rclpy + - ros-humble-ros-workspace + - ros-humble-std-msgs + - ros2-distro-mutex 0.7.* humble_* + - libgcc >=13 + - libstdcxx >=13 + - libgcc >=13 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + - numpy >=1.26.4,<2.0a0 + - python_abi 3.11.* *_cp311 + license: BSD-3-Clause + size: 47189 + timestamp: 1753313637359 +- conda: https://prefix.dev/robostack-staging/osx-arm64/ros-humble-topic-monitor-0.20.5-np126py311h2a51a2c_13.conda + sha256: f41afb076a00809bf1590ce3c522ec56e72c0d5f4f29e64fba56efc201f2442a + md5: 5f373db08a5f26a6ea242b809f8f4668 + depends: + - python + - ros-humble-launch + - ros-humble-launch-ros + - ros-humble-rclpy + - ros-humble-ros-workspace + - ros-humble-std-msgs + - ros2-distro-mutex 0.7.* humble_* + - libcxx >=18 + - __osx >=11.0 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + - python_abi 3.11.* *_cp311 + - numpy >=1.26.4,<2.0a0 + license: BSD-3-Clause + size: 47181 + timestamp: 1753313511995 +- conda: https://prefix.dev/robostack-staging/win-64/ros-humble-topic-monitor-0.20.5-np126py311hd5de103_13.conda + sha256: bfa3e1284b06c25e92e15dbeb16d303e7e5a4c1b69a74cba921c081695da58da + md5: c3635c344194d5df0ae5957c16f2d18d + depends: + - python + - ros-humble-launch + - ros-humble-launch-ros + - ros-humble-rclpy + - ros-humble-ros-workspace + - ros-humble-std-msgs + - ros2-distro-mutex 0.7.* humble_* + - vc >=14.3,<15 + - vc14_runtime >=14.44.35208 + - ucrt >=10.0.20348.0 + - vc >=14.3,<15 + - vc14_runtime >=14.44.35208 + - ucrt >=10.0.20348.0 + - python_abi 3.11.* *_cp311 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + - numpy >=1.26.4,<2.0a0 + license: BSD-3-Clause + size: 52916 + timestamp: 1753333243870 +- conda: https://prefix.dev/robostack-staging/linux-64/ros-humble-tracetools-4.1.1-np126py311hbc2a38a_13.conda + sha256: 93982131be249a36fddde88395345ccdc6d3aed356e13ffcb1a54bb43c1b8b4c + md5: de14d6283f08354ac73d99104822d0c3 + depends: + - python + - ros-humble-ros-workspace + - ros2-distro-mutex 0.7.* humble_* + - libgcc >=13 + - __glibc >=2.17,<3.0.a0 + - libstdcxx >=13 + - libgcc >=13 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + - numpy >=1.26.4,<2.0a0 + - python_abi 3.11.* *_cp311 + license: BSD-3-Clause + size: 40131 + timestamp: 1753309856987 +- conda: https://prefix.dev/robostack-staging/linux-aarch64/ros-humble-tracetools-4.1.1-np126py311hbdd918e_13.conda + sha256: 024ad33634c1f321d9f9973154f2354ae3dc8ccdf9e024f57caa11d34f3b200f + md5: ca6c6f2ffa43a584280a689bf0f7d9c8 + depends: + - python + - ros-humble-ros-workspace + - ros2-distro-mutex 0.7.* humble_* + - libgcc >=13 + - libstdcxx >=13 + - libgcc >=13 + - python_abi 3.11.* *_cp311 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + - numpy >=1.26.4,<2.0a0 + license: BSD-3-Clause + size: 41784 + timestamp: 1753309631034 +- conda: https://prefix.dev/robostack-staging/osx-arm64/ros-humble-tracetools-4.1.1-np126py311h2a51a2c_13.conda + sha256: 441fdd2f9a03d346fc816a05b9d9d293e28c6d200e4dc7de4f4263f872a706b9 + md5: 981283f9101e0428444a28066e91d02c + depends: + - python + - ros-humble-ros-workspace + - ros2-distro-mutex 0.7.* humble_* + - __osx >=11.0 + - libcxx >=18 + - numpy >=1.26.4,<2.0a0 + - python_abi 3.11.* *_cp311 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + license: BSD-3-Clause + size: 38084 + timestamp: 1753310333354 +- conda: https://prefix.dev/robostack-staging/win-64/ros-humble-tracetools-4.1.1-np126py311hd5de103_13.conda + sha256: c3400a8b4f1b953d5a5b04bb54822b1317619310221b7957639b65073610bf26 + md5: c78bb3e7ae6e9b4a8de748d4c5f1614a + depends: + - python + - ros-humble-ros-workspace + - ros2-distro-mutex 0.7.* humble_* + - vc >=14.3,<15 + - vc14_runtime >=14.44.35208 + - ucrt >=10.0.20348.0 + - vc >=14.3,<15 + - vc14_runtime >=14.44.35208 + - ucrt >=10.0.20348.0 + - python_abi 3.11.* *_cp311 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + - numpy >=1.26.4,<2.0a0 + license: BSD-3-Clause + size: 30187 + timestamp: 1753318816812 +- conda: https://prefix.dev/robostack-staging/linux-64/ros-humble-trajectory-msgs-4.9.0-np126py311hbc2a38a_13.conda + sha256: 14e13dca187a2f47404d33e6b896b31b60bf103f53b10c23b072de009952e332 + md5: 52a5174368e4fe6caf04f0bd9eda26ce + depends: + - python + - ros-humble-builtin-interfaces + - ros-humble-geometry-msgs + - ros-humble-ros-workspace + - ros-humble-rosidl-default-runtime + - ros-humble-std-msgs + - ros2-distro-mutex 0.7.* humble_* + - __glibc >=2.17,<3.0.a0 + - libgcc >=13 + - libstdcxx >=13 + - libgcc >=13 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + - python_abi 3.11.* *_cp311 + - numpy >=1.26.4,<2.0a0 + license: BSD-3-Clause + size: 133896 + timestamp: 1753312231308 +- conda: https://prefix.dev/robostack-staging/linux-aarch64/ros-humble-trajectory-msgs-4.9.0-np126py311hbdd918e_13.conda + sha256: 9587c79a9d7da9dff4640441e0d42249fd7ae770daec67b684826c78b1d0263d + md5: c9fc9c181242141e92489a12f2719e9a + depends: + - python + - ros-humble-builtin-interfaces + - ros-humble-geometry-msgs + - ros-humble-ros-workspace + - ros-humble-rosidl-default-runtime + - ros-humble-std-msgs + - ros2-distro-mutex 0.7.* humble_* + - libgcc >=13 + - libstdcxx >=13 + - libgcc >=13 + - python_abi 3.11.* *_cp311 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + - numpy >=1.26.4,<2.0a0 + license: BSD-3-Clause + size: 137969 + timestamp: 1753312649758 +- conda: https://prefix.dev/robostack-staging/osx-arm64/ros-humble-trajectory-msgs-4.9.0-np126py311h2a51a2c_13.conda + sha256: a960902e103786ba0aae473dd2068e1da7bb79404055c2fa58b8877de1c2bb93 + md5: 80cdd54f2e3b8a9c072210fa7a440611 + depends: + - python + - ros-humble-builtin-interfaces + - ros-humble-geometry-msgs + - ros-humble-ros-workspace + - ros-humble-rosidl-default-runtime + - ros-humble-std-msgs + - ros2-distro-mutex 0.7.* humble_* + - libcxx >=18 + - __osx >=11.0 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + - numpy >=1.26.4,<2.0a0 + - python_abi 3.11.* *_cp311 + license: BSD-3-Clause + size: 120012 + timestamp: 1753311908161 +- conda: https://prefix.dev/robostack-staging/win-64/ros-humble-trajectory-msgs-4.9.0-np126py311hd5de103_13.conda + sha256: 88a5fd2dafa236a18f6bb8577d5e9ddf6e0725ba32dabb933b6a82aa2d766f7c + md5: e8f6abc89e6e029ce87cf069b19bc1a6 + depends: + - python + - ros-humble-builtin-interfaces + - ros-humble-geometry-msgs + - ros-humble-ros-workspace + - ros-humble-rosidl-default-runtime + - ros-humble-std-msgs + - ros2-distro-mutex 0.7.* humble_* + - vc >=14.3,<15 + - vc14_runtime >=14.44.35208 + - ucrt >=10.0.20348.0 + - vc >=14.3,<15 + - vc14_runtime >=14.44.35208 + - ucrt >=10.0.20348.0 + - numpy >=1.26.4,<2.0a0 + - python_abi 3.11.* *_cp311 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + license: BSD-3-Clause + size: 128756 + timestamp: 1753326838726 +- conda: https://prefix.dev/robostack-staging/linux-64/ros-humble-turtlesim-1.4.2-np126py311hbc2a38a_13.conda + sha256: 2861cdde048d88ab081bf226cfd68f53609a0704d2535baacc71530ab5d58d79 + md5: 01bf42b40fd87cadb5fa1a4bce98c26e + depends: + - python + - qt-main + - ros-humble-ament-index-cpp + - ros-humble-geometry-msgs + - ros-humble-rclcpp + - ros-humble-rclcpp-action + - ros-humble-ros-workspace + - ros-humble-rosidl-default-runtime + - ros-humble-std-msgs + - ros-humble-std-srvs + - ros2-distro-mutex 0.7.* humble_* + - xorg-libx11 + - xorg-libxext + - libgcc >=13 + - __glibc >=2.17,<3.0.a0 + - libstdcxx >=13 + - libgcc >=13 + - libopengl >=1.7.0,<2.0a0 + - qt-main >=5.15.15,<5.16.0a0 + - python_abi 3.11.* *_cp311 + - numpy >=1.26.4,<2.0a0 + - libgl >=1.7.0,<2.0a0 + - xorg-libxext >=1.3.6,<2.0a0 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + - xorg-libx11 >=1.8.12,<2.0a0 + license: BSD-3-Clause + size: 694150 + timestamp: 1753313541543 +- conda: https://prefix.dev/robostack-staging/linux-aarch64/ros-humble-turtlesim-1.4.2-np126py311hbdd918e_13.conda + sha256: 837a2e05ff015aef8904d20e80e6e723e7f613a3a85a02bff61040121dcc1165 + md5: 22747ad9315b302878ab59918c337c6f + depends: + - python + - qt-main + - ros-humble-ament-index-cpp + - ros-humble-geometry-msgs + - ros-humble-rclcpp + - ros-humble-rclcpp-action + - ros-humble-ros-workspace + - ros-humble-rosidl-default-runtime + - ros-humble-std-msgs + - ros-humble-std-srvs + - ros2-distro-mutex 0.7.* humble_* + - xorg-libx11 + - xorg-libxext + - libgcc >=13 + - libstdcxx >=13 + - libgcc >=13 + - qt-main >=5.15.15,<5.16.0a0 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + - numpy >=1.26.4,<2.0a0 + - libgl >=1.7.0,<2.0a0 + - xorg-libxext >=1.3.6,<2.0a0 + - xorg-libx11 >=1.8.12,<2.0a0 + - python_abi 3.11.* *_cp311 + - libopengl >=1.7.0,<2.0a0 + license: BSD-3-Clause + size: 714748 + timestamp: 1753313707025 +- conda: https://prefix.dev/robostack-staging/osx-arm64/ros-humble-turtlesim-1.4.2-np126py311h2a51a2c_13.conda + sha256: 88acaff887366ae4b2ba12dc68ee493c47ae1e146210dfe93ba2af44a4644eda + md5: 901f27a224a37d75d1ade5aa2ae2e90d + depends: + - python + - qt-main + - ros-humble-ament-index-cpp + - ros-humble-geometry-msgs + - ros-humble-rclcpp + - ros-humble-rclcpp-action + - ros-humble-ros-workspace + - ros-humble-rosidl-default-runtime + - ros-humble-std-msgs + - ros-humble-std-srvs + - ros2-distro-mutex 0.7.* humble_* + - xorg-libx11 + - xorg-libxext + - __osx >=11.0 + - libcxx >=18 + - xorg-libx11 >=1.8.12,<2.0a0 + - xorg-libxext >=1.3.6,<2.0a0 + - qt-main >=5.15.15,<5.16.0a0 + - numpy >=1.26.4,<2.0a0 + - python_abi 3.11.* *_cp311 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + license: BSD-3-Clause + size: 541119 + timestamp: 1753313455935 +- conda: https://prefix.dev/robostack-staging/win-64/ros-humble-turtlesim-1.4.2-np126py311hd5de103_13.conda + sha256: 174a7a68152747e8afc59858af2992271f6ffca6aa0a0b72b530534ccde8cc49 + md5: d040e8800827f7ce14a627ddf6ca985f + depends: + - python + - qt-main + - ros-humble-ament-index-cpp + - ros-humble-geometry-msgs + - ros-humble-rclcpp + - ros-humble-rclcpp-action + - ros-humble-ros-workspace + - ros-humble-rosidl-default-runtime + - ros-humble-std-msgs + - ros-humble-std-srvs + - ros2-distro-mutex 0.7.* humble_* + - vc >=14.3,<15 + - vc14_runtime >=14.44.35208 + - ucrt >=10.0.20348.0 + - vc >=14.3,<15 + - vc14_runtime >=14.44.35208 + - ucrt >=10.0.20348.0 + - python_abi 3.11.* *_cp311 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + - qt-main >=5.15.15,<5.16.0a0 + - numpy >=1.26.4,<2.0a0 + license: BSD-3-Clause + size: 463322 + timestamp: 1753333093378 +- conda: https://prefix.dev/robostack-staging/linux-64/ros-humble-uncrustify-vendor-2.0.2-np126py311hbc2a38a_13.conda + sha256: dc2f0bdc5febb036bf4398cbf94b16b865539a71fcb95579d6c19ce672855a7c + md5: d774a323a1fcdfa8bc0186754f044549 + depends: + - python + - ros-humble-ros-workspace + - ros2-distro-mutex 0.7.* humble_* + - uncrustify + - libgcc >=13 + - __glibc >=2.17,<3.0.a0 + - libstdcxx >=13 + - libgcc >=13 + - numpy >=1.26.4,<2.0a0 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + - uncrustify >=0.81.0,<0.82.0a0 + - python_abi 3.11.* *_cp311 + license: BSD-3-Clause + size: 22655 + timestamp: 1753308422935 +- conda: https://prefix.dev/robostack-staging/linux-aarch64/ros-humble-uncrustify-vendor-2.0.2-np126py311hbdd918e_13.conda + sha256: a81f19e10599cd5fd1e3ea13ad7465debdb98f5f3d05248423217c387e73dede + md5: f97a548e7c65c7c585fd2cee9584e192 + depends: + - python + - ros-humble-ros-workspace + - ros2-distro-mutex 0.7.* humble_* + - uncrustify + - libstdcxx >=13 + - libgcc >=13 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + - numpy >=1.26.4,<2.0a0 + - python_abi 3.11.* *_cp311 + - uncrustify >=0.81.0,<0.82.0a0 + license: BSD-3-Clause + size: 22452 + timestamp: 1753308549139 +- conda: https://prefix.dev/robostack-staging/osx-arm64/ros-humble-uncrustify-vendor-2.0.2-np126py311h2a51a2c_13.conda + sha256: e8fd1d4e7718e4538fd2dd62cf7067796ed4e87ba37c64637b1e1f1fd94a2479 + md5: 71a468de409d3db6523300c8eaaba03e + depends: + - python + - ros-humble-ros-workspace + - ros2-distro-mutex 0.7.* humble_* + - uncrustify + - libcxx >=18 + - __osx >=11.0 + - python_abi 3.11.* *_cp311 + - uncrustify >=0.81.0,<0.82.0a0 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + - numpy >=1.26.4,<2.0a0 + license: BSD-3-Clause + size: 22844 + timestamp: 1753308864397 +- conda: https://prefix.dev/robostack-staging/win-64/ros-humble-uncrustify-vendor-2.0.2-np126py311hd5de103_13.conda + sha256: 800061ce308d44a90fff00be9f4cb2fdc5d2753e725676e652f76035ca3ec49b + md5: 3ea9619b6183dcd4e25d15582ad5eb0c + depends: + - python + - ros-humble-ros-workspace + - ros2-distro-mutex 0.7.* humble_* + - uncrustify + - vc >=14.3,<15 + - vc14_runtime >=14.44.35208 + - ucrt >=10.0.20348.0 + - vc >=14.3,<15 + - vc14_runtime >=14.44.35208 + - ucrt >=10.0.20348.0 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + - python_abi 3.11.* *_cp311 + - numpy >=1.26.4,<2.0a0 + - uncrustify >=0.81.0,<0.82.0a0 + license: BSD-3-Clause + size: 19415 + timestamp: 1753312773099 +- conda: https://prefix.dev/robostack-staging/linux-64/ros-humble-unique-identifier-msgs-2.2.1-np126py311hbc2a38a_13.conda + sha256: ccc13d84deee0f7edeaef59899cf1c5fe543410ff733159c696a713198d76f6a + md5: e3895d655cd3d772f28d1507fc1a5b6c + depends: + - python + - ros-humble-ros-workspace + - ros-humble-rosidl-default-runtime + - ros2-distro-mutex 0.7.* humble_* + - libstdcxx >=13 + - libgcc >=13 + - __glibc >=2.17,<3.0.a0 + - python_abi 3.11.* *_cp311 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + - numpy >=1.26.4,<2.0a0 + license: BSD-3-Clause + size: 69952 + timestamp: 1753310559029 +- conda: https://prefix.dev/robostack-staging/linux-aarch64/ros-humble-unique-identifier-msgs-2.2.1-np126py311hbdd918e_13.conda + sha256: d840719bbbb81657941d35bb7dfe3ad80fe5b9458fb0604f1ca516b45d485af7 + md5: ae04fe294ed947aee59e7c5497a19ea1 + depends: + - python + - ros-humble-ros-workspace + - ros-humble-rosidl-default-runtime + - ros2-distro-mutex 0.7.* humble_* + - libstdcxx >=13 + - libgcc >=13 + - python_abi 3.11.* *_cp311 + - numpy >=1.26.4,<2.0a0 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + license: BSD-3-Clause + size: 73096 + timestamp: 1753312264532 +- conda: https://prefix.dev/robostack-staging/osx-arm64/ros-humble-unique-identifier-msgs-2.2.1-np126py311h2a51a2c_13.conda + sha256: 1957c505e0e8cf2a830026b1bc163c49e98246b1c66704f9a7ae32191d41484b + md5: 89ea54c37d04bab0d8b6b214e72a7daa + depends: + - python + - ros-humble-ros-workspace + - ros-humble-rosidl-default-runtime + - ros2-distro-mutex 0.7.* humble_* + - libcxx >=18 + - __osx >=11.0 + - python_abi 3.11.* *_cp311 + - numpy >=1.26.4,<2.0a0 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + license: BSD-3-Clause + size: 67171 + timestamp: 1753311129210 +- conda: https://prefix.dev/robostack-staging/win-64/ros-humble-unique-identifier-msgs-2.2.1-np126py311hd5de103_13.conda + sha256: f5949af08a1bd166db0c51f69b44aad592be1776958235dcb35cd69c5b5efdba + md5: a17629424099cba28fbc63a963d0c936 + depends: + - python + - ros-humble-ros-workspace + - ros-humble-rosidl-default-runtime + - ros2-distro-mutex 0.7.* humble_* + - vc >=14.3,<15 + - vc14_runtime >=14.44.35208 + - ucrt >=10.0.20348.0 + - vc >=14.3,<15 + - vc14_runtime >=14.44.35208 + - ucrt >=10.0.20348.0 + - python_abi 3.11.* *_cp311 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + - numpy >=1.26.4,<2.0a0 + license: BSD-3-Clause + size: 76144 + timestamp: 1753322922951 +- conda: https://prefix.dev/robostack-staging/linux-64/ros-humble-urdf-2.6.1-np126py311hbc2a38a_13.conda + sha256: 843d3686f323377ab6a99efe42358e77b6baff053961b6d0c4807cf67e91348d + md5: aae8a8a9edca5824b06341ae6736fb8c + depends: + - python + - ros-humble-pluginlib + - ros-humble-ros-workspace + - ros-humble-tinyxml2-vendor + - ros-humble-urdf-parser-plugin + - ros-humble-urdfdom + - ros-humble-urdfdom-headers + - ros2-distro-mutex 0.7.* humble_* + - libgcc >=13 + - __glibc >=2.17,<3.0.a0 + - libstdcxx >=13 + - libgcc >=13 + - python_abi 3.11.* *_cp311 + - numpy >=1.26.4,<2.0a0 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + license: BSD-3-Clause + size: 149991 + timestamp: 1753310221994 +- conda: https://prefix.dev/robostack-staging/linux-aarch64/ros-humble-urdf-2.6.1-np126py311hbdd918e_13.conda + sha256: 22e725adbe9b9c6bcd747a6b7f22ae23199aef7714c01022327b3217ff0dd2af + md5: c08b9bdb81f328765614b5eb93237133 + depends: + - python + - ros-humble-pluginlib + - ros-humble-ros-workspace + - ros-humble-tinyxml2-vendor + - ros-humble-urdf-parser-plugin + - ros-humble-urdfdom + - ros-humble-urdfdom-headers + - ros2-distro-mutex 0.7.* humble_* + - libstdcxx >=13 + - libgcc >=13 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + - numpy >=1.26.4,<2.0a0 + - python_abi 3.11.* *_cp311 + license: BSD-3-Clause + size: 151762 + timestamp: 1753311929386 +- conda: https://prefix.dev/robostack-staging/osx-arm64/ros-humble-urdf-2.6.1-np126py311h2a51a2c_13.conda + sha256: a488adfa02a5064958fa3b5328426faf76f68fcefa595bca0bec37b7ceb86597 + md5: 78741dec19409a347216d3db77b40a05 + depends: + - python + - ros-humble-pluginlib + - ros-humble-ros-workspace + - ros-humble-tinyxml2-vendor + - ros-humble-urdf-parser-plugin + - ros-humble-urdfdom + - ros-humble-urdfdom-headers + - ros2-distro-mutex 0.7.* humble_* + - __osx >=11.0 + - libcxx >=18 + - python_abi 3.11.* *_cp311 + - numpy >=1.26.4,<2.0a0 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + license: BSD-3-Clause + size: 127289 + timestamp: 1753310796803 +- conda: https://prefix.dev/robostack-staging/win-64/ros-humble-urdf-2.6.1-np126py311hd5de103_13.conda + sha256: 30fd83cf2c0b3639bdbf3e9d338b86e0c51e38ebbbdd9765fe6f4b4071fa19bc + md5: 7285c8592f2324e4902c318f89d040a1 + depends: + - python + - ros-humble-pluginlib + - ros-humble-ros-workspace + - ros-humble-tinyxml2-vendor + - ros-humble-urdf-parser-plugin + - ros-humble-urdfdom + - ros-humble-urdfdom-headers + - ros2-distro-mutex 0.7.* humble_* + - vc >=14.3,<15 + - vc14_runtime >=14.44.35208 + - ucrt >=10.0.20348.0 + - vc >=14.3,<15 + - vc14_runtime >=14.44.35208 + - ucrt >=10.0.20348.0 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + - python_abi 3.11.* *_cp311 + - numpy >=1.26.4,<2.0a0 + license: BSD-3-Clause + size: 119805 + timestamp: 1753321672708 +- conda: https://prefix.dev/robostack-staging/linux-64/ros-humble-urdf-parser-plugin-2.6.1-np126py311hbc2a38a_13.conda + sha256: 48453a2f3c81ae8bd4c881081f4de316e87392261e3107e3edf15bc79dd16369 + md5: 2a0d225ca1a590669972f4cbf60da698 + depends: + - python + - ros-humble-ros-workspace + - ros-humble-urdfdom-headers + - ros2-distro-mutex 0.7.* humble_* + - libstdcxx >=13 + - libgcc >=13 + - __glibc >=2.17,<3.0.a0 + - numpy >=1.26.4,<2.0a0 + - python_abi 3.11.* *_cp311 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + license: BSD-3-Clause + size: 31353 + timestamp: 1753309867407 +- conda: https://prefix.dev/robostack-staging/linux-aarch64/ros-humble-urdf-parser-plugin-2.6.1-np126py311hbdd918e_13.conda + sha256: abf570a472d60864612e1469e20335c52ccf5deb9cff3869893008e9aa3f8545 + md5: 7b2fe6a6776e67ecf371efa059bd0e3c + depends: + - python + - ros-humble-ros-workspace + - ros-humble-urdfdom-headers + - ros2-distro-mutex 0.7.* humble_* + - libstdcxx >=13 + - libgcc >=13 + - numpy >=1.26.4,<2.0a0 + - python_abi 3.11.* *_cp311 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + license: BSD-3-Clause + size: 31206 + timestamp: 1753309641303 +- conda: https://prefix.dev/robostack-staging/osx-arm64/ros-humble-urdf-parser-plugin-2.6.1-np126py311h2a51a2c_13.conda + sha256: 5e51f785b63f47843b5e9b78ec0bee9a06edb5e638fe1508d01db5028e08efc8 + md5: ad4e8c4c9628fa8f412207f4dfcf3a3c + depends: + - python + - ros-humble-ros-workspace + - ros-humble-urdfdom-headers + - ros2-distro-mutex 0.7.* humble_* + - __osx >=11.0 + - libcxx >=18 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + - numpy >=1.26.4,<2.0a0 + - python_abi 3.11.* *_cp311 + license: BSD-3-Clause + size: 31579 + timestamp: 1753310349556 +- conda: https://prefix.dev/robostack-staging/win-64/ros-humble-urdf-parser-plugin-2.6.1-np126py311hd5de103_13.conda + sha256: a79d56288abb36ac7048fc8a6ae318bd9f83719923a2941c36f4485047b3aad8 + md5: b388d041786ba2fe6ac8d39a0deaa5d4 + depends: + - python + - ros-humble-ros-workspace + - ros-humble-urdfdom-headers + - ros2-distro-mutex 0.7.* humble_* + - vc >=14.3,<15 + - vc14_runtime >=14.44.35208 + - ucrt >=10.0.20348.0 + - vc >=14.3,<15 + - vc14_runtime >=14.44.35208 + - ucrt >=10.0.20348.0 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + - numpy >=1.26.4,<2.0a0 + - python_abi 3.11.* *_cp311 + license: BSD-3-Clause + size: 28042 + timestamp: 1753318899230 +- conda: https://prefix.dev/robostack-staging/linux-64/ros-humble-urdfdom-4.0.1-py311h82375c7_13.conda + sha256: 5695170cbc1e70227b7d36a59896bc00f9f9979752773d5925bfbc44cf0d2bb2 + md5: b96b7e6f93c49e51409c3de0c7f6985e + depends: + - console_bridge + - python + - ros-humble-console-bridge-vendor + - ros-humble-ros-workspace + - ros-humble-tinyxml-vendor + - ros-humble-urdfdom-headers + - ros2-distro-mutex 0.7.* humble_* + - tinyxml + - urdfdom >=4.0.1,<4.1.0a0 + - tinyxml + - python_abi 3.11.* *_cp311 + - console_bridge >=1.0.2,<1.1.0a0 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + license: BSD-3-Clause + size: 8146 + timestamp: 1753309944502 +- conda: https://prefix.dev/robostack-staging/linux-aarch64/ros-humble-urdfdom-4.0.1-py311h7a77afc_13.conda + sha256: 89925ec1874a0b3a1cdcf1532d56633250ac24a619746426f42dfeaab3862d2c + md5: 0c4306262876e7a2f4df88b8c7bf18b9 + depends: + - console_bridge + - python + - ros-humble-console-bridge-vendor + - ros-humble-ros-workspace + - ros-humble-tinyxml-vendor + - ros-humble-urdfdom-headers + - ros2-distro-mutex 0.7.* humble_* + - tinyxml + - urdfdom >=4.0.1,<4.1.0a0 + - tinyxml + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + - python_abi 3.11.* *_cp311 + - console_bridge >=1.0.2,<1.1.0a0 + license: BSD-3-Clause + size: 7876 + timestamp: 1753309730734 +- conda: https://prefix.dev/robostack-staging/osx-arm64/ros-humble-urdfdom-4.0.1-py311h43e502b_13.conda + sha256: f8bcd684e97bb7fbe81bf7e949c11a1c5e836b7dbf2fd709625b338080b0dbfa + md5: 328440d48ca1e8765592634052dabb00 + depends: + - console_bridge + - python + - ros-humble-console-bridge-vendor + - ros-humble-ros-workspace + - ros-humble-tinyxml-vendor + - ros-humble-urdfdom-headers + - ros2-distro-mutex 0.7.* humble_* + - tinyxml + - urdfdom >=4.0.1,<4.1.0a0 + - python_abi 3.11.* *_cp311 + - tinyxml + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + - console_bridge >=1.0.2,<1.1.0a0 + license: BSD-3-Clause + size: 7083 + timestamp: 1753310461954 +- conda: https://prefix.dev/robostack-staging/win-64/ros-humble-urdfdom-4.0.1-py311hb04609a_13.conda + sha256: 9429f6d89e64e8bccea13b707cc2b87757000b84d3c648a05b993e7239f078a8 + md5: 498848a3466c324e3d18942a02e3553d + depends: + - console_bridge + - python + - ros-humble-console-bridge-vendor + - ros-humble-ros-workspace + - ros-humble-tinyxml-vendor + - ros-humble-urdfdom-headers + - ros2-distro-mutex 0.7.* humble_* + - tinyxml + - urdfdom >=4.0.1,<4.1.0a0 + - tinyxml + - python_abi 3.11.* *_cp311 + - console_bridge >=1.0.2,<1.1.0a0 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + license: BSD-3-Clause + size: 7487 + timestamp: 1753319624335 +- conda: https://prefix.dev/robostack-staging/linux-64/ros-humble-urdfdom-headers-1.0.6-py311h82375c7_13.conda + sha256: 94e92717f27b9e3a98daf87d9f327b3b751a6773bfadf73a638798912c7aec6f + md5: e7323a7daee75ed5a03a1de849b48434 + depends: + - python + - ros-humble-ros-workspace + - ros2-distro-mutex 0.7.* humble_* + - urdfdom_headers >=1.0.6,<1.1.0a0 + - python_abi 3.11.* *_cp311 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + license: BSD-3-Clause + size: 7423 + timestamp: 1753307891723 +- conda: https://prefix.dev/robostack-staging/linux-aarch64/ros-humble-urdfdom-headers-1.0.6-py311h7a77afc_13.conda + sha256: e2471a14e211e51e2333dfa7e2725a792f701a47fe83ec50a0083acb68492909 + md5: 391c102cbd76a8d8911e2a9a19cef69d + depends: + - python + - ros-humble-ros-workspace + - ros2-distro-mutex 0.7.* humble_* + - urdfdom_headers >=1.0.6,<1.1.0a0 + - python_abi 3.11.* *_cp311 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + license: BSD-3-Clause + size: 7127 + timestamp: 1753308069242 +- conda: https://prefix.dev/robostack-staging/osx-arm64/ros-humble-urdfdom-headers-1.0.6-py311h43e502b_13.conda + sha256: bbcf9550688b9409a228bce41a4d948f6a8de2aaed66fc65b3e1a800ea5c56fa + md5: 801a059950aca95872b4526a349e24c3 + depends: + - python + - ros-humble-ros-workspace + - ros2-distro-mutex 0.7.* humble_* + - urdfdom_headers >=1.0.6,<1.1.0a0 + - python_abi 3.11.* *_cp311 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + license: BSD-3-Clause + size: 6316 + timestamp: 1753308082417 +- conda: https://prefix.dev/robostack-staging/win-64/ros-humble-urdfdom-headers-1.0.6-py311hb04609a_13.conda + sha256: fefdca43cf42bdeffcd4e266ca8909b300c88523562b23b54764daa939301e68 + md5: 38276d1aec02bffd11c058fe1ec8e1c4 + depends: + - python + - ros-humble-ros-workspace + - ros2-distro-mutex 0.7.* humble_* + - urdfdom_headers >=1.0.6,<1.1.0a0 + - python_abi 3.11.* *_cp311 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + license: BSD-3-Clause + size: 6617 + timestamp: 1753308588980 +- conda: https://prefix.dev/robostack-staging/linux-64/ros-humble-visualization-msgs-4.9.0-np126py311hbc2a38a_13.conda + sha256: 73d6a82969fb72ce10f3e31d3c2213f34e4732b79598bd9c6f852530b9ed902c + md5: 5030da524b6907e925c0a085109786f6 + depends: + - python + - ros-humble-builtin-interfaces + - ros-humble-geometry-msgs + - ros-humble-ros-workspace + - ros-humble-rosidl-default-runtime + - ros-humble-sensor-msgs + - ros-humble-std-msgs + - ros2-distro-mutex 0.7.* humble_* + - libgcc >=13 + - libstdcxx >=13 + - libgcc >=13 + - __glibc >=2.17,<3.0.a0 + - python_abi 3.11.* *_cp311 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + - numpy >=1.26.4,<2.0a0 + license: BSD-3-Clause + size: 299504 + timestamp: 1753312383662 +- conda: https://prefix.dev/robostack-staging/linux-aarch64/ros-humble-visualization-msgs-4.9.0-np126py311hbdd918e_13.conda + sha256: 9122538fb0756c55a2fb1cd69048b258bbdf35c6f6a9f57f4d9f97d11591eb58 + md5: b1c998e4de3a31f86a89cedc593e3acf + depends: + - python + - ros-humble-builtin-interfaces + - ros-humble-geometry-msgs + - ros-humble-ros-workspace + - ros-humble-rosidl-default-runtime + - ros-humble-sensor-msgs + - ros-humble-std-msgs + - ros2-distro-mutex 0.7.* humble_* + - libgcc >=13 + - libstdcxx >=13 + - libgcc >=13 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + - python_abi 3.11.* *_cp311 + - numpy >=1.26.4,<2.0a0 + license: BSD-3-Clause + size: 303233 + timestamp: 1753312781113 +- conda: https://prefix.dev/robostack-staging/osx-arm64/ros-humble-visualization-msgs-4.9.0-np126py311h2a51a2c_13.conda + sha256: 696df2ede6cc7b898842664a8b49d922e29def7cb9bf45d77c24cc9fdaa9e6af + md5: c248e38bc8d6d3c7722cf11b595bf7c5 + depends: + - python + - ros-humble-builtin-interfaces + - ros-humble-geometry-msgs + - ros-humble-ros-workspace + - ros-humble-rosidl-default-runtime + - ros-humble-sensor-msgs + - ros-humble-std-msgs + - ros2-distro-mutex 0.7.* humble_* + - libcxx >=18 + - __osx >=11.0 + - numpy >=1.26.4,<2.0a0 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + - python_abi 3.11.* *_cp311 + license: BSD-3-Clause + size: 256629 + timestamp: 1753312134842 +- conda: https://prefix.dev/robostack-staging/win-64/ros-humble-visualization-msgs-4.9.0-np126py311hd5de103_13.conda + sha256: e3ff8d4f4cb2e6a2ff927000bbbc53a5dde80c03f23fd8778cd29a514c622c38 + md5: 7975a3c8d4d41017a621e1fbf5e780ac + depends: + - python + - ros-humble-builtin-interfaces + - ros-humble-geometry-msgs + - ros-humble-ros-workspace + - ros-humble-rosidl-default-runtime + - ros-humble-sensor-msgs + - ros-humble-std-msgs + - ros2-distro-mutex 0.7.* humble_* + - vc >=14.3,<15 + - vc14_runtime >=14.44.35208 + - ucrt >=10.0.20348.0 + - vc >=14.3,<15 + - vc14_runtime >=14.44.35208 + - ucrt >=10.0.20348.0 + - python_abi 3.11.* *_cp311 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + - numpy >=1.26.4,<2.0a0 + license: BSD-3-Clause + size: 269268 + timestamp: 1753327814298 +- conda: https://prefix.dev/robostack-staging/linux-64/ros-humble-yaml-cpp-vendor-8.0.2-np126py311hbc2a38a_13.conda + sha256: 5a15a116e4193a8e138c61dc81592b51320b81c72238c0df0b22a0a9f92288cd + md5: 28f6317eca6776238dec2da2f14878fe + depends: + - python + - ros-humble-ros-workspace + - ros2-distro-mutex 0.7.* humble_* + - yaml-cpp + - libgcc >=13 + - __glibc >=2.17,<3.0.a0 + - libstdcxx >=13 + - libgcc >=13 + - numpy >=1.26.4,<2.0a0 + - yaml-cpp >=0.8.0,<0.9.0a0 + - python_abi 3.11.* *_cp311 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + license: BSD-3-Clause + size: 22922 + timestamp: 1753308414593 +- conda: https://prefix.dev/robostack-staging/linux-aarch64/ros-humble-yaml-cpp-vendor-8.0.2-np126py311hbdd918e_13.conda + sha256: ac7e235d7f4399227743979946033ccf0d410d371c67a26716dac14de41bf6ed + md5: 06787ddf156e2ab2f4192dd1390047a1 + depends: + - python + - ros-humble-ros-workspace + - ros2-distro-mutex 0.7.* humble_* + - yaml-cpp + - libgcc >=13 + - libstdcxx >=13 + - libgcc >=13 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + - numpy >=1.26.4,<2.0a0 + - yaml-cpp >=0.8.0,<0.9.0a0 + - python_abi 3.11.* *_cp311 + license: BSD-3-Clause + size: 22778 + timestamp: 1753308529103 +- conda: https://prefix.dev/robostack-staging/osx-arm64/ros-humble-yaml-cpp-vendor-8.0.2-np126py311h2a51a2c_13.conda + sha256: ee9d2fe80daca24178dcc99b7c065739b2ae8f54e88b73740918cf5b2158596d + md5: d9564fabfcb79f8dfe8a266f299226a8 + depends: + - python + - ros-humble-ros-workspace + - ros2-distro-mutex 0.7.* humble_* + - yaml-cpp + - libcxx >=18 + - __osx >=11.0 + - python_abi 3.11.* *_cp311 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + - yaml-cpp >=0.8.0,<0.9.0a0 + - numpy >=1.26.4,<2.0a0 + license: BSD-3-Clause + size: 23098 + timestamp: 1753308720544 +- conda: https://prefix.dev/robostack-staging/win-64/ros-humble-yaml-cpp-vendor-8.0.2-np126py311hd5de103_13.conda + sha256: 407e30ac621d0cb361087db1523c3ea952328b9aed8dc882c7d02a601be09378 + md5: 9454fd6de653c424497e606200fa84ba + depends: + - python + - ros-humble-ros-workspace + - ros2-distro-mutex 0.7.* humble_* + - yaml-cpp + - vc >=14.3,<15 + - vc14_runtime >=14.44.35208 + - ucrt >=10.0.20348.0 + - vc >=14.3,<15 + - vc14_runtime >=14.44.35208 + - ucrt >=10.0.20348.0 + - numpy >=1.26.4,<2.0a0 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + - python_abi 3.11.* *_cp311 + - yaml-cpp >=0.8.0,<0.9.0a0 + license: BSD-3-Clause + size: 19736 + timestamp: 1753312936054 +- conda: https://prefix.dev/robostack-staging/linux-64/ros-humble-zstd-vendor-0.15.14-np126py311hbc2a38a_13.conda + sha256: 98bbb9736328cdf5a7a85b467dcaa10ad9a31c7c950da615bee53d2a43251d3c + md5: ed93ac1e048d635047829a83a3d462aa + depends: + - python + - ros-humble-ros-workspace + - ros2-distro-mutex 0.7.* humble_* + - zstd + - libstdcxx >=13 + - libgcc >=13 + - __glibc >=2.17,<3.0.a0 + - python_abi 3.11.* *_cp311 + - zstd >=1.5.7,<1.6.0a0 + - numpy >=1.26.4,<2.0a0 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + license: BSD-3-Clause + size: 23321 + timestamp: 1753308437809 +- conda: https://prefix.dev/robostack-staging/linux-aarch64/ros-humble-zstd-vendor-0.15.14-np126py311hbdd918e_13.conda + sha256: fdf57ab70bfa1abc3f5ebcf10a8abc8b13ae20cdb1e8021ce8a8d524d3590d93 + md5: ed296abbf59bb6e02508a49379e79c08 + depends: + - python + - ros-humble-ros-workspace + - ros2-distro-mutex 0.7.* humble_* + - zstd + - libstdcxx >=13 + - libgcc >=13 + - python_abi 3.11.* *_cp311 + - numpy >=1.26.4,<2.0a0 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + - zstd >=1.5.7,<1.6.0a0 + license: BSD-3-Clause + size: 23089 + timestamp: 1753308567082 +- conda: https://prefix.dev/robostack-staging/osx-arm64/ros-humble-zstd-vendor-0.15.14-np126py311h2a51a2c_13.conda + sha256: 9eb318fb0bc501b85d34f25766be7c4bb180ee537b62b13d2c3ac0ae5b1b1995 + md5: 408cc5b546d006b10ab65b3c7d1d079c + depends: + - python + - ros-humble-ros-workspace + - ros2-distro-mutex 0.7.* humble_* + - zstd + - __osx >=11.0 + - libcxx >=18 + - zstd >=1.5.7,<1.6.0a0 + - python_abi 3.11.* *_cp311 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + - numpy >=1.26.4,<2.0a0 + license: BSD-3-Clause + size: 23572 + timestamp: 1753308762558 +- conda: https://prefix.dev/robostack-staging/win-64/ros-humble-zstd-vendor-0.15.14-np126py311hd5de103_13.conda + sha256: 0309f7e5836467d527309ba70a2c815ca4887febfba8451d694be86f457a7c5e + md5: a665ba3d06f31ac8250780b696132362 + depends: + - python + - ros-humble-ros-workspace + - ros2-distro-mutex 0.7.* humble_* + - zstd + - vc >=14.3,<15 + - vc14_runtime >=14.44.35208 + - ucrt >=10.0.20348.0 + - vc >=14.3,<15 + - vc14_runtime >=14.44.35208 + - ucrt >=10.0.20348.0 + - numpy >=1.26.4,<2.0a0 + - zstd >=1.5.7,<1.6.0a0 + - python_abi 3.11.* *_cp311 + - ros2-distro-mutex >=0.7.0,<0.8.0a0 + license: BSD-3-Clause + size: 20004 + timestamp: 1753313177458 +- conda: https://prefix.dev/robostack-staging/linux-64/ros2-distro-mutex-0.7.0-humble_13.conda + sha256: 2ac28fd00e56f9cdb285bd42db47002464b94d148171baa13f10f700d554f694 + md5: c5516e14d1c4949c9095caf59f39ea0b + constrains: + - libboost 1.86.* + - libboost-devel 1.86.* + - pcl 1.15.0.* + - gazebo 11.* + - libprotobuf 5.29.3.* + license: BSD-3-Clause + size: 2318 + timestamp: 1753307768030 +- conda: https://prefix.dev/robostack-staging/linux-aarch64/ros2-distro-mutex-0.7.0-humble_13.conda + sha256: aa69924a5a632658e495718ca9c1ec1a2cc977d4cd5e54917e3b0056ab0a69e4 + md5: 1aeb3601a3b85b20072f3f43f1f7762c + constrains: + - libboost 1.86.* + - libboost-devel 1.86.* + - pcl 1.15.0.* + - gazebo 11.* + - libprotobuf 5.29.3.* + license: BSD-3-Clause + size: 2321 + timestamp: 1753307949132 +- conda: https://prefix.dev/robostack-staging/osx-arm64/ros2-distro-mutex-0.7.0-humble_13.conda + sha256: 719c7f514125b8e60d760cef73440328e6f1f4ccb1be22657ca377519e0efa6a + md5: 6a9795b9c72889afded8b5fb550f032c + constrains: + - libboost 1.86.* + - libboost-devel 1.86.* + - pcl 1.15.0.* + - gazebo 11.* + - libprotobuf 5.29.3.* + license: BSD-3-Clause + size: 2304 + timestamp: 1753307858174 +- conda: https://prefix.dev/robostack-staging/win-64/ros2-distro-mutex-0.7.0-humble_13.conda + sha256: 26383accb38cb8c7cb5c675d74b9f504590d61f62b860f306cd413f009081198 + md5: 1c35324823f1b1f1f68ce659633201dc + constrains: + - libboost 1.86.* + - libboost-devel 1.86.* + - pcl 1.15.0.* + - gazebo 11.* + - libprotobuf 5.29.3.* + license: BSD-3-Clause + size: 2323 + timestamp: 1753307971823 +- conda: https://prefix.dev/conda-forge/noarch/rosdistro-1.0.1-pyhd8ed1ab_0.conda + sha256: bff3b2fe7afe35125669ffcb7d6153db78070a753e1e4ac3b3d8d198eb6d6982 + md5: b7ed380a9088b543e06a4f73985ed03a + depends: + - catkin_pkg + - python >=3.9 + - pyyaml + - rospkg + - setuptools + license: BSD-3-Clause + license_family: BSD + size: 47691 + timestamp: 1747826651335 +- conda: https://prefix.dev/conda-forge/noarch/rospkg-1.6.0-pyhd8ed1ab_0.conda + sha256: 236e8b53b0fab599d63f346b0e84fbe9bd8d160e0dd1e591e39f23ff6924941e + md5: 80daa4ba1f1944b8ac1f90a66fc9ef27 + depends: + - catkin_pkg + - distro + - python >=3.9 + - pyyaml + license: BSD-3-Clause + license_family: BSD + size: 31293 + timestamp: 1737835793379 +- conda: https://prefix.dev/conda-forge/linux-64/sdl2-2.32.54-h3f2d84a_0.conda + sha256: 7cd82ca1d1989de6ac28e72ba0bfaae1c055278f931b0c7ef51bb1abba3ddd2f + md5: 91f8537d64c4d52cbbb2910e8bd61bd2 + depends: + - libgcc >=13 + - __glibc >=2.17,<3.0.a0 + - libstdcxx >=13 + - libgcc >=13 + - sdl3 >=3.2.10,<4.0a0 + - libgl >=1.7.0,<2.0a0 + - libegl >=1.7.0,<2.0a0 + license: Zlib + size: 587053 + timestamp: 1745799881584 +- conda: https://prefix.dev/conda-forge/linux-aarch64/sdl2-2.32.54-h5ad3122_0.conda + sha256: d83c13fc35ed447d186150d32b8bc48bdd73a047280ba6e06f151d4cce52639d + md5: 6b38021cb802b4e5bede7fe38c547883 + depends: + - libstdcxx >=13 + - libgcc >=13 + - libegl >=1.7.0,<2.0a0 + - libgl >=1.7.0,<2.0a0 + - sdl3 >=3.2.10,<4.0a0 + license: Zlib + size: 597383 + timestamp: 1745799910298 +- conda: https://prefix.dev/conda-forge/osx-arm64/sdl2-2.32.54-ha1acc90_0.conda + sha256: ba0ba41b3f7404ddc5421885ad9efe346c4bdc2ec88bc43edd271d9f25f6f0e4 + md5: 71364ba4c5f333860c4431cb46cb9b6c + depends: + - libcxx >=18 + - __osx >=11.0 + - sdl3 >=3.2.10,<4.0a0 + license: Zlib + size: 546209 + timestamp: 1745799899902 +- conda: https://prefix.dev/conda-forge/win-64/sdl2-2.32.54-he0c23c2_0.conda + sha256: 477781545f317cd9f0a35cc39e22976ee374f9c98b5cbb083812f6d33cf47c08 + md5: b1a715daa818f0ffcd23bb02b7fcf861 + depends: + - vc >=14.2,<15 + - vc14_runtime >=14.29.30139 + - ucrt >=10.0.20348.0 + - vc >=14.2,<15 + - vc14_runtime >=14.29.30139 + - ucrt >=10.0.20348.0 + - sdl3 >=3.2.10,<4.0a0 + license: Zlib + size: 572859 + timestamp: 1745799945033 +- conda: https://prefix.dev/conda-forge/linux-64/sdl3-3.2.20-h68140b3_0.conda + sha256: be28acdffe6d87a06d25be4092e8d4e3bb9936b051f2b1b43a03c3a8e3b2cd69 + md5: 0e152ad0b70227f129e018496d787367 + depends: + - libgcc >=14 + - __glibc >=2.17,<3.0.a0 + - libstdcxx >=14 + - libgcc >=14 + - xorg-libxcursor >=1.2.3,<2.0a0 + - xorg-libxscrnsaver >=1.2.4,<2.0a0 + - xorg-libx11 >=1.8.12,<2.0a0 + - liburing >=2.11,<2.12.0a0 + - pulseaudio-client >=17.0,<17.1.0a0 + - libdrm >=2.4.125,<2.5.0a0 + - libgl >=1.7.0,<2.0a0 + - xorg-libxext >=1.3.6,<2.0a0 + - dbus >=1.16.2,<2.0a0 + - libxkbcommon >=1.10.0,<2.0a0 + - libunwind >=1.8.2,<1.9.0a0 + - libegl >=1.7.0,<2.0a0 + - wayland >=1.24.0,<2.0a0 + - libudev1 >=257.7 + - libusb >=1.0.29,<2.0a0 + - xorg-libxfixes >=6.0.1,<7.0a0 + license: Zlib + size: 1936653 + timestamp: 1754349726581 +- conda: https://prefix.dev/conda-forge/linux-aarch64/sdl3-3.2.20-h506f210_0.conda + sha256: 476a821964861d3a562c26733140522345e02e263f8385b6b8f585895653e64d + md5: 16dea57e1ce955dba5c74f29c6baf1cf + depends: + - libgcc >=14 + - libstdcxx >=14 + - libgcc >=14 + - xorg-libxext >=1.3.6,<2.0a0 + - libegl >=1.7.0,<2.0a0 + - libusb >=1.0.29,<2.0a0 + - pulseaudio-client >=17.0,<17.1.0a0 + - libudev1 >=257.7 + - wayland >=1.24.0,<2.0a0 + - libxkbcommon >=1.10.0,<2.0a0 + - libgl >=1.7.0,<2.0a0 + - xorg-libxfixes >=6.0.1,<7.0a0 + - liburing >=2.11,<2.12.0a0 + - libunwind >=1.8.2,<1.9.0a0 + - dbus >=1.16.2,<2.0a0 + - xorg-libx11 >=1.8.12,<2.0a0 + - xorg-libxcursor >=1.2.3,<2.0a0 + - libdrm >=2.4.125,<2.5.0a0 + license: Zlib + size: 1929966 + timestamp: 1754349755650 +- conda: https://prefix.dev/conda-forge/osx-arm64/sdl3-3.2.20-he22eeb8_0.conda + sha256: 0904e737d050fdd5bf661d7c4cefce70985d9412c7fe78f1154561d509d23836 + md5: b8127e9143d810d8e2d61507f5fe262a + depends: + - libcxx >=19 + - __osx >=11.0 + - dbus >=1.16.2,<2.0a0 + - libusb >=1.0.29,<2.0a0 + license: Zlib + size: 1415815 + timestamp: 1754349739340 +- conda: https://prefix.dev/conda-forge/win-64/sdl3-3.2.20-h5112557_0.conda + sha256: 93f1f8da77a42a3c916a098235f11760e50f1121b021f589b20b765168539563 + md5: 2d1eeda10a8704d14f47b232166f5bc3 + depends: + - vc >=14.3,<15 + - vc14_runtime >=14.44.35208 + - ucrt >=10.0.20348.0 + - vc >=14.3,<15 + - vc14_runtime >=14.44.35208 + - ucrt >=10.0.20348.0 + - libusb >=1.0.29,<2.0a0 + license: Zlib + size: 1521861 + timestamp: 1754349758510 +- conda: https://prefix.dev/conda-forge/noarch/setuptools-80.9.0-pyhff2d567_0.conda + sha256: 972560fcf9657058e3e1f97186cc94389144b46dbdf58c807ce62e83f977e863 + md5: 4de79c071274a53dcaf2a8c749d1499e + depends: + - python >=3.9 + license: MIT + license_family: MIT + size: 748788 + timestamp: 1748804951958 +- conda: https://prefix.dev/conda-forge/linux-64/sip-6.10.0-py311hfdbb021_0.conda + sha256: 1eae0d5f0152714cdabb5cd3d480080e164b3fb5f7bd8208df7925d8e173d36b + md5: 78e5e37d25d5ab01fb5e91b8653b8f6d + depends: + - __glibc >=2.17,<3.0.a0 + - libgcc >=13 + - libstdcxx >=13 + - packaging + - ply + - python >=3.11,<3.12.0a0 + - python_abi 3.11.* *_cp311 + - setuptools + - tomli + license: BSD-2-Clause + license_family: BSD + size: 686578 + timestamp: 1745411313879 +- conda: https://prefix.dev/conda-forge/linux-aarch64/sip-6.12.0-py311h2e0833b_0.conda + sha256: 88b24520448a09da8738e1481b9ce5e7548ec8a20cad286d07a3c03e12a49d41 + md5: 6f46181bfeb1226b529705bad2d0e65b + depends: + - libgcc >=13 + - libstdcxx >=13 + - packaging + - ply + - python >=3.11,<3.12.0a0 + - python_abi 3.11.* *_cp311 + - setuptools + - tomli + license: BSD-2-Clause + license_family: BSD + size: 695769 + timestamp: 1748976817966 +- conda: https://prefix.dev/conda-forge/osx-arm64/sip-6.12.0-py311h155a34a_0.conda + sha256: 43d5974cb275291604e494627ce38aeb38e854f07a9095f1b62b08e3685a380d + md5: 537d13fd3ec1c57f1fb3afe810d21626 + depends: + - __osx >=11.0 + - libcxx >=18 + - packaging + - ply + - python >=3.11,<3.12.0a0 + - python >=3.11,<3.12.0a0 *_cpython + - python_abi 3.11.* *_cp311 + - setuptools + - tomli + license: BSD-2-Clause + license_family: BSD + size: 697504 + timestamp: 1748975882738 +- conda: https://prefix.dev/conda-forge/win-64/sip-6.10.0-py311hda3d55a_0.conda + sha256: ea79542e045a319c12c70f01df9ebf89e6fbb4703fc8af352c2a4d198e1e10e8 + md5: 15929ab309361207eddea4d0db1e3cef + depends: + - packaging + - ply + - python >=3.11,<3.12.0a0 + - python_abi 3.11.* *_cp311 + - setuptools + - tomli + - ucrt >=10.0.20348.0 + - vc >=14.2,<15 + - vc14_runtime >=14.29.30139 + license: BSD-2-Clause + license_family: BSD + size: 713674 + timestamp: 1745412192536 +- conda: https://prefix.dev/conda-forge/noarch/six-1.17.0-pyhe01879c_1.conda + sha256: 458227f759d5e3fcec5d9b7acce54e10c9e1f4f4b7ec978f3bfd54ce4ee9853d + md5: 3339e3b65d58accf4ca4fb8748ab16b3 + depends: + - python >=3.9 + - python + license: MIT + license_family: MIT + size: 18455 + timestamp: 1753199211006 +- conda: https://prefix.dev/conda-forge/linux-64/snappy-1.2.2-h03e3b7b_0.conda + sha256: 8b8acbde6814d1643da509e11afeb6bb30eb1e3004cf04a7c9ae43e9b097f063 + md5: 3d8da0248bdae970b4ade636a104b7f5 + depends: + - libgcc >=14 + - libstdcxx >=14 + - libgcc >=14 + - __glibc >=2.17,<3.0.a0 + license: BSD-3-Clause + license_family: BSD + size: 45805 + timestamp: 1753083455352 +- conda: https://prefix.dev/conda-forge/linux-aarch64/snappy-1.2.2-he774c54_0.conda + sha256: 06648e1c2fd7c5426b2611d4e480768aea934b54fe8034a8f7a6378a40b20695 + md5: b80bb2997c2139b3659edfca69b72dae + depends: + - libstdcxx >=14 + - libgcc >=14 + license: BSD-3-Clause + license_family: BSD + size: 47059 + timestamp: 1753083509250 +- conda: https://prefix.dev/conda-forge/osx-arm64/snappy-1.2.2-hd121638_0.conda + sha256: b3d447d72d2af824006f4ba78ae4188747886d6d95f2f165fe67b95541f02b05 + md5: ba9ca3813f4db8c0d85d3c84404e02ba + depends: + - libcxx >=19 + - __osx >=11.0 + license: BSD-3-Clause + license_family: BSD + size: 38824 + timestamp: 1753083462800 +- conda: https://prefix.dev/conda-forge/win-64/snappy-1.2.2-h7fa0ca8_0.conda + sha256: b38ed597bf71f73275a192b8cb22888997760bac826321f5838951d5d31acb23 + md5: 194a0c548899fa2a10684c34e56a3564 + depends: + - vc >=14.3,<15 + - vc14_runtime >=14.44.35208 + - ucrt >=10.0.20348.0 + - vc >=14.3,<15 + - vc14_runtime >=14.44.35208 + - ucrt >=10.0.20348.0 + license: BSD-3-Clause + license_family: BSD + size: 67221 + timestamp: 1753083479147 +- conda: https://prefix.dev/conda-forge/noarch/snowballstemmer-3.0.1-pyhd8ed1ab_0.conda + sha256: 17007a4cfbc564dc3e7310dcbe4932c6ecb21593d4fec3c68610720f19e73fb2 + md5: 755cf22df8693aa0d1aec1c123fa5863 + depends: + - python >=3.9 + license: BSD-3-Clause + license_family: BSD + size: 73009 + timestamp: 1747749529809 +- conda: https://prefix.dev/conda-forge/linux-64/spdlog-1.15.3-h6dc744f_1.conda + sha256: e5ddcc73dac4c138b763aab4feace6101bdccf39ea4cf599705c9625c70beba0 + md5: ffeb70e2cedafa9243bf89a20ada4cfe + depends: + - __glibc >=2.17,<3.0.a0 + - fmt >=11.2.0,<11.3.0a0 + - libgcc >=13 + - libstdcxx >=13 + license: MIT + license_family: MIT + size: 195618 + timestamp: 1751348678073 +- conda: https://prefix.dev/conda-forge/linux-aarch64/spdlog-1.15.3-h881af89_1.conda + sha256: 06588517354b886feaa9c0264a8bb823b9665b81ac4923ae739152b432bc5e44 + md5: 4173e7480140c5ae80b87114b61a2ebf + depends: + - fmt >=11.2.0,<11.3.0a0 + - libgcc >=13 + - libstdcxx >=13 + license: MIT + license_family: MIT + size: 194529 + timestamp: 1751348711276 +- conda: https://prefix.dev/conda-forge/osx-arm64/spdlog-1.15.3-h217a1f9_1.conda + sha256: 673e4475bc9ca8e321bc98c8f6e48bf0efd530b5978d6a675de03c77b0a41227 + md5: bd3f40ea227bed3b00b13a574a9dd9ee + depends: + - __osx >=11.0 + - fmt >=11.2.0,<11.3.0a0 + - libcxx >=18 + license: MIT + license_family: MIT + size: 166201 + timestamp: 1751348813679 +- conda: https://prefix.dev/conda-forge/win-64/spdlog-1.15.3-h430ee68_1.conda + sha256: dab3103c03a2d26e40a5c4e83e192d99cf6de806280fe4c1298943970503e56c + md5: d195ba9419c5704fc42cfacb88f4c3f0 + depends: + - fmt >=11.2.0,<11.3.0a0 + - ucrt >=10.0.20348.0 + - vc >=14.3,<15 + - vc14_runtime >=14.44.35208 + license: MIT + license_family: MIT + size: 173572 + timestamp: 1751348807537 +- conda: https://prefix.dev/conda-forge/linux-64/sqlite-3.50.4-hbc0de68_0.conda + sha256: ea12e0714d70a536abe5968df612c57a966aa93c5a152cc4a1974046248d72a4 + md5: 8376bd3854542be0c8c7cd07525d31c6 + depends: + - __glibc >=2.17,<3.0.a0 + - libgcc >=14 + - libsqlite 3.50.4 h0c1763c_0 + - libzlib >=1.3.1,<2.0a0 + - ncurses >=6.5,<7.0a0 + - readline >=8.2,<9.0a0 + license: blessing + size: 166233 + timestamp: 1753948493149 +- conda: https://prefix.dev/conda-forge/linux-aarch64/sqlite-3.50.4-he8854b5_0.conda + sha256: 20c543f4ee13b2325ac6af3749620944b26e11b6dd13875643059b6ba137164c + md5: 9347c5c9d37e5bb7b8a01c9aef2a7f0a + depends: + - libgcc >=14 + - libsqlite 3.50.4 h022381a_0 + - libzlib >=1.3.1,<2.0a0 + - ncurses >=6.5,<7.0a0 + - readline >=8.2,<9.0a0 + license: blessing + size: 170387 + timestamp: 1753948566446 +- conda: https://prefix.dev/conda-forge/osx-arm64/sqlite-3.50.4-hb5dd463_0.conda + sha256: 3b25888b1fa1aac88571127a8a8e16d25a522f94114cb339d0f7a613a911cbe2 + md5: 1da3d5a9ab6f1dbc8fd5b57fd65e0d3d + depends: + - __osx >=11.0 + - icu >=75.1,<76.0a0 + - libsqlite 3.50.4 h4237e3c_0 + - libzlib >=1.3.1,<2.0a0 + - ncurses >=6.5,<7.0a0 + - readline >=8.2,<9.0a0 + license: blessing + size: 149389 + timestamp: 1753948618445 +- conda: https://prefix.dev/conda-forge/win-64/sqlite-3.50.4-hdb435a2_0.conda + sha256: 47717c9f78987a287984e89053cb8096457abd6b0fbf4cb39e63120797e2c993 + md5: b81e913bfad2759829f976fd926443af + depends: + - libsqlite 3.50.4 hf5d6505_0 + - ucrt >=10.0.20348.0 + - vc >=14.3,<15 + - vc14_runtime >=14.44.35208 + license: blessing + size: 400981 + timestamp: 1753948927232 +- conda: https://prefix.dev/conda-forge/linux-64/svt-av1-3.0.2-h5888daf_0.conda + sha256: fb4b97a3fd259eff4849b2cfe5678ced0c5792b697eb1f7bcd93a4230e90e80e + md5: 0096882bd623e6cc09e8bf920fc8fb47 + depends: + - __glibc >=2.17,<3.0.a0 + - libgcc >=13 + - libstdcxx >=13 + license: BSD-2-Clause + license_family: BSD + size: 2750235 + timestamp: 1742907589246 +- conda: https://prefix.dev/conda-forge/linux-aarch64/svt-av1-3.0.2-h5ad3122_0.conda + sha256: 6d2ac9e4f68355ba3b42395054a7558b9eb6bcf3d70e91bb99ada1450a74d2f6 + md5: 4fafb3aafa73a875312cb4a1099d2a46 + depends: + - libgcc >=13 + - libstdcxx >=13 + license: BSD-2-Clause + license_family: BSD + size: 1975547 + timestamp: 1742910351387 +- conda: https://prefix.dev/conda-forge/osx-arm64/svt-av1-3.0.2-h8ab69cd_0.conda + sha256: d6bb376dc9a00728be26be2b1b859d13534067922c13cc4adbbc441ca4c4ca6d + md5: 76f20156833dea73510379b6cd7975e5 + depends: + - __osx >=11.0 + - libcxx >=18 + license: BSD-2-Clause + license_family: BSD + size: 1484549 + timestamp: 1742907655838 +- conda: https://prefix.dev/conda-forge/win-64/svt-av1-3.0.2-he0c23c2_0.conda + sha256: 2307695366b92fffe69e33da9eae0df4e32ba5fdbae28ba4489ebf6cb223c203 + md5: b10f556afee1579f3c710a4790a6ed28 + depends: + - ucrt >=10.0.20348.0 + - vc >=14.2,<15 + - vc14_runtime >=14.29.30139 + license: BSD-2-Clause + license_family: BSD + size: 1849099 + timestamp: 1742908435809 +- conda: https://prefix.dev/conda-forge/linux-64/tbb-2022.2.0-hb60516a_1.conda + sha256: 105a12b00e407aaaf04d811d3e737d470fd9e9328bc9a6a57f0f3fea5a486e84 + md5: 29ed2be4b47b5aa1b07689e12407fbfd + depends: + - __glibc >=2.17,<3.0.a0 + - libgcc >=14 + - libhwloc >=2.12.1,<2.12.2.0a0 + - libstdcxx >=14 + license: Apache-2.0 + license_family: APACHE + size: 183204 + timestamp: 1755775909376 +- conda: https://prefix.dev/conda-forge/linux-aarch64/tbb-2022.2.0-h8f856e4_1.conda + sha256: e706f8216b4f0e1bb363c1940c415ce96483889bd24248ac99284a7fcb9eaf9b + md5: e506cac9e67b6d6e6d1f9bc17db721ee + depends: + - libgcc >=14 + - libhwloc >=2.12.1,<2.12.2.0a0 + - libstdcxx >=14 + license: Apache-2.0 + license_family: APACHE + size: 146718 + timestamp: 1755777414300 +- conda: https://prefix.dev/conda-forge/osx-arm64/tbb-2022.2.0-h5b2e6d4_1.conda + sha256: 561cc8c407880ff6f3965778f78c860d93d3b9c5bd206ba9aac7c437794d4155 + md5: 1cdd70110585806da18f400d30d9b497 + depends: + - __osx >=11.0 + - libcxx >=19 + - libhwloc >=2.12.1,<2.12.2.0a0 + license: Apache-2.0 + license_family: APACHE + size: 119970 + timestamp: 1755776161308 +- conda: https://prefix.dev/conda-forge/win-64/tbb-2022.2.0-h18a62a1_1.conda + sha256: 109fda9fdc27b298431ae9e9e7cfa29c4f5e892041b17f8beaa170bc80c6ddc1 + md5: 249b85df4b7a410126acdc99c112be60 + depends: + - libhwloc >=2.12.1,<2.12.2.0a0 + - ucrt >=10.0.20348.0 + - vc >=14.3,<15 + - vc14_runtime >=14.44.35208 + license: Apache-2.0 + license_family: APACHE + size: 155440 + timestamp: 1755776663132 +- conda: https://prefix.dev/conda-forge/linux-64/tbb-devel-2022.2.0-h74b38a2_1.conda + sha256: 975eef4b3678fa0553e5326e35e7fc65bc49c4051677c282301be43d1c83258c + md5: 7add6fd0b1f39c7edbfff8704b34b6b6 + depends: + - __glibc >=2.17,<3.0.a0 + - libgcc >=14 + - libstdcxx >=14 + - tbb 2022.2.0 hb60516a_1 + size: 1091675 + timestamp: 1755775925902 +- conda: https://prefix.dev/conda-forge/linux-aarch64/tbb-devel-2022.2.0-h828ce58_1.conda + sha256: 42224ea47a7daeed600f114d53cef623a8f6480b6386b6d21aa185eed756a10b + md5: f1fde3726bbdac96f781f4c93b82192c + depends: + - libgcc >=14 + - libstdcxx >=14 + - tbb 2022.2.0 h8f856e4_1 + size: 1091577 + timestamp: 1755777586920 +- conda: https://prefix.dev/conda-forge/osx-arm64/tbb-devel-2022.2.0-h89693d0_1.conda + sha256: 33e1e5fd7638e89e8c33ff94e5cb7d3ed208166fa3efe6dfad832c12aa155467 + md5: 57f834ce9403970912473f80e22617f9 + depends: + - __osx >=11.0 + - libcxx >=19 + - tbb 2022.2.0 h5b2e6d4_1 + size: 1091730 + timestamp: 1755776189981 +- conda: https://prefix.dev/conda-forge/win-64/tbb-devel-2022.2.0-h4eb897c_1.conda + sha256: 5c10d211794528917c6163622c43c093c7dc78e9b4ebd3a43d324fa3019cdd79 + md5: 817781bb0db02d52cd72cee71fcde55b + depends: + - tbb 2022.2.0 h18a62a1_1 + - ucrt >=10.0.20348.0 + - vc >=14.3,<15 + - vc14_runtime >=14.44.35208 + size: 1099328 + timestamp: 1755776721942 +- conda: https://prefix.dev/conda-forge/linux-64/tinyxml-2.6.2-h4bd325d_2.tar.bz2 + sha256: d9e3c192c535c06ec139ada7bcd1f12313ebd377208fc8149348e8534229f39e + md5: 39dd0757ee71ccd5b120440dce126c37 + depends: + - libgcc-ng >=9.3.0 + - libstdcxx-ng >=9.3.0 + license: Zlib + size: 56535 + timestamp: 1611562094388 +- conda: https://prefix.dev/conda-forge/linux-aarch64/tinyxml-2.6.2-hd62202e_2.tar.bz2 + sha256: d7f66bd0ddfbe1b8f2638678d962140e8ab8a63d779b9366247e1f7daabeb575 + md5: 454eb4b31a1f4313c72ef7f536cae5d9 + depends: + - libgcc-ng >=9.3.0 + - libstdcxx-ng >=9.3.0 + license: Zlib + size: 56283 + timestamp: 1611562275383 +- conda: https://prefix.dev/conda-forge/osx-arm64/tinyxml-2.6.2-h260d524_2.tar.bz2 + sha256: ffed96f7167394be9007c1b4e2b28cf690388f9aaef0b57f0d44ad44bb247f94 + md5: 514f487df6232e8dd819faf3c5915e58 + depends: + - libcxx >=11.0.1 + license: Zlib + size: 52319 + timestamp: 1613627858183 +- conda: https://prefix.dev/conda-forge/win-64/tinyxml-2.6.2-h2d74725_2.tar.bz2 + sha256: 92b01cf22522c6da6e56825692c2ae2c0dd1a1bc7251a86cdf47d5ab451cb31c + md5: a5c2010323ceaa8faec6697921b23928 + depends: + - vc >=14.1,<15.0a0 + - vs2015_runtime >=14.16.27012 + license: Zlib + size: 71271 + timestamp: 1611562303689 +- conda: https://prefix.dev/conda-forge/linux-64/tinyxml2-11.0.0-h3f2d84a_0.conda + sha256: 3ae98c2ca54928b2c72dbb4bd8ea229d3c865ad39367d377908294d9fb1e6f2c + md5: aeb0b91014ac8c5d468e32b7a5ce8ac2 + depends: + - __glibc >=2.17,<3.0.a0 + - libgcc >=13 + - libstdcxx >=13 + - libgcc >=13 + license: Zlib + size: 131351 + timestamp: 1742246125630 +- conda: https://prefix.dev/conda-forge/linux-aarch64/tinyxml2-11.0.0-h5ad3122_0.conda + sha256: 720c2f979947b22940424245b780a792b947a4e2d8bfb9939acf75dcb4728af9 + md5: ffd0eb9816b6372f7283d3d7ba830ac1 + depends: + - libstdcxx >=13 + - libgcc >=13 + license: Zlib + size: 133310 + timestamp: 1742246428717 +- conda: https://prefix.dev/conda-forge/osx-arm64/tinyxml2-11.0.0-ha1acc90_0.conda + sha256: bbd9294551ff727305f8335819c24d2490d5d79e0f3d90957992c39d2146093a + md5: 6778d917f88222e8f27af8ec5c41f277 + depends: + - __osx >=11.0 + - libcxx >=18 + license: Zlib + size: 122269 + timestamp: 1742246179980 +- conda: https://prefix.dev/conda-forge/win-64/tinyxml2-11.0.0-he0c23c2_0.conda + sha256: f22e0ef11cce8b25e48a2d4a0ca8a2fc5b89841c36f8ec955b01baff7cd3a924 + md5: e80ff399c7b08f37ecdaeaeb5017b9fb + depends: + - vc >=14.2,<15 + - vc14_runtime >=14.29.30139 + - ucrt >=10.0.20348.0 + - vc >=14.2,<15 + - vc14_runtime >=14.29.30139 + - ucrt >=10.0.20348.0 + license: Zlib + size: 75152 + timestamp: 1742246154008 +- conda: https://prefix.dev/conda-forge/linux-64/tk-8.6.13-noxft_hd72426e_102.conda + sha256: a84ff687119e6d8752346d1d408d5cf360dee0badd487a472aa8ddedfdc219e1 + md5: a0116df4f4ed05c303811a837d5b39d8 + depends: + - __glibc >=2.17,<3.0.a0 + - libgcc >=13 + - libzlib >=1.3.1,<2.0a0 + license: TCL + license_family: BSD + size: 3285204 + timestamp: 1748387766691 +- conda: https://prefix.dev/conda-forge/linux-aarch64/tk-8.6.13-noxft_h5688188_102.conda + sha256: 46e10488e9254092c655257c18fcec0a9864043bdfbe935a9fbf4fb2028b8514 + md5: 2562c9bfd1de3f9c590f0fe53858d85c + depends: + - libgcc >=13 + - libzlib >=1.3.1,<2.0a0 + license: TCL + license_family: BSD + size: 3342845 + timestamp: 1748393219221 +- conda: https://prefix.dev/conda-forge/osx-arm64/tk-8.6.13-h892fb3f_2.conda + sha256: cb86c522576fa95c6db4c878849af0bccfd3264daf0cc40dd18e7f4a7bfced0e + md5: 7362396c170252e7b7b0c8fb37fe9c78 + depends: + - __osx >=11.0 + - libzlib >=1.3.1,<2.0a0 + license: TCL + license_family: BSD + size: 3125538 + timestamp: 1748388189063 +- conda: https://prefix.dev/conda-forge/win-64/tk-8.6.13-h2c6b04d_2.conda + sha256: e3614b0eb4abcc70d98eae159db59d9b4059ed743ef402081151a948dce95896 + md5: ebd0e761de9aa879a51d22cc721bd095 + depends: + - ucrt >=10.0.20348.0 + - vc >=14.2,<15 + - vc14_runtime >=14.29.30139 + license: TCL + license_family: BSD + size: 3466348 + timestamp: 1748388121356 +- conda: https://prefix.dev/conda-forge/noarch/toml-0.10.2-pyhd8ed1ab_1.conda + sha256: 34f3a83384ac3ac30aefd1309e69498d8a4aa0bf2d1f21c645f79b180e378938 + md5: b0dd904de08b7db706167240bf37b164 + depends: + - python >=3.9 + license: MIT + license_family: MIT + size: 22132 + timestamp: 1734091907682 +- conda: https://prefix.dev/conda-forge/noarch/tomli-2.2.1-pyhe01879c_2.conda + sha256: 040a5a05c487647c089ad5e05ad5aff5942830db2a4e656f1e300d73436436f1 + md5: 30a0a26c8abccf4b7991d590fe17c699 + depends: + - python >=3.9 + - python + license: MIT + license_family: MIT + size: 21238 + timestamp: 1753796677376 +- conda: https://prefix.dev/conda-forge/noarch/typing_extensions-4.14.1-pyhe01879c_0.conda + sha256: 4f52390e331ea8b9019b87effaebc4f80c6466d09f68453f52d5cdc2a3e1194f + md5: e523f4f1e980ed7a4240d7e27e9ec81f + depends: + - python >=3.9 + - python + license: PSF-2.0 + license_family: PSF + size: 51065 + timestamp: 1751643513473 +- conda: https://prefix.dev/conda-forge/noarch/tzdata-2025b-h78e105d_0.conda + sha256: 5aaa366385d716557e365f0a4e9c3fca43ba196872abbbe3d56bb610d131e192 + md5: 4222072737ccff51314b5ece9c7d6f5a + license: LicenseRef-Public-Domain + size: 122968 + timestamp: 1742727099393 +- conda: https://prefix.dev/conda-forge/win-64/ucrt-10.0.22621.0-h57928b3_1.conda + sha256: db8dead3dd30fb1a032737554ce91e2819b43496a0db09927edf01c32b577450 + md5: 6797b005cd0f439c4c5c9ac565783700 + constrains: + - vs2015_runtime >=14.29.30037 + license: LicenseRef-MicrosoftWindowsSDK10 + size: 559710 + timestamp: 1728377334097 +- conda: https://prefix.dev/conda-forge/linux-64/uncrustify-0.81.0-h5888daf_0.conda + sha256: f0b3ad46b173de03c45134b16d7be0b5bdaff344cccb6a4d205850809c1a4dca + md5: c2310445798370fe622fc6b03d79a3a4 + depends: + - __glibc >=2.17,<3.0.a0 + - libgcc >=13 + - libstdcxx >=13 + license: GPL-2.0-only + license_family: GPL + size: 650318 + timestamp: 1747514389910 +- conda: https://prefix.dev/conda-forge/linux-aarch64/uncrustify-0.81.0-h5ad3122_0.conda + sha256: d886da4b98a0b38eebcfc80a0818def69d4d735c98f548d678dcac1f1e859c4c + md5: 0a56cd95bc8308d26db08135328b4f62 + depends: + - libgcc >=13 + - libstdcxx >=13 + license: GPL-2.0-only + license_family: GPL + size: 636572 + timestamp: 1747514438016 +- conda: https://prefix.dev/conda-forge/osx-arm64/uncrustify-0.81.0-h286801f_0.conda + sha256: 27c90ec707ed48dd3c02c68d69c96508e419b7a2f59bf06c01687e729594bf8d + md5: b7ccf88050c409410385bec64cafa412 + depends: + - __osx >=11.0 + - libcxx >=18 + license: GPL-2.0-only + license_family: GPL + size: 540919 + timestamp: 1747514576305 +- conda: https://prefix.dev/conda-forge/win-64/uncrustify-0.81.0-he0c23c2_0.conda + sha256: 787077c15b69d7fe6f6ded93d62e2180b8d775cdc8b6550d2270e943b3d8b636 + md5: 4809798e2e5e8749445d08bd4422ce7b + depends: + - ucrt >=10.0.20348.0 + - vc >=14.2,<15 + - vc14_runtime >=14.29.30139 + license: GPL-2.0-only + license_family: GPL + size: 413662 + timestamp: 1747514675025 +- conda: https://prefix.dev/conda-forge/linux-64/unicodedata2-16.0.0-py311h9ecbd09_0.conda + sha256: e786fb0925515fffc83e393d2a0e2814eaf9be8a434f1982b399841a2c07980b + md5: 51a12678b609f5794985fda8372b1a49 + depends: + - __glibc >=2.17,<3.0.a0 + - libgcc >=13 + - python >=3.11,<3.12.0a0 + - python_abi 3.11.* *_cp311 + license: Apache-2.0 + license_family: Apache + size: 405017 + timestamp: 1736692662280 +- conda: https://prefix.dev/conda-forge/linux-aarch64/unicodedata2-16.0.0-py311ha879c10_0.conda + sha256: 5c03da86510e4ec0c3817a8746b4040fffcfdb1a522dfcc84a07c9a5ede0a1b9 + md5: b0f8e22b8d108706bcac2eed58eac317 + depends: + - libgcc >=13 + - python >=3.11,<3.12.0a0 + - python >=3.11,<3.12.0a0 *_cpython + - python_abi 3.11.* *_cp311 + license: Apache-2.0 + license_family: Apache + size: 405328 + timestamp: 1736692678670 +- conda: https://prefix.dev/conda-forge/osx-arm64/unicodedata2-16.0.0-py311h917b07b_0.conda + sha256: 4edd8c92ea579b8b5997e4b6159271dc47ce4826e880b8f8eec52be88619b03f + md5: d1e4a3605a1ca37cb73937772c5310af + depends: + - __osx >=11.0 + - python >=3.11,<3.12.0a0 + - python >=3.11,<3.12.0a0 *_cpython + - python_abi 3.11.* *_cp311 + license: Apache-2.0 + license_family: Apache + size: 411234 + timestamp: 1736692763548 +- conda: https://prefix.dev/conda-forge/win-64/unicodedata2-16.0.0-py311he736701_0.conda + sha256: 3f626553bfb49ac756cf40e0c10ecb3a915a86f64e036924ab956b37ad1fa9f4 + md5: 5ec4da89151e9d55f9ecad019f2d1e58 + depends: + - python >=3.11,<3.12.0a0 + - python_abi 3.11.* *_cp311 + - ucrt >=10.0.20348.0 + - vc >=14.2,<15 + - vc14_runtime >=14.29.30139 + license: Apache-2.0 + license_family: Apache + size: 400391 + timestamp: 1736692998788 +- conda: https://prefix.dev/conda-forge/linux-64/urdfdom-4.0.1-hae71d53_3.conda + sha256: 70b1e7322bf6306de6186e91fb87c15f7ba5c1aeb6d0fd31780e088c42025fc4 + md5: a7830d1b7ade9d3f8c35191084fe7022 + depends: + - urdfdom_headers + - libstdcxx >=13 + - libgcc >=13 + - __glibc >=2.17,<3.0.a0 + - tinyxml2 >=11.0.0,<11.1.0a0 + - console_bridge >=1.0.2,<1.1.0a0 + license: BSD-3-Clause + license_family: BSD + size: 118733 + timestamp: 1743679555211 +- conda: https://prefix.dev/conda-forge/linux-aarch64/urdfdom-4.0.1-hdac3a21_3.conda + sha256: de16f1d74eb290e8ea60ef295a9b6889bbe9880d7d0417f4fafcdc12aadc9205 + md5: 99c38d6e759d70bc5fecf527ea243c02 + depends: + - urdfdom_headers + - libstdcxx >=13 + - libgcc >=13 + - tinyxml2 >=11.0.0,<11.1.0a0 + - console_bridge >=1.0.2,<1.1.0a0 + license: BSD-3-Clause + license_family: BSD + size: 126523 + timestamp: 1743679617387 +- conda: https://prefix.dev/conda-forge/osx-arm64/urdfdom-4.0.1-h48bab5a_3.conda + sha256: bfde25d74ac5839d1f7ca0a2f7d6a36dc9ae9b7e2df1c3799be98d1985393b60 + md5: 7e841176ab2b30860123ce7ea0a710c5 + depends: + - urdfdom_headers + - __osx >=11.0 + - libcxx >=18 + - tinyxml2 >=11.0.0,<11.1.0a0 + - console_bridge >=1.0.2,<1.1.0a0 + license: BSD-3-Clause + license_family: BSD + size: 105695 + timestamp: 1743679565324 +- conda: https://prefix.dev/conda-forge/win-64/urdfdom-4.0.1-h9d4477b_3.conda + sha256: 63d4b4153a498aef257d53f4d30c71e6f6f55dc31dbb75224602d98f0e5a0867 + md5: 26ae0f0f8f61962bd3bb3c6b7f3e36b3 + depends: + - urdfdom_headers + - vc >=14.2,<15 + - vc14_runtime >=14.29.30139 + - ucrt >=10.0.20348.0 + - vc >=14.2,<15 + - vc14_runtime >=14.29.30139 + - ucrt >=10.0.20348.0 + - tinyxml2 >=11.0.0,<11.1.0a0 + - console_bridge >=1.0.2,<1.1.0a0 + license: BSD-3-Clause + license_family: BSD + size: 103147 + timestamp: 1743679676862 +- conda: https://prefix.dev/conda-forge/linux-64/urdfdom_headers-1.0.6-h924138e_2.tar.bz2 + sha256: 6a799d3f672f100b63bd7cb1a4aec0aced07cf4edc0fac7ecd49c7790a69e1c0 + md5: f8b2322b72a23562e19a8b9fbd47c176 + depends: + - libgcc-ng >=10.3.0 + - libstdcxx-ng >=10.3.0 + license: BSD-3-Clause + license_family: BSD + size: 18451 + timestamp: 1649176862187 +- conda: https://prefix.dev/conda-forge/linux-aarch64/urdfdom_headers-1.0.6-hdd96247_2.tar.bz2 + sha256: 4de95999f7b4f3ea0cac350bce7cb6ae826d87fc1c5f24a97c4e60c85fb902cf + md5: 63ae064ec6bfbbfb41cfcfa074c78a2a + depends: + - libgcc-ng >=10.3.0 + - libstdcxx-ng >=10.3.0 + license: BSD-3-Clause + license_family: BSD + size: 18469 + timestamp: 1649177102582 +- conda: https://prefix.dev/conda-forge/osx-arm64/urdfdom_headers-1.0.6-h3e96240_2.tar.bz2 + sha256: bfda200f90ed63f977e477a35a7a2a246f3e88740ed5a5594ee815aa68a94193 + md5: d94430ef8a1a9273cbbba1d40ca0ae81 + depends: + - libcxx >=12.0.1 + license: BSD-3-Clause + license_family: BSD + size: 18531 + timestamp: 1649177151464 +- conda: https://prefix.dev/conda-forge/win-64/urdfdom_headers-1.0.6-h5362a0b_2.tar.bz2 + sha256: 3fe393a1ee9a822955f91d7d4e7512bc37e17add16b535abf69d0e5483441fd1 + md5: 969393fa1623d777ab8a1345f3af449a + depends: + - vc >=14.1,<15 + - vs2015_runtime >=14.16.27033 + license: BSD-3-Clause + license_family: BSD + size: 18704 + timestamp: 1649177142878 +- conda: https://prefix.dev/conda-forge/linux-64/utfcpp-4.0.6-h005c6e1_0.conda + sha256: ec540ff477cd6d209b98f9b201e9c440908ea3a8b62e9e02dd12fcb60fff6d08 + md5: 9464e297fa2bf08030c65a54342b48c3 + license: BSL-1.0 + size: 13447 + timestamp: 1730672182037 +- conda: https://prefix.dev/conda-forge/linux-aarch64/utfcpp-4.0.6-h01cc221_0.conda + sha256: c8b19a825ec19387181be2c2a63a649f408b6c77fe5f01389565011755150c86 + md5: 4bc420dcc08be7b850d1d6e9e32e0a0e + license: BSL-1.0 + size: 13427 + timestamp: 1730672219363 +- conda: https://prefix.dev/conda-forge/osx-arm64/utfcpp-4.0.6-h54c0426_0.conda + sha256: f35ec947f1c7cf49a0171db562a767d81b59ebbca37989bce34d36d43020fb76 + md5: 663093debcad11b7f3f1e8d62469af05 + license: BSL-1.0 + size: 13663 + timestamp: 1730672215514 +- conda: https://prefix.dev/conda-forge/win-64/utfcpp-4.0.6-hc1507ef_0.conda + sha256: 71ee67c739bb32a2b684231f156150e1f7fd6c852aa2ceaae50e56909c073227 + md5: 7071f524e58d346948d4ac7ae7b5d2f2 + license: BSL-1.0 + size: 13983 + timestamp: 1730672186474 +- conda: https://prefix.dev/conda-forge/win-64/vc-14.3-h41ae7f8_31.conda + sha256: cb357591d069a1e6cb74199a8a43a7e3611f72a6caed9faa49dbb3d7a0a98e0b + md5: 28f4ca1e0337d0f27afb8602663c5723 + depends: + - vc14_runtime >=14.44.35208 + track_features: + - vc14 + license: BSD-3-Clause + license_family: BSD + size: 18249 + timestamp: 1753739241465 +- conda: https://prefix.dev/conda-forge/win-64/vc14_runtime-14.44.35208-h818238b_31.conda + sha256: af4b4b354b87a9a8d05b8064ff1ea0b47083274f7c30b4eb96bc2312c9b5f08f + md5: 603e41da40a765fd47995faa021da946 + depends: + - ucrt >=10.0.20348.0 + - vcomp14 14.44.35208 h818238b_31 + constrains: + - vs2015_runtime 14.44.35208.* *_31 + license: LicenseRef-MicrosoftVisualCpp2015-2022Runtime + license_family: Proprietary + size: 682424 + timestamp: 1753739239305 +- conda: https://prefix.dev/conda-forge/win-64/vcomp14-14.44.35208-h818238b_31.conda + sha256: 67b317b64f47635415776718d25170a9a6f9a1218c0f5a6202bfd687e07b6ea4 + md5: a6b1d5c1fc3cb89f88f7179ee6a9afe3 + depends: + - ucrt >=10.0.20348.0 + constrains: + - vs2015_runtime 14.44.35208.* *_31 + license: LicenseRef-MicrosoftVisualCpp2015-2022Runtime + license_family: Proprietary + size: 113963 + timestamp: 1753739198723 +- conda: https://prefix.dev/conda-forge/win-64/vs2015_runtime-14.44.35208-h38c0c73_31.conda + sha256: 8b20152d00e1153ccb1ed377a160110482f286a6d85a82b57ffcd60517d523a7 + md5: d75abcfbc522ccd98082a8c603fce34c + depends: + - vc14_runtime >=14.44.35208 + license: BSD-3-Clause + license_family: BSD + size: 18249 + timestamp: 1753739241918 +- conda: https://prefix.dev/conda-forge/linux-64/vtk-9.4.2-he433b22_3.conda + sha256: 47cb29acb6910cddff6fd01579e8e8ff36ea074dd486e7cbfbbb1f36eb8e1c29 + md5: ad9f6b6b64bdf725562d44e7ff35568d + depends: + - eigen + - expat + - libboost-devel + - libgl-devel + - liblzma-devel + - libopengl-devel + - python_abi 3.11.* *_cp311 + - tbb-devel + - vtk-base >=9.4.2,<9.4.3.0a0 + - vtk-io-ffmpeg >=9.4.2,<9.4.3.0a0 + license: BSD-3-Clause + license_family: BSD + size: 27886 + timestamp: 1753499633903 +- conda: https://prefix.dev/conda-forge/linux-aarch64/vtk-9.4.2-h24e8a0a_3.conda + sha256: b390b1d7706aceb186ad5cdb4d4c0a7aa346848d8d628adfefad9abafff1921c + md5: b3fcb9c3863c5cd991914b71dabaec47 + depends: + - eigen + - expat + - libboost-devel + - libgl-devel + - liblzma-devel + - libopengl-devel + - python_abi 3.11.* *_cp311 + - tbb-devel + - vtk-base >=9.4.2,<9.4.3.0a0 + - vtk-io-ffmpeg >=9.4.2,<9.4.3.0a0 + license: BSD-3-Clause + license_family: BSD + size: 27969 + timestamp: 1753501559648 +- conda: https://prefix.dev/conda-forge/osx-arm64/vtk-9.4.2-h11a73fa_3.conda + sha256: 64bf89d5f0669b34e077de7dcccf7c45f09bd8b508f2ef4ee728d4bb2e8226d1 + md5: 545d5a90c3d4baf54c55295d5356ddfe + depends: + - eigen + - expat + - libboost-devel + - liblzma-devel + - python_abi 3.11.* *_cp311 + - tbb-devel + - vtk-base >=9.4.2,<9.4.3.0a0 + - vtk-io-ffmpeg >=9.4.2,<9.4.3.0a0 + license: BSD-3-Clause + license_family: BSD + size: 28122 + timestamp: 1753494595243 +- conda: https://prefix.dev/conda-forge/win-64/vtk-9.4.2-h6f36216_3.conda + sha256: 8d75edaf4410913070c15e855efbeb218cf0e47bc3dd187aa8d376499a1d2d94 + md5: 473ae658bf05b2dd9a7f5eaa7184599e + depends: + - eigen + - expat + - libboost-devel + - liblzma-devel + - python_abi 3.11.* *_cp311 + - tbb-devel + - vtk-base >=9.4.2,<9.4.3.0a0 + license: BSD-3-Clause + license_family: BSD + size: 28747 + timestamp: 1753504426681 +- conda: https://prefix.dev/conda-forge/linux-64/vtk-base-9.4.2-py311hc26c8ec_1.conda + sha256: 7fee36c221332efa4a427b8518ea0ee0a8397569921c577e97d8494457654438 + md5: a7c42afeb9208906fef1dd9017a3f429 + depends: + - __glibc >=2.17,<3.0.a0 + - double-conversion >=3.3.1,<3.4.0a0 + - gl2ps >=1.4.2,<1.4.3.0a0 + - hdf5 >=1.14.6,<1.14.7.0a0 + - jsoncpp >=1.9.6,<1.9.7.0a0 + - libexpat >=2.7.0,<3.0a0 + - libfreetype >=2.13.3 + - libfreetype6 >=2.13.3 + - libgcc >=13 + - libglvnd >=1.7.0,<2.0a0 + - libglx >=1.7.0,<2.0a0 + - libjpeg-turbo >=3.1.0,<4.0a0 + - liblzma >=5.8.1,<6.0a0 + - libnetcdf >=4.9.2,<4.9.3.0a0 + - libogg >=1.3.5,<1.4.0a0 + - libpng >=1.6.47,<1.7.0a0 + - libsqlite >=3.49.2,<4.0a0 + - libstdcxx >=13 + - libtheora >=1.1.1,<1.2.0a0 + - libtiff >=4.7.0,<4.8.0a0 + - libxml2 >=2.13.8,<2.14.0a0 + - libzlib >=1.3.1,<2.0a0 + - loguru + - lz4-c >=1.10.0,<1.11.0a0 + - matplotlib-base >=2.0.0 + - nlohmann_json + - numpy + - proj >=9.6.0,<9.7.0a0 + - pugixml >=1.15,<1.16.0a0 + - python >=3.11,<3.12.0a0 + - python_abi 3.11.* *_cp311 + - qt6-main >=6.9.0,<6.10.0a0 + - tbb >=2021.13.0 + - utfcpp + - wslink + - xorg-libx11 >=1.8.12,<2.0a0 + - xorg-libxcursor >=1.2.3,<2.0a0 + constrains: + - paraview ==9999999999 + - libboost-headers >=1.86.0,<1.87.0a0 + license: BSD-3-Clause + license_family: BSD + size: 57450902 + timestamp: 1747922263624 +- conda: https://prefix.dev/conda-forge/linux-aarch64/vtk-base-9.4.2-py311h06be8d0_1.conda + sha256: 45fcd6ce969e5d1b34b93be36286d3c23a06e6fa4f80600c70340b00bd9e09dd + md5: 5a9b7185d8a421ebbecb2749d9803548 + depends: + - double-conversion >=3.3.1,<3.4.0a0 + - gl2ps >=1.4.2,<1.4.3.0a0 + - hdf5 >=1.14.6,<1.14.7.0a0 + - jsoncpp >=1.9.6,<1.9.7.0a0 + - libexpat >=2.7.0,<3.0a0 + - libfreetype >=2.13.3 + - libfreetype6 >=2.13.3 + - libgcc >=13 + - libglvnd >=1.7.0,<2.0a0 + - libglx >=1.7.0,<2.0a0 + - libjpeg-turbo >=3.1.0,<4.0a0 + - liblzma >=5.8.1,<6.0a0 + - libnetcdf >=4.9.2,<4.9.3.0a0 + - libogg >=1.3.5,<1.4.0a0 + - libpng >=1.6.47,<1.7.0a0 + - libsqlite >=3.49.2,<4.0a0 + - libstdcxx >=13 + - libtheora >=1.1.1,<1.2.0a0 + - libtiff >=4.7.0,<4.8.0a0 + - libxml2 >=2.13.8,<2.14.0a0 + - libzlib >=1.3.1,<2.0a0 + - loguru + - lz4-c >=1.10.0,<1.11.0a0 + - matplotlib-base >=2.0.0 + - nlohmann_json + - numpy + - proj >=9.6.0,<9.7.0a0 + - pugixml >=1.15,<1.16.0a0 + - python >=3.11,<3.12.0a0 + - python >=3.11,<3.12.0a0 *_cpython + - python_abi 3.11.* *_cp311 + - qt6-main >=6.9.0,<6.10.0a0 + - tbb >=2021.13.0 + - utfcpp + - wslink + - xorg-libx11 >=1.8.12,<2.0a0 + - xorg-libxcursor >=1.2.3,<2.0a0 + constrains: + - paraview ==9999999999 + - libboost-headers >=1.86.0,<1.87.0a0 + license: BSD-3-Clause + license_family: BSD + size: 53026948 + timestamp: 1747924661502 +- conda: https://prefix.dev/conda-forge/osx-arm64/vtk-base-9.4.2-py311h48cd792_1.conda + sha256: fd8433dde7f2030cc7b7e80f19710097b0c264bda5ee892cfad8e65dc9b4e7e6 + md5: 253230023cb3df1aefd28d101cc331bd + depends: + - __osx >=11.0 + - double-conversion >=3.3.1,<3.4.0a0 + - hdf5 >=1.14.6,<1.14.7.0a0 + - jsoncpp >=1.9.6,<1.9.7.0a0 + - libcxx >=18 + - libexpat >=2.7.0,<3.0a0 + - libfreetype >=2.13.3 + - libfreetype6 >=2.13.3 + - libjpeg-turbo >=3.1.0,<4.0a0 + - liblzma >=5.8.1,<6.0a0 + - libnetcdf >=4.9.2,<4.9.3.0a0 + - libogg >=1.3.5,<1.4.0a0 + - libpng >=1.6.47,<1.7.0a0 + - libsqlite >=3.49.2,<4.0a0 + - libtheora >=1.1.1,<1.2.0a0 + - libtiff >=4.7.0,<4.8.0a0 + - libxml2 >=2.13.8,<2.14.0a0 + - libzlib >=1.3.1,<2.0a0 + - loguru + - lz4-c >=1.10.0,<1.11.0a0 + - matplotlib-base >=2.0.0 + - nlohmann_json + - numpy + - proj >=9.6.0,<9.7.0a0 + - pugixml >=1.15,<1.16.0a0 + - python >=3.11,<3.12.0a0 + - python >=3.11,<3.12.0a0 *_cpython + - python_abi 3.11.* *_cp311 + - qt6-main >=6.9.0,<6.10.0a0 + - tbb >=2021.13.0 + - utfcpp + - wslink + constrains: + - libboost-headers >=1.86.0,<1.87.0a0 + - paraview ==9999999999 + license: BSD-3-Clause + license_family: BSD + size: 42203426 + timestamp: 1747922992646 +- conda: https://prefix.dev/conda-forge/win-64/vtk-base-9.4.2-py311h0d49f04_1.conda + sha256: 1dbad204cb3a3d3cd8a31b0237a642ee1b54a45e99d85bb584e1da20d25347a7 + md5: 85ee7a2abe83ddd708d66710ad462be5 + depends: + - double-conversion >=3.3.1,<3.4.0a0 + - ffmpeg >=7.1.1,<8.0a0 + - gl2ps >=1.4.2,<1.4.3.0a0 + - hdf5 >=1.14.6,<1.14.7.0a0 + - jsoncpp >=1.9.6,<1.9.7.0a0 + - libexpat >=2.7.0,<3.0a0 + - libfreetype >=2.13.3 + - libfreetype6 >=2.13.3 + - libjpeg-turbo >=3.1.0,<4.0a0 + - liblzma >=5.8.1,<6.0a0 + - libnetcdf >=4.9.2,<4.9.3.0a0 + - libogg >=1.3.5,<1.4.0a0 + - libpng >=1.6.47,<1.7.0a0 + - libsqlite >=3.49.2,<4.0a0 + - libtheora >=1.1.1,<1.2.0a0 + - libtiff >=4.7.0,<4.8.0a0 + - libxml2 >=2.13.8,<2.14.0a0 + - libzlib >=1.3.1,<2.0a0 + - loguru + - lz4-c >=1.10.0,<1.11.0a0 + - matplotlib-base >=2.0.0 + - nlohmann_json + - numpy + - proj >=9.6.0,<9.7.0a0 + - pugixml >=1.15,<1.16.0a0 + - python >=3.11,<3.12.0a0 + - python_abi 3.11.* *_cp311 + - qt6-main >=6.9.0,<6.10.0a0 + - tbb >=2021.13.0 + - ucrt >=10.0.20348.0 + - utfcpp + - vc >=14.3,<15 + - vc14_runtime >=14.42.34438 + - wslink + constrains: + - libboost-headers >=1.86.0,<1.87.0a0 + - paraview ==9999999999 + license: BSD-3-Clause + license_family: BSD + size: 40414468 + timestamp: 1747933296909 +- conda: https://prefix.dev/conda-forge/linux-64/vtk-io-ffmpeg-9.4.2-h5554b43_1.conda + sha256: 55ef549c39d9fe33cfa70fb06c5693f0ed8d3cd3c0fd6dfb3538dd28b3bbd97d + md5: e696e8e95bd8c35d8c2a2e5159a8377e + depends: + - ffmpeg >=7.1.1,<8.0a0 + - python_abi 3.11.* *_cp311 + - vtk-base 9.4.2 py311hc26c8ec_1 + license: BSD-3-Clause + license_family: BSD + size: 90456 + timestamp: 1747922459755 +- conda: https://prefix.dev/conda-forge/linux-aarch64/vtk-io-ffmpeg-9.4.2-hc80fd1f_1.conda + sha256: 6286752d302b620a7f785924db3682d9fe3f2614066bc8e874f3bdccb9fb42a3 + md5: aab93e3640ecd255db6e0f56fee8f0ea + depends: + - ffmpeg >=7.1.1,<8.0a0 + - python_abi 3.11.* *_cp311 + - vtk-base 9.4.2 py311h06be8d0_1 + license: BSD-3-Clause + license_family: BSD + size: 90124 + timestamp: 1747924876940 +- conda: https://prefix.dev/conda-forge/osx-arm64/vtk-io-ffmpeg-9.4.2-h142d020_1.conda + sha256: 02bc1f8c06844c614aef6ab62b97160d739f5238b20fb94a0ea36306ca053cfb + md5: e72427890d724f624acb5d2a2dd790f6 + depends: + - ffmpeg >=7.1.1,<8.0a0 + - python_abi 3.11.* *_cp311 + - vtk-base 9.4.2 py311h48cd792_1 + license: BSD-3-Clause + license_family: BSD + size: 78960 + timestamp: 1747923134837 +- conda: https://prefix.dev/conda-forge/linux-64/wayland-1.24.0-h3e06ad9_0.conda + sha256: ba673427dcd480cfa9bbc262fd04a9b1ad2ed59a159bd8f7e750d4c52282f34c + md5: 0f2ca7906bf166247d1d760c3422cb8a + depends: + - __glibc >=2.17,<3.0.a0 + - libexpat >=2.7.0,<3.0a0 + - libffi >=3.4.6,<3.5.0a0 + - libgcc >=13 + - libstdcxx >=13 + license: MIT + license_family: MIT + size: 330474 + timestamp: 1751817998141 +- conda: https://prefix.dev/conda-forge/linux-aarch64/wayland-1.24.0-h698ed42_0.conda + sha256: 2a58c43ae7a618a329705df8406420ac89c9093386c5ca356ae7f2291f012e58 + md5: 2a57237cee70cb13c402af1ef6f8e5f6 + depends: + - libexpat >=2.7.0,<3.0a0 + - libffi >=3.4.6,<3.5.0a0 + - libgcc >=13 + - libstdcxx >=13 + license: MIT + license_family: MIT + size: 332236 + timestamp: 1751818023302 +- conda: https://prefix.dev/conda-forge/noarch/wayland-protocols-1.45-hd8ed1ab_0.conda + sha256: 37b0e03a943c048e143f624c51b329778f36923052092fd938827f8c19a4941d + md5: 6db9be3b67190229479780eeeee1b35b + license: MIT + license_family: MIT + size: 138011 + timestamp: 1749836220507 +- conda: https://prefix.dev/conda-forge/noarch/win32_setctime-1.2.0-pyhd8ed1ab_0.conda + sha256: d7b3128166949d462133d7a86fd8a8d80224dd2ce49cfbdcde9e4b3f8b67bbf2 + md5: e79f83003ee3dba79bf795fcd1bfcc89 + depends: + - python >=3.9 + license: MIT + license_family: MIT + size: 9751 + timestamp: 1733752552137 +- conda: https://prefix.dev/conda-forge/noarch/wslink-2.4.0-pyhd8ed1ab_0.conda + sha256: 0f7258a383db60fb8563eb64df13c0df1c4c6cdcdb3428a06f3ef4f562fc5beb + md5: a7c17eeb817efebaf59a48fdeab284a4 + depends: + - aiohttp <4 + - msgpack-python >=1,<2 + - python >=3.9 + license: BSD-3-Clause + license_family: BSD + size: 35820 + timestamp: 1755596457702 +- conda: https://prefix.dev/conda-forge/linux-64/x264-1!164.3095-h166bdaf_2.tar.bz2 + sha256: 175315eb3d6ea1f64a6ce470be00fa2ee59980108f246d3072ab8b977cb048a5 + md5: 6c99772d483f566d59e25037fea2c4b1 + depends: + - libgcc-ng >=12 + license: GPL-2.0-or-later + license_family: GPL + size: 897548 + timestamp: 1660323080555 +- conda: https://prefix.dev/conda-forge/linux-aarch64/x264-1!164.3095-h4e544f5_2.tar.bz2 + sha256: b48f150db8c052c197691c9d76f59e252d3a7f01de123753d51ebf2eed1cf057 + md5: 0efaf807a0b5844ce5f605bd9b668281 + depends: + - libgcc-ng >=12 + license: GPL-2.0-or-later + license_family: GPL + size: 1000661 + timestamp: 1660324722559 +- conda: https://prefix.dev/conda-forge/osx-arm64/x264-1!164.3095-h57fd34a_2.tar.bz2 + sha256: debdf60bbcfa6a60201b12a1d53f36736821db281a28223a09e0685edcce105a + md5: b1f6dccde5d3a1f911960b6e567113ff + license: GPL-2.0-or-later + license_family: GPL + size: 717038 + timestamp: 1660323292329 +- conda: https://prefix.dev/conda-forge/win-64/x264-1!164.3095-h8ffe710_2.tar.bz2 + sha256: 97166b318f8c68ffe4d50b2f4bd36e415219eeaef233e7d41c54244dc6108249 + md5: 19e39905184459760ccb8cf5c75f148b + depends: + - vc >=14.1,<15 + - vs2015_runtime >=14.16.27033 + license: GPL-2.0-or-later + license_family: GPL + size: 1041889 + timestamp: 1660323726084 +- conda: https://prefix.dev/conda-forge/linux-64/x265-3.5-h924138e_3.tar.bz2 + sha256: 76c7405bcf2af639971150f342550484efac18219c0203c5ee2e38b8956fe2a0 + md5: e7f6ed84d4623d52ee581325c1587a6b + depends: + - libgcc-ng >=10.3.0 + - libstdcxx-ng >=10.3.0 + license: GPL-2.0-or-later + license_family: GPL + size: 3357188 + timestamp: 1646609687141 +- conda: https://prefix.dev/conda-forge/linux-aarch64/x265-3.5-hdd96247_3.tar.bz2 + sha256: cb2227f2441499900bdc0168eb423d7b2056c8fd5a3541df4e2d05509a88c668 + md5: 786853760099c74a1d4f0da98dd67aea + depends: + - libgcc-ng >=10.3.0 + - libstdcxx-ng >=10.3.0 + license: GPL-2.0-or-later + license_family: GPL + size: 1018181 + timestamp: 1646610147365 +- conda: https://prefix.dev/conda-forge/osx-arm64/x265-3.5-hbc6ce65_3.tar.bz2 + sha256: 2fed6987dba7dee07bd9adc1a6f8e6c699efb851431bcb6ebad7de196e87841d + md5: b1f7f2780feffe310b068c021e8ff9b2 + depends: + - libcxx >=12.0.1 + license: GPL-2.0-or-later + license_family: GPL + size: 1832744 + timestamp: 1646609481185 +- conda: https://prefix.dev/conda-forge/win-64/x265-3.5-h2d74725_3.tar.bz2 + sha256: 02b9874049112f2b7335c9a3e880ac05d99a08d9a98160c5a98898b2b3ac42b2 + md5: ca7129a334198f08347fb19ac98a2de9 + depends: + - vc >=14.1,<15 + - vs2015_runtime >=14.16.27033 + license: GPL-2.0-or-later + license_family: GPL + size: 5517425 + timestamp: 1646611941216 +- conda: https://prefix.dev/conda-forge/linux-64/xcb-util-0.4.1-h4f16b4b_2.conda + sha256: ad8cab7e07e2af268449c2ce855cbb51f43f4664936eff679b1f3862e6e4b01d + md5: fdc27cb255a7a2cc73b7919a968b48f0 + depends: + - __glibc >=2.17,<3.0.a0 + - libgcc >=13 + - libxcb >=1.17.0,<2.0a0 + license: MIT + license_family: MIT + size: 20772 + timestamp: 1750436796633 +- conda: https://prefix.dev/conda-forge/linux-aarch64/xcb-util-0.4.1-hca56bd8_2.conda + sha256: d874906e236a5edc9309d479599bf2de4d8adca0f23c355b76759d5fb3c4bef8 + md5: 159ffec8f7fab775669a538f0b29373a + depends: + - libgcc >=13 + - libxcb >=1.17.0,<2.0a0 + license: MIT + license_family: MIT + size: 21517 + timestamp: 1750437961489 +- conda: https://prefix.dev/conda-forge/linux-64/xcb-util-cursor-0.1.5-hb9d3cd8_0.conda + sha256: c7b35db96f6e32a9e5346f97adc968ef2f33948e3d7084295baebc0e33abdd5b + md5: eb44b3b6deb1cab08d72cb61686fe64c + depends: + - __glibc >=2.17,<3.0.a0 + - libgcc >=13 + - libxcb >=1.13 + - libxcb >=1.16,<2.0.0a0 + - xcb-util-image >=0.4.0,<0.5.0a0 + - xcb-util-renderutil >=0.3.10,<0.4.0a0 + license: MIT + license_family: MIT + size: 20296 + timestamp: 1726125844850 +- conda: https://prefix.dev/conda-forge/linux-aarch64/xcb-util-cursor-0.1.5-h86ecc28_0.conda + sha256: c2608dc625c7aacffff938813f985c5f21c6d8a4da3280d57b5287ba1b27ec21 + md5: d6bb2038d26fa118d5cbc2761116f3e5 + depends: + - libgcc >=13 + - libxcb >=1.13 + - libxcb >=1.16,<2.0.0a0 + - xcb-util-image >=0.4.0,<0.5.0a0 + - xcb-util-renderutil >=0.3.10,<0.4.0a0 + license: MIT + license_family: MIT + size: 21123 + timestamp: 1726125922919 +- conda: https://prefix.dev/conda-forge/linux-64/xcb-util-image-0.4.0-hb711507_2.conda + sha256: 94b12ff8b30260d9de4fd7a28cca12e028e572cbc504fd42aa2646ec4a5bded7 + md5: a0901183f08b6c7107aab109733a3c91 + depends: + - libgcc-ng >=12 + - libxcb >=1.16,<2.0.0a0 + - xcb-util >=0.4.1,<0.5.0a0 + license: MIT + license_family: MIT + size: 24551 + timestamp: 1718880534789 +- conda: https://prefix.dev/conda-forge/linux-aarch64/xcb-util-image-0.4.0-h5c728e9_2.conda + sha256: a43058edc001e8fb97f9b291028a6ca16a8969d9b56a998c7aecea083323ac97 + md5: b82e5c78dbbfa931980e8bfe83bce913 + depends: + - libgcc-ng >=12 + - libxcb >=1.16,<2.0.0a0 + - xcb-util >=0.4.1,<0.5.0a0 + license: MIT + license_family: MIT + size: 24910 + timestamp: 1718880504308 +- conda: https://prefix.dev/conda-forge/linux-64/xcb-util-keysyms-0.4.1-hb711507_0.conda + sha256: 546e3ee01e95a4c884b6401284bb22da449a2f4daf508d038fdfa0712fe4cc69 + md5: ad748ccca349aec3e91743e08b5e2b50 + depends: + - libgcc-ng >=12 + - libxcb >=1.16,<2.0.0a0 + license: MIT + license_family: MIT + size: 14314 + timestamp: 1718846569232 +- conda: https://prefix.dev/conda-forge/linux-aarch64/xcb-util-keysyms-0.4.1-h5c728e9_0.conda + sha256: 9d92daa7feb0e14f81bf0d4b3f0b6ff1e8cec3ff514df8a0c06c4d49b518c315 + md5: 57ca8564599ddf8b633c4ea6afee6f3a + depends: + - libgcc-ng >=12 + - libxcb >=1.16,<2.0.0a0 + license: MIT + license_family: MIT + size: 14343 + timestamp: 1718846624153 +- conda: https://prefix.dev/conda-forge/linux-64/xcb-util-renderutil-0.3.10-hb711507_0.conda + sha256: 2d401dadc43855971ce008344a4b5bd804aca9487d8ebd83328592217daca3df + md5: 0e0cbe0564d03a99afd5fd7b362feecd + depends: + - libgcc-ng >=12 + - libxcb >=1.16,<2.0.0a0 + license: MIT + license_family: MIT + size: 16978 + timestamp: 1718848865819 +- conda: https://prefix.dev/conda-forge/linux-aarch64/xcb-util-renderutil-0.3.10-h5c728e9_0.conda + sha256: 5827f5617c9741599f72bb7f090726f89c6ef91e4bada621895fdc2bbadfb0f1 + md5: 7beeda4223c5484ef72d89fb66b7e8c1 + depends: + - libgcc-ng >=12 + - libxcb >=1.16,<2.0.0a0 + license: MIT + license_family: MIT + size: 18139 + timestamp: 1718849914457 +- conda: https://prefix.dev/conda-forge/linux-64/xcb-util-wm-0.4.2-hb711507_0.conda + sha256: 31d44f297ad87a1e6510895740325a635dd204556aa7e079194a0034cdd7e66a + md5: 608e0ef8256b81d04456e8d211eee3e8 + depends: + - libgcc-ng >=12 + - libxcb >=1.16,<2.0.0a0 + license: MIT + license_family: MIT + size: 51689 + timestamp: 1718844051451 +- conda: https://prefix.dev/conda-forge/linux-aarch64/xcb-util-wm-0.4.2-h5c728e9_0.conda + sha256: 3f52cd8783e7d953c54266255fd11886c611c2620545eabc28ec8cf470ae8be7 + md5: f14dcda6894722e421da2b7dcffb0b78 + depends: + - libgcc-ng >=12 + - libxcb >=1.16,<2.0.0a0 + license: MIT + license_family: MIT + size: 50772 + timestamp: 1718845072660 +- conda: https://prefix.dev/conda-forge/linux-64/xkeyboard-config-2.45-hb9d3cd8_0.conda + sha256: a5d4af601f71805ec67403406e147c48d6bad7aaeae92b0622b7e2396842d3fe + md5: 397a013c2dc5145a70737871aaa87e98 + depends: + - __glibc >=2.17,<3.0.a0 + - libgcc >=13 + - xorg-libx11 >=1.8.12,<2.0a0 + license: MIT + license_family: MIT + size: 392406 + timestamp: 1749375847832 +- conda: https://prefix.dev/conda-forge/linux-aarch64/xkeyboard-config-2.45-h86ecc28_0.conda + sha256: 730ff2f6fbfecce94db54bbf3f1ae0ce79c54b6abc089f8a65a041525228d454 + md5: 01251d1503a253e39be4fa9bcf447d63 + depends: + - libgcc >=13 + - xorg-libx11 >=1.8.12,<2.0a0 + license: MIT + license_family: MIT + size: 392754 + timestamp: 1749375869926 +- conda: https://prefix.dev/conda-forge/linux-64/xorg-libice-1.1.2-hb9d3cd8_0.conda + sha256: c12396aabb21244c212e488bbdc4abcdef0b7404b15761d9329f5a4a39113c4b + md5: fb901ff28063514abb6046c9ec2c4a45 + depends: + - __glibc >=2.17,<3.0.a0 + - libgcc >=13 + license: MIT + license_family: MIT + size: 58628 + timestamp: 1734227592886 +- conda: https://prefix.dev/conda-forge/linux-aarch64/xorg-libice-1.1.2-h86ecc28_0.conda + sha256: a2ba1864403c7eb4194dacbfe2777acf3d596feae43aada8d1b478617ce45031 + md5: c8d8ec3e00cd0fd8a231789b91a7c5b7 + depends: + - libgcc >=13 + license: MIT + license_family: MIT + size: 60433 + timestamp: 1734229908988 +- conda: https://prefix.dev/conda-forge/osx-arm64/xorg-libice-1.1.2-h5505292_0.conda + sha256: 0e68b75a51901294ab21c031dcc1e485a65770a4893f98943b0908c4217b14e1 + md5: daf3b34253eea046c9ab94e0c3b2f83d + depends: + - __osx >=11.0 + license: MIT + license_family: MIT + size: 48418 + timestamp: 1734227712919 +- conda: https://prefix.dev/conda-forge/win-64/xorg-libice-1.1.2-h0e40799_0.conda + sha256: bf1d34142b1bf9b5a4eed96bcc77bc4364c0e191405fd30d2f9b48a04d783fd3 + md5: 105cb93a47df9c548e88048dc9cbdbc9 + depends: + - libgcc >=13 + - libwinpthread >=12.0.0.r4.gg4f2fc60ca + - ucrt >=10.0.20348.0 + - xorg-libx11 >=1.8.10,<2.0a0 + license: MIT + license_family: MIT + size: 236306 + timestamp: 1734228116846 +- conda: https://prefix.dev/conda-forge/linux-64/xorg-libsm-1.2.6-he73a12e_0.conda + sha256: 277841c43a39f738927145930ff963c5ce4c4dacf66637a3d95d802a64173250 + md5: 1c74ff8c35dcadf952a16f752ca5aa49 + depends: + - __glibc >=2.17,<3.0.a0 + - libgcc >=13 + - libuuid >=2.38.1,<3.0a0 + - xorg-libice >=1.1.2,<2.0a0 + license: MIT + license_family: MIT + size: 27590 + timestamp: 1741896361728 +- conda: https://prefix.dev/conda-forge/linux-aarch64/xorg-libsm-1.2.6-h0808dbd_0.conda + sha256: b86a819cd16f90c01d9d81892155126d01555a20dabd5f3091da59d6309afd0a + md5: 2d1409c50882819cb1af2de82e2b7208 + depends: + - libgcc >=13 + - libuuid >=2.38.1,<3.0a0 + - xorg-libice >=1.1.2,<2.0a0 + license: MIT + license_family: MIT + size: 28701 + timestamp: 1741897678254 +- conda: https://prefix.dev/conda-forge/osx-arm64/xorg-libsm-1.2.6-h5505292_0.conda + sha256: 9bd3cb47ad7bb6c2d0b3b39d76c0e0a7b1d39fc76524fe76a7ff014073467bf5 + md5: a01171a0aee17fc4e74a50971a87755d + depends: + - __osx >=11.0 + - xorg-libice >=1.1.2,<2.0a0 + license: MIT + license_family: MIT + size: 24419 + timestamp: 1741896544082 +- conda: https://prefix.dev/conda-forge/win-64/xorg-libsm-1.2.6-h0e40799_0.conda + sha256: 065d49b0d1e6873ed1238e962f56cb8204c585cdc5c9bd4ae2bf385cadb5bd65 + md5: 570c9a6d9b4909e45d49e9a5daa528de + depends: + - libgcc >=13 + - libwinpthread >=12.0.0.r4.gg4f2fc60ca + - ucrt >=10.0.20348.0 + - xorg-libice >=1.1.2,<2.0a0 + license: MIT + license_family: MIT + size: 97096 + timestamp: 1741896840170 +- conda: https://prefix.dev/conda-forge/linux-64/xorg-libx11-1.8.12-h4f16b4b_0.conda + sha256: 51909270b1a6c5474ed3978628b341b4d4472cd22610e5f22b506855a5e20f67 + md5: db038ce880f100acc74dba10302b5630 + depends: + - __glibc >=2.17,<3.0.a0 + - libgcc >=13 + - libxcb >=1.17.0,<2.0a0 + license: MIT + license_family: MIT + size: 835896 + timestamp: 1741901112627 +- conda: https://prefix.dev/conda-forge/linux-aarch64/xorg-libx11-1.8.12-hca56bd8_0.conda + sha256: 452977d8ad96f04ec668ba74f46e70a53e00f99c0e0307956aeca75894c8131d + md5: 3df132f0048b9639bc091ef22937c111 + depends: + - libgcc >=13 + - libxcb >=1.17.0,<2.0a0 + license: MIT + license_family: MIT + size: 864850 + timestamp: 1741901264068 +- conda: https://prefix.dev/conda-forge/osx-arm64/xorg-libx11-1.8.12-h6a5fb8c_0.conda + sha256: 3ba39f182ecb6bf0bfb2dbbc08b1fc80a0a97e5c07cad06a03e71baf1fe7ac9d + md5: 89b59aaa3c35257dba0b7c2d980f35f0 + depends: + - __osx >=11.0 + - libxcb >=1.17.0,<2.0a0 + license: MIT + license_family: MIT + size: 761938 + timestamp: 1741901455497 +- conda: https://prefix.dev/conda-forge/win-64/xorg-libx11-1.8.12-hf48077a_0.conda + sha256: 3f0854bc592d31a5742c6c4550914a976c89d73b74d052545b418521d21b3043 + md5: c4f435ac09fd41606bba9f0deb12e412 + depends: + - libgcc >=13 + - libwinpthread >=12.0.0.r4.gg4f2fc60ca + - libxcb >=1.17.0,<2.0a0 + - ucrt >=10.0.20348.0 + license: MIT + license_family: MIT + size: 951392 + timestamp: 1741902072732 +- conda: https://prefix.dev/conda-forge/linux-64/xorg-libxau-1.0.12-hb9d3cd8_0.conda + sha256: ed10c9283974d311855ae08a16dfd7e56241fac632aec3b92e3cfe73cff31038 + md5: f6ebe2cb3f82ba6c057dde5d9debe4f7 + depends: + - __glibc >=2.17,<3.0.a0 + - libgcc >=13 + license: MIT + license_family: MIT + size: 14780 + timestamp: 1734229004433 +- conda: https://prefix.dev/conda-forge/linux-aarch64/xorg-libxau-1.0.12-h86ecc28_0.conda + sha256: 7829a0019b99ba462aece7592d2d7f42e12d12ccd3b9614e529de6ddba453685 + md5: d5397424399a66d33c80b1f2345a36a6 + depends: + - libgcc >=13 + license: MIT + license_family: MIT + size: 15873 + timestamp: 1734230458294 +- conda: https://prefix.dev/conda-forge/osx-arm64/xorg-libxau-1.0.12-h5505292_0.conda + sha256: f33e6f013fc36ebc200f09ddead83468544cb5c353a3b50499b07b8c34e28a8d + md5: 50901e0764b7701d8ed7343496f4f301 + depends: + - __osx >=11.0 + license: MIT + license_family: MIT + size: 13593 + timestamp: 1734229104321 +- conda: https://prefix.dev/conda-forge/win-64/xorg-libxau-1.0.12-h0e40799_0.conda + sha256: 047836241b2712aab1e29474a6f728647bff3ab57de2806b0bb0a6cf9a2d2634 + md5: 2ffbfae4548098297c033228256eb96e + depends: + - libgcc >=13 + - libwinpthread >=12.0.0.r4.gg4f2fc60ca + - ucrt >=10.0.20348.0 + license: MIT + license_family: MIT + size: 108013 + timestamp: 1734229474049 +- conda: https://prefix.dev/conda-forge/linux-64/xorg-libxaw-1.0.16-hb9d3cd8_0.conda + sha256: 105ff923b60286188978d7b3aa159b555e2baf4c736801f62602d4127159f06d + md5: 7c0a9bf62d573409d12ad14b362a96e5 + depends: + - __glibc >=2.17,<3.0.a0 + - libgcc >=13 + - xorg-libx11 >=1.8.10,<2.0a0 + - xorg-libxext >=1.3.6,<2.0a0 + - xorg-libxmu >=1.2.1,<2.0a0 + - xorg-libxpm >=3.5.17,<4.0a0 + - xorg-libxt >=1.3.0,<2.0a0 + license: MIT + license_family: MIT + size: 307032 + timestamp: 1727870272246 +- conda: https://prefix.dev/conda-forge/linux-aarch64/xorg-libxaw-1.0.16-h86ecc28_0.conda + sha256: 6b113e620781efc14c6ae8d6a65436f9c7e5231e2dd9384b7de71abb920eeee2 + md5: 4c4a80cc042d707a61dfe75f541e0d23 + depends: + - libgcc >=13 + - xorg-libx11 >=1.8.9,<2.0a0 + - xorg-libxext >=1.3.6,<2.0a0 + - xorg-libxmu >=1.2.1,<2.0a0 + - xorg-libxpm >=3.5.17,<4.0a0 + - xorg-libxt >=1.3.0,<2.0a0 + license: MIT + license_family: MIT + size: 331138 + timestamp: 1727870334121 +- conda: https://prefix.dev/conda-forge/osx-arm64/xorg-libxaw-1.0.16-hd74edd7_0.conda + sha256: 3572a4a377cd18c3355516ae459f6ca814e680aeaaa3f4de368c0b22f0bf6de3 + md5: 170c3f74f009881108256faccacc0632 + depends: + - __osx >=11.0 + - xorg-libx11 >=1.8.10,<2.0a0 + - xorg-libxext >=1.3.6,<2.0a0 + - xorg-libxmu >=1.2.1,<2.0a0 + - xorg-libxpm >=3.5.17,<4.0a0 + - xorg-libxt >=1.3.0,<2.0a0 + license: MIT + license_family: MIT + size: 247620 + timestamp: 1727870327702 +- conda: https://prefix.dev/conda-forge/linux-64/xorg-libxcomposite-0.4.6-hb9d3cd8_2.conda + sha256: 753f73e990c33366a91fd42cc17a3d19bb9444b9ca5ff983605fa9e953baf57f + md5: d3c295b50f092ab525ffe3c2aa4b7413 + depends: + - __glibc >=2.17,<3.0.a0 + - libgcc >=13 + - xorg-libx11 >=1.8.10,<2.0a0 + - xorg-libxfixes >=6.0.1,<7.0a0 + license: MIT + license_family: MIT + size: 13603 + timestamp: 1727884600744 +- conda: https://prefix.dev/conda-forge/linux-aarch64/xorg-libxcomposite-0.4.6-h86ecc28_2.conda + sha256: 0cb82160412adb6d83f03cf50e807a8e944682d556b2215992a6fbe9ced18bc0 + md5: 86051eee0766c3542be24844a9c3cf36 + depends: + - libgcc >=13 + - xorg-libx11 >=1.8.9,<2.0a0 + - xorg-libxfixes >=6.0.1,<7.0a0 + license: MIT + license_family: MIT + size: 13982 + timestamp: 1727884626338 +- conda: https://prefix.dev/conda-forge/linux-64/xorg-libxcursor-1.2.3-hb9d3cd8_0.conda + sha256: 832f538ade441b1eee863c8c91af9e69b356cd3e9e1350fff4fe36cc573fc91a + md5: 2ccd714aa2242315acaf0a67faea780b + depends: + - __glibc >=2.17,<3.0.a0 + - libgcc >=13 + - xorg-libx11 >=1.8.10,<2.0a0 + - xorg-libxfixes >=6.0.1,<7.0a0 + - xorg-libxrender >=0.9.11,<0.10.0a0 + license: MIT + license_family: MIT + size: 32533 + timestamp: 1730908305254 +- conda: https://prefix.dev/conda-forge/linux-aarch64/xorg-libxcursor-1.2.3-h86ecc28_0.conda + sha256: c5d3692520762322a9598e7448492309f5ee9d8f3aff72d787cf06e77c42507f + md5: f2054759c2203d12d0007005e1f1296d + depends: + - libgcc >=13 + - xorg-libx11 >=1.8.9,<2.0a0 + - xorg-libxfixes >=6.0.1,<7.0a0 + - xorg-libxrender >=0.9.11,<0.10.0a0 + license: MIT + license_family: MIT + size: 34596 + timestamp: 1730908388714 +- conda: https://prefix.dev/conda-forge/linux-64/xorg-libxdamage-1.1.6-hb9d3cd8_0.conda + sha256: 43b9772fd6582bf401846642c4635c47a9b0e36ca08116b3ec3df36ab96e0ec0 + md5: b5fcc7172d22516e1f965490e65e33a4 + depends: + - __glibc >=2.17,<3.0.a0 + - libgcc >=13 + - xorg-libx11 >=1.8.10,<2.0a0 + - xorg-libxext >=1.3.6,<2.0a0 + - xorg-libxfixes >=6.0.1,<7.0a0 + license: MIT + license_family: MIT + size: 13217 + timestamp: 1727891438799 +- conda: https://prefix.dev/conda-forge/linux-aarch64/xorg-libxdamage-1.1.6-h86ecc28_0.conda + sha256: 3afaa2f43eb4cb679fc0c3d9d7c50f0f2c80cc5d3df01d5d5fd60655d0bfa9be + md5: d5773c4e4d64428d7ddaa01f6f845dc7 + depends: + - libgcc >=13 + - xorg-libx11 >=1.8.9,<2.0a0 + - xorg-libxext >=1.3.6,<2.0a0 + - xorg-libxfixes >=6.0.1,<7.0a0 + license: MIT + license_family: MIT + size: 13794 + timestamp: 1727891406431 +- conda: https://prefix.dev/conda-forge/linux-64/xorg-libxdmcp-1.1.5-hb9d3cd8_0.conda + sha256: 6b250f3e59db07c2514057944a3ea2044d6a8cdde8a47b6497c254520fade1ee + md5: 8035c64cb77ed555e3f150b7b3972480 + depends: + - __glibc >=2.17,<3.0.a0 + - libgcc >=13 + license: MIT + license_family: MIT + size: 19901 + timestamp: 1727794976192 +- conda: https://prefix.dev/conda-forge/linux-aarch64/xorg-libxdmcp-1.1.5-h57736b2_0.conda + sha256: efcc150da5926cf244f757b8376d96a4db78bc15b8d90ca9f56ac6e75755971f + md5: 25a5a7b797fe6e084e04ffe2db02fc62 + depends: + - libgcc >=13 + license: MIT + license_family: MIT + size: 20615 + timestamp: 1727796660574 +- conda: https://prefix.dev/conda-forge/osx-arm64/xorg-libxdmcp-1.1.5-hd74edd7_0.conda + sha256: 9939a166d780700d81023546759102b33fdc2c5f11ef09f5f66c77210fd334c8 + md5: 77c447f48cab5d3a15ac224edb86a968 + depends: + - __osx >=11.0 + license: MIT + license_family: MIT + size: 18487 + timestamp: 1727795205022 +- conda: https://prefix.dev/conda-forge/win-64/xorg-libxdmcp-1.1.5-h0e40799_0.conda + sha256: 9075f98dcaa8e9957e4a3d9d30db05c7578a536950a31c200854c5c34e1edb2c + md5: 8393c0f7e7870b4eb45553326f81f0ff + depends: + - libgcc >=13 + - libwinpthread >=12.0.0.r4.gg4f2fc60ca + - ucrt >=10.0.20348.0 + license: MIT + license_family: MIT + size: 69920 + timestamp: 1727795651979 +- conda: https://prefix.dev/conda-forge/linux-64/xorg-libxext-1.3.6-hb9d3cd8_0.conda + sha256: da5dc921c017c05f38a38bd75245017463104457b63a1ce633ed41f214159c14 + md5: febbab7d15033c913d53c7a2c102309d + depends: + - __glibc >=2.17,<3.0.a0 + - libgcc >=13 + - xorg-libx11 >=1.8.10,<2.0a0 + license: MIT + license_family: MIT + size: 50060 + timestamp: 1727752228921 +- conda: https://prefix.dev/conda-forge/linux-aarch64/xorg-libxext-1.3.6-h57736b2_0.conda + sha256: 8e216b024f52e367463b4173f237af97cf7053c77d9ce3e958bc62473a053f71 + md5: bd1e86dd8aa3afd78a4bfdb4ef918165 + depends: + - libgcc >=13 + - xorg-libx11 >=1.8.9,<2.0a0 + license: MIT + license_family: MIT + size: 50746 + timestamp: 1727754268156 +- conda: https://prefix.dev/conda-forge/osx-arm64/xorg-libxext-1.3.6-hd74edd7_0.conda + sha256: 4526fcd879b74400e66cc2a041ca00c0ecd210486459cc65610b135be7c6a2d2 + md5: acf6c394865f1b7a51c8e57fec6fcde3 + depends: + - __osx >=11.0 + - xorg-libx11 >=1.8.10,<2.0a0 + license: MIT + license_family: MIT + size: 41870 + timestamp: 1727752280756 +- conda: https://prefix.dev/conda-forge/win-64/xorg-libxext-1.3.6-h0e40799_0.conda + sha256: 7fdc3135a340893aa544921115c3994ef4071a385d47cc11232d818f006c63e4 + md5: 4cd74e74f063fb6900d6eed2e9288112 + depends: + - libgcc >=13 + - libwinpthread >=12.0.0.r4.gg4f2fc60ca + - ucrt >=10.0.20348.0 + - xorg-libx11 >=1.8.10,<2.0a0 + license: MIT + license_family: MIT + size: 284715 + timestamp: 1727752838922 +- conda: https://prefix.dev/conda-forge/linux-64/xorg-libxfixes-6.0.1-hb9d3cd8_0.conda + sha256: 2fef37e660985794617716eb915865ce157004a4d567ed35ec16514960ae9271 + md5: 4bdb303603e9821baf5fe5fdff1dc8f8 + depends: + - __glibc >=2.17,<3.0.a0 + - libgcc >=13 + - xorg-libx11 >=1.8.10,<2.0a0 + license: MIT + license_family: MIT + size: 19575 + timestamp: 1727794961233 +- conda: https://prefix.dev/conda-forge/linux-aarch64/xorg-libxfixes-6.0.1-h57736b2_0.conda + sha256: f5c71e0555681a82a65c483374b91d91b2cb9a9903b3a22ddc00f36719fce549 + md5: 78f8715c002cc66991d7c11e3cf66039 + depends: + - libgcc >=13 + - xorg-libx11 >=1.8.9,<2.0a0 + license: MIT + license_family: MIT + size: 20289 + timestamp: 1727796500830 +- conda: https://prefix.dev/conda-forge/linux-64/xorg-libxi-1.8.2-hb9d3cd8_0.conda + sha256: 1a724b47d98d7880f26da40e45f01728e7638e6ec69f35a3e11f92acd05f9e7a + md5: 17dcc85db3c7886650b8908b183d6876 + depends: + - __glibc >=2.17,<3.0.a0 + - libgcc >=13 + - xorg-libx11 >=1.8.10,<2.0a0 + - xorg-libxext >=1.3.6,<2.0a0 + - xorg-libxfixes >=6.0.1,<7.0a0 + license: MIT + license_family: MIT + size: 47179 + timestamp: 1727799254088 +- conda: https://prefix.dev/conda-forge/linux-aarch64/xorg-libxi-1.8.2-h57736b2_0.conda + sha256: 7b587407ecb9ccd2bbaf0fb94c5dbdde4d015346df063e9502dc0ce2b682fb5e + md5: eeee3bdb31c6acde2b81ad1b8c287087 + depends: + - libgcc >=13 + - xorg-libx11 >=1.8.9,<2.0a0 + - xorg-libxext >=1.3.6,<2.0a0 + - xorg-libxfixes >=6.0.1,<7.0a0 + license: MIT + license_family: MIT + size: 48197 + timestamp: 1727801059062 +- conda: https://prefix.dev/conda-forge/linux-64/xorg-libxinerama-1.1.5-h5888daf_1.conda + sha256: 1b9141c027f9d84a9ee5eb642a0c19457c788182a5a73c5a9083860ac5c20a8c + md5: 5e2eb9bf77394fc2e5918beefec9f9ab + depends: + - __glibc >=2.17,<3.0.a0 + - libgcc >=13 + - libstdcxx >=13 + - xorg-libx11 >=1.8.10,<2.0a0 + - xorg-libxext >=1.3.6,<2.0a0 + license: MIT + license_family: MIT + size: 13891 + timestamp: 1727908521531 +- conda: https://prefix.dev/conda-forge/linux-aarch64/xorg-libxinerama-1.1.5-h5ad3122_1.conda + sha256: 5f84f820397db504e187754665d48d385e0a2a49f07ffc2372c7f42fa36dd972 + md5: a7b99f104e14b99ca773d2fe2d195585 + depends: + - libgcc >=13 + - libstdcxx >=13 + - xorg-libx11 >=1.8.9,<2.0a0 + - xorg-libxext >=1.3.6,<2.0a0 + license: MIT + license_family: MIT + size: 14388 + timestamp: 1727908606602 +- conda: https://prefix.dev/conda-forge/linux-64/xorg-libxmu-1.2.1-hb9d3cd8_1.conda + sha256: 467cba5106e628068487dcbc2ba2dbd6a434e75d752eaf0895086e9fe65e6a8d + md5: f35a9a2da717ade815ffa70c0e8bdfbd + depends: + - __glibc >=2.17,<3.0.a0 + - libgcc >=13 + - xorg-libx11 >=1.8.10,<2.0a0 + - xorg-libxext >=1.3.6,<2.0a0 + - xorg-libxt >=1.3.0,<2.0a0 + license: MIT + license_family: MIT + size: 89078 + timestamp: 1727965853556 +- conda: https://prefix.dev/conda-forge/linux-aarch64/xorg-libxmu-1.2.1-h57736b2_1.conda + sha256: 18a1d4591976d2266adf6951ce6edaadf9f4994408c6d15e0b5d8f41b8154671 + md5: 198cb350a783849b5683dbaac3ca96df + depends: + - libgcc >=13 + - xorg-libx11 >=1.8.9,<2.0a0 + - xorg-libxext >=1.3.6,<2.0a0 + - xorg-libxt >=1.3.0,<2.0a0 + license: MIT + license_family: MIT + size: 92167 + timestamp: 1727965913339 +- conda: https://prefix.dev/conda-forge/osx-arm64/xorg-libxmu-1.2.1-hd74edd7_1.conda + sha256: 9a920dbdc67baa9a255e3d1449d6ddde1c827b2ee4f76e4f47e980b4ef0e47a2 + md5: 1518f00e376497a1f0fd664677a3917d + depends: + - __osx >=11.0 + - xorg-libx11 >=1.8.10,<2.0a0 + - xorg-libxext >=1.3.6,<2.0a0 + - xorg-libxt >=1.3.0,<2.0a0 + license: MIT + license_family: MIT + size: 63555 + timestamp: 1727965941482 +- conda: https://prefix.dev/conda-forge/linux-64/xorg-libxpm-3.5.17-hb9d3cd8_1.conda + sha256: 8ce7ae21dcbbb759c6fb9e5ad2a2f2f4e54172adf160ea59e11712598edbb75c + md5: f35bec7fface97f67f44ca952fc740b7 + depends: + - __glibc >=2.17,<3.0.a0 + - gettext + - libasprintf >=0.22.5,<1.0a0 + - libgcc >=13 + - libgettextpo >=0.22.5,<1.0a0 + - xorg-libx11 >=1.8.10,<2.0a0 + - xorg-libxext >=1.3.6,<2.0a0 + - xorg-libxt >=1.3.0,<2.0a0 + license: MIT + license_family: MIT + size: 64764 + timestamp: 1727801210327 +- conda: https://prefix.dev/conda-forge/linux-aarch64/xorg-libxpm-3.5.17-h86ecc28_1.conda + sha256: ce7d4a2c075e594b034ee8080271dd7244b0e10a54f1aeb42a5d5eca2f3a950d + md5: b9fbc43bcc6bd9aa22f0aa4b81cac173 + depends: + - gettext + - libasprintf >=0.22.5,<1.0a0 + - libgcc >=13 + - libgettextpo >=0.22.5,<1.0a0 + - xorg-libx11 >=1.8.9,<2.0a0 + - xorg-libxext >=1.3.6,<2.0a0 + - xorg-libxt >=1.3.0,<2.0a0 + license: MIT + license_family: MIT + size: 69584 + timestamp: 1727801259630 +- conda: https://prefix.dev/conda-forge/osx-arm64/xorg-libxpm-3.5.17-hd74edd7_1.conda + sha256: ad5b72ef13b41ac89bb29282b3293478029df26bc596317899e8fd035f2c4df9 + md5: e72da5101948cbab93fcafebcb91ee76 + depends: + - __osx >=11.0 + - gettext + - libasprintf >=0.22.5,<1.0a0 + - libgettextpo >=0.22.5,<1.0a0 + - libintl >=0.22.5,<1.0a0 + - xorg-libx11 >=1.8.10,<2.0a0 + - xorg-libxext >=1.3.6,<2.0a0 + - xorg-libxt >=1.3.0,<2.0a0 + license: MIT + license_family: MIT + size: 54582 + timestamp: 1727801268488 +- conda: https://prefix.dev/conda-forge/win-64/xorg-libxpm-3.5.17-h0e40799_1.conda + sha256: a605b43b2622a4cae8df6edc148c02b527da4ea165ec67cabb5c9bc4f3f8ef13 + md5: e8b816fb37bc61aa3f1c08034331ef53 + depends: + - libgcc >=13 + - libwinpthread >=12.0.0.r4.gg4f2fc60ca + - ucrt >=10.0.20348.0 + - xorg-libx11 >=1.8.10,<2.0a0 + - xorg-libxext >=1.3.6,<2.0a0 + - xorg-libxt >=1.3.0,<2.0a0 + license: MIT + license_family: MIT + size: 236112 + timestamp: 1727801849623 +- conda: https://prefix.dev/conda-forge/linux-64/xorg-libxrandr-1.5.4-hb9d3cd8_0.conda + sha256: ac0f037e0791a620a69980914a77cb6bb40308e26db11698029d6708f5aa8e0d + md5: 2de7f99d6581a4a7adbff607b5c278ca + depends: + - __glibc >=2.17,<3.0.a0 + - libgcc >=13 + - xorg-libx11 >=1.8.10,<2.0a0 + - xorg-libxext >=1.3.6,<2.0a0 + - xorg-libxrender >=0.9.11,<0.10.0a0 + license: MIT + license_family: MIT + size: 29599 + timestamp: 1727794874300 +- conda: https://prefix.dev/conda-forge/linux-aarch64/xorg-libxrandr-1.5.4-h86ecc28_0.conda + sha256: b2588a2b101d1b0a4e852532c8b9c92c59ef584fc762dd700567bdbf8cd00650 + md5: dd3e74283a082381aa3860312e3c721e + depends: + - libgcc >=13 + - xorg-libx11 >=1.8.9,<2.0a0 + - xorg-libxext >=1.3.6,<2.0a0 + - xorg-libxrender >=0.9.11,<0.10.0a0 + license: MIT + license_family: MIT + size: 30197 + timestamp: 1727794957221 +- conda: https://prefix.dev/conda-forge/osx-arm64/xorg-libxrandr-1.5.4-hd74edd7_0.conda + sha256: 15b9d4d63dd212e9bc68bf82089833bd701bb17e2ac80354b9fcd5614625cae7 + md5: 64990615d3ec645f1f300d14926c13f9 + depends: + - __osx >=11.0 + - xorg-libx11 >=1.8.10,<2.0a0 + - xorg-libxext >=1.3.6,<2.0a0 + - xorg-libxrender >=0.9.11,<0.10.0a0 + license: MIT + license_family: MIT + size: 25255 + timestamp: 1727795170974 +- conda: https://prefix.dev/conda-forge/linux-64/xorg-libxrender-0.9.12-hb9d3cd8_0.conda + sha256: 044c7b3153c224c6cedd4484dd91b389d2d7fd9c776ad0f4a34f099b3389f4a1 + md5: 96d57aba173e878a2089d5638016dc5e + depends: + - __glibc >=2.17,<3.0.a0 + - libgcc >=13 + - xorg-libx11 >=1.8.10,<2.0a0 + license: MIT + license_family: MIT + size: 33005 + timestamp: 1734229037766 +- conda: https://prefix.dev/conda-forge/linux-aarch64/xorg-libxrender-0.9.12-h86ecc28_0.conda + sha256: ffd77ee860c9635a28cfda46163dcfe9224dc6248c62404c544ae6b564a0be1f + md5: ae2c2dd0e2d38d249887727db2af960e + depends: + - libgcc >=13 + - xorg-libx11 >=1.8.10,<2.0a0 + license: MIT + license_family: MIT + size: 33649 + timestamp: 1734229123157 +- conda: https://prefix.dev/conda-forge/osx-arm64/xorg-libxrender-0.9.12-h5505292_0.conda + sha256: 1c4a8a229e847604045de1f2af032104cab0f0e93b57f0cc553478f8a21f970a + md5: 01690f6107fc7487529242d29bf2abe8 + depends: + - __osx >=11.0 + - xorg-libx11 >=1.8.10,<2.0a0 + license: MIT + license_family: MIT + size: 28434 + timestamp: 1734229187899 +- conda: https://prefix.dev/conda-forge/linux-64/xorg-libxscrnsaver-1.2.4-hb9d3cd8_0.conda + sha256: 58e8fc1687534124832d22e102f098b5401173212ac69eb9fd96b16a3e2c8cb2 + md5: 303f7a0e9e0cd7d250bb6b952cecda90 + depends: + - __glibc >=2.17,<3.0.a0 + - libgcc >=13 + - xorg-libx11 >=1.8.10,<2.0a0 + - xorg-libxext >=1.3.6,<2.0a0 + license: MIT + license_family: MIT + size: 14412 + timestamp: 1727899730073 +- conda: https://prefix.dev/conda-forge/linux-64/xorg-libxshmfence-1.3.3-hb9d3cd8_0.conda + sha256: c0830fe9fa78d609cd9021f797307e7e0715ef5122be3f784765dad1b4d8a193 + md5: 9a809ce9f65460195777f2f2116bae02 + depends: + - __glibc >=2.17,<3.0.a0 + - libgcc >=13 + license: MIT + license_family: MIT + size: 12302 + timestamp: 1734168591429 +- conda: https://prefix.dev/conda-forge/linux-aarch64/xorg-libxshmfence-1.3.3-h86ecc28_0.conda + sha256: 9057e4a85a093d733719228d44aa09924e879ee769a9bb79ef7035cd0f260c8e + md5: c11f706a5072c34a559848f27d6c28c3 + depends: + - libgcc >=13 + license: MIT + license_family: MIT + size: 13805 + timestamp: 1734168631514 +- conda: https://prefix.dev/conda-forge/linux-64/xorg-libxt-1.3.1-hb9d3cd8_0.conda + sha256: a8afba4a55b7b530eb5c8ad89737d60d60bc151a03fbef7a2182461256953f0e + md5: 279b0de5f6ba95457190a1c459a64e31 + depends: + - __glibc >=2.17,<3.0.a0 + - libgcc >=13 + - xorg-libice >=1.1.1,<2.0a0 + - xorg-libsm >=1.2.4,<2.0a0 + - xorg-libx11 >=1.8.10,<2.0a0 + license: MIT + license_family: MIT + size: 379686 + timestamp: 1731860547604 +- conda: https://prefix.dev/conda-forge/linux-aarch64/xorg-libxt-1.3.1-h57736b2_0.conda + sha256: 7c109792b60720809a580612aba7f8eb2a0bd425b9fc078748a9d6ffc97cbfa8 + md5: a9e4852c8e0b68ee783e7240030b696f + depends: + - libgcc >=13 + - xorg-libice >=1.1.1,<2.0a0 + - xorg-libsm >=1.2.4,<2.0a0 + - xorg-libx11 >=1.8.9,<2.0a0 + license: MIT + license_family: MIT + size: 384752 + timestamp: 1731860572314 +- conda: https://prefix.dev/conda-forge/osx-arm64/xorg-libxt-1.3.1-h5505292_0.conda + sha256: c32235891d65e49e97babe649c45ec2e40a148b4e6ca4cae4ed84811238e0aae + md5: a5c47d582f31083353559dc9aff907c3 + depends: + - __osx >=11.0 + - xorg-libice >=1.1.1,<2.0a0 + - xorg-libsm >=1.2.4,<2.0a0 + - xorg-libx11 >=1.8.10,<2.0a0 + license: MIT + license_family: MIT + size: 185960 + timestamp: 1731860774152 +- conda: https://prefix.dev/conda-forge/win-64/xorg-libxt-1.3.1-h0e40799_0.conda + sha256: c940a6b71a1e59450b01ebfb3e21f3bbf0a8e611e5fbfc7982145736b0f20133 + md5: 31baf0ce8ef19f5617be73aee0527618 + depends: + - libgcc >=13 + - libwinpthread >=12.0.0.r4.gg4f2fc60ca + - ucrt >=10.0.20348.0 + - xorg-libice >=1.1.1,<2.0a0 + - xorg-libsm >=1.2.4,<2.0a0 + - xorg-libx11 >=1.8.10,<2.0a0 + license: MIT + license_family: MIT + size: 918674 + timestamp: 1731861024233 +- conda: https://prefix.dev/conda-forge/linux-64/xorg-libxtst-1.2.5-hb9d3cd8_3.conda + sha256: 752fdaac5d58ed863bbf685bb6f98092fe1a488ea8ebb7ed7b606ccfce08637a + md5: 7bbe9a0cc0df0ac5f5a8ad6d6a11af2f + depends: + - __glibc >=2.17,<3.0.a0 + - libgcc >=13 + - xorg-libx11 >=1.8.10,<2.0a0 + - xorg-libxext >=1.3.6,<2.0a0 + - xorg-libxi >=1.7.10,<2.0a0 + license: MIT + license_family: MIT + size: 32808 + timestamp: 1727964811275 +- conda: https://prefix.dev/conda-forge/linux-aarch64/xorg-libxtst-1.2.5-h57736b2_3.conda + sha256: 6eaffce5a34fc0a16a21ddeaefb597e792a263b1b0c387c1ce46b0a967d558e1 + md5: c05698071b5c8e0da82a282085845860 + depends: + - libgcc >=13 + - xorg-libx11 >=1.8.9,<2.0a0 + - xorg-libxext >=1.3.6,<2.0a0 + - xorg-libxi >=1.7.10,<2.0a0 + license: MIT + license_family: MIT + size: 33786 + timestamp: 1727964907993 +- conda: https://prefix.dev/conda-forge/linux-64/xorg-libxxf86vm-1.1.6-hb9d3cd8_0.conda + sha256: 8a4e2ee642f884e6b78c20c0892b85dd9b2a6e64a6044e903297e616be6ca35b + md5: 5efa5fa6243a622445fdfd72aee15efa + depends: + - __glibc >=2.17,<3.0.a0 + - libgcc >=13 + - xorg-libx11 >=1.8.10,<2.0a0 + - xorg-libxext >=1.3.6,<2.0a0 + license: MIT + license_family: MIT + size: 17819 + timestamp: 1734214575628 +- conda: https://prefix.dev/conda-forge/linux-aarch64/xorg-libxxf86vm-1.1.6-h86ecc28_0.conda + sha256: 012f0d1fd9fb1d949e0dccc0b28d9dd5a8895a1f3e2a7edc1fa2e1b33fc0f233 + md5: d745faa2d7c15092652e40a22bb261ed + depends: + - libgcc >=13 + - xorg-libx11 >=1.8.10,<2.0a0 + - xorg-libxext >=1.3.6,<2.0a0 + license: MIT + license_family: MIT + size: 18185 + timestamp: 1734214652726 +- conda: https://prefix.dev/conda-forge/linux-64/xorg-xorgproto-2024.1-hb9d3cd8_1.conda + sha256: 1316680be6edddee0156b86ec1102fc8286f51c1a5440366ed1db596a2dc3731 + md5: 7c21106b851ec72c037b162c216d8f05 + depends: + - __glibc >=2.17,<3.0.a0 + - libgcc >=13 + license: MIT + license_family: MIT + size: 565425 + timestamp: 1726846388217 +- conda: https://prefix.dev/conda-forge/linux-aarch64/xorg-xorgproto-2024.1-h86ecc28_1.conda + sha256: 3dbbf4cdb5ad82d3479ab2aa68ae67de486a6d57d67f0402d8e55869f6f13aec + md5: 91cef7867bf2b47f614597b59705ff56 + depends: + - libgcc >=13 + license: MIT + license_family: MIT + size: 566948 + timestamp: 1726847598167 +- conda: https://prefix.dev/conda-forge/osx-arm64/xorg-xorgproto-2024.1-hd74edd7_1.conda + sha256: f76eb03c674719ccaf599c7f5e50a02747382928bdc0927509ef946d450edfa6 + md5: 1b974e05b976e33edb29a0475013ac60 + depends: + - __osx >=11.0 + license: MIT + license_family: MIT + size: 567698 + timestamp: 1726846426361 +- conda: https://prefix.dev/conda-forge/win-64/xorg-xorgproto-2024.1-h0e40799_1.conda + sha256: 78a7211266821fd98c4a250f28dac7f8a6abbf8bff339990c6969d8d0712f11d + md5: de202fa8beaa5f5d4a085a82913143cd + depends: + - libgcc >=13 + - libwinpthread >=12.0.0.r4.gg4f2fc60ca + - ucrt >=10.0.20348.0 + license: MIT + license_family: MIT + size: 569140 + timestamp: 1726846656126 +- conda: https://prefix.dev/conda-forge/linux-64/yaml-0.2.5-h280c20c_3.conda + sha256: 6d9ea2f731e284e9316d95fa61869fe7bbba33df7929f82693c121022810f4ad + md5: a77f85f77be52ff59391544bfe73390a + depends: + - libgcc >=14 + - __glibc >=2.17,<3.0.a0 + license: MIT + license_family: MIT + size: 85189 + timestamp: 1753484064210 +- conda: https://prefix.dev/conda-forge/linux-aarch64/yaml-0.2.5-h80f16a2_3.conda + sha256: 66265e943f32ce02396ad214e27cb35f5b0490b3bd4f064446390f9d67fa5d88 + md5: 032d8030e4a24fe1f72c74423a46fb88 + depends: + - libgcc >=14 + license: MIT + license_family: MIT + size: 88088 + timestamp: 1753484092643 +- conda: https://prefix.dev/conda-forge/osx-arm64/yaml-0.2.5-h925e9cb_3.conda + sha256: b03433b13d89f5567e828ea9f1a7d5c5d697bf374c28a4168d71e9464f5dafac + md5: 78a0fe9e9c50d2c381e8ee47e3ea437d + depends: + - __osx >=11.0 + license: MIT + license_family: MIT + size: 83386 + timestamp: 1753484079473 +- conda: https://prefix.dev/conda-forge/win-64/yaml-0.2.5-h6a83c73_3.conda + sha256: 80ee68c1e7683a35295232ea79bcc87279d31ffeda04a1665efdb43cbd50a309 + md5: 433699cba6602098ae8957a323da2664 + depends: + - vc >=14.3,<15 + - vc14_runtime >=14.44.35208 + - ucrt >=10.0.20348.0 + - vc >=14.3,<15 + - vc14_runtime >=14.44.35208 + - ucrt >=10.0.20348.0 + license: MIT + license_family: MIT + size: 63944 + timestamp: 1753484092156 +- conda: https://prefix.dev/conda-forge/linux-64/yaml-cpp-0.8.0-h3f2d84a_0.conda + sha256: 4b0b713a4308864a59d5f0b66ac61b7960151c8022511cdc914c0c0458375eca + md5: 92b90f5f7a322e74468bb4909c7354b5 + depends: + - libstdcxx >=13 + - libgcc >=13 + - __glibc >=2.17,<3.0.a0 + - libgcc >=13 + license: MIT + license_family: MIT + size: 223526 + timestamp: 1745307989800 +- conda: https://prefix.dev/conda-forge/linux-aarch64/yaml-cpp-0.8.0-h5ad3122_0.conda + sha256: e146d83cdcf92506ab709c6e10acabd18a3394a23e6334a322c57e5d1d6d9f26 + md5: b9e5a9da5729019c4f216cf0d386a70c + depends: + - libstdcxx >=13 + - libgcc >=13 + license: MIT + license_family: MIT + size: 213281 + timestamp: 1745308220432 +- conda: https://prefix.dev/conda-forge/osx-arm64/yaml-cpp-0.8.0-ha1acc90_0.conda + sha256: 66ba31cfb8014fdd3456f2b3b394df123bbd05d95b75328b7c4131639e299749 + md5: 30475b3d0406587cf90386a283bb3cd0 + depends: + - libcxx >=18 + - __osx >=11.0 + license: MIT + license_family: MIT + size: 136222 + timestamp: 1745308075886 +- conda: https://prefix.dev/conda-forge/win-64/yaml-cpp-0.8.0-he0c23c2_0.conda + sha256: 031642d753e0ebd666a76cea399497cc7048ff363edf7d76a630ee0a19e341da + md5: 9bb5064a9fca5ca8e7d7f1ae677354b6 + depends: + - vc >=14.2,<15 + - vc14_runtime >=14.29.30139 + - ucrt >=10.0.20348.0 + - vc >=14.2,<15 + - vc14_runtime >=14.29.30139 + - ucrt >=10.0.20348.0 + license: MIT + license_family: MIT + size: 148572 + timestamp: 1745308037198 +- conda: https://prefix.dev/conda-forge/linux-64/yarl-1.20.1-py311h2dc5d0c_0.conda + sha256: 9b6cce2794e836a43679d733b8bdbafeed45ff534c338b84d439ed55cd7b2170 + md5: 18c288aa6aae90e2fd8d1cf01d655e4f + depends: + - __glibc >=2.17,<3.0.a0 + - idna >=2.0 + - libgcc >=13 + - multidict >=4.0 + - propcache >=0.2.1 + - python >=3.11,<3.12.0a0 + - python_abi 3.11.* *_cp311 + license: Apache-2.0 + license_family: Apache + size: 151355 + timestamp: 1749555157521 +- conda: https://prefix.dev/conda-forge/linux-aarch64/yarl-1.20.1-py311h58d527c_0.conda + sha256: 6a6d6b85422e8bf9e1b0ca09e414ae57e4aafe8797e990883f1d4b18c6fb6ff6 + md5: deff36ad6ad1800ab8aaaa9e587b7c37 + depends: + - idna >=2.0 + - libgcc >=13 + - multidict >=4.0 + - propcache >=0.2.1 + - python >=3.11,<3.12.0a0 + - python >=3.11,<3.12.0a0 *_cpython + - python_abi 3.11.* *_cp311 + license: Apache-2.0 + license_family: Apache + size: 151456 + timestamp: 1749555022085 +- conda: https://prefix.dev/conda-forge/osx-arm64/yarl-1.20.1-py311h4921393_0.conda + sha256: dd971901aabc65c20ae9e784ffa6c492b99c953a60e79f9c7f07338934dafc92 + md5: 2e3830e9460b7801d8926ab1a13cce85 + depends: + - __osx >=11.0 + - idna >=2.0 + - multidict >=4.0 + - propcache >=0.2.1 + - python >=3.11,<3.12.0a0 + - python >=3.11,<3.12.0a0 *_cpython + - python_abi 3.11.* *_cp311 + license: Apache-2.0 + license_family: Apache + size: 144349 + timestamp: 1749555186043 +- conda: https://prefix.dev/conda-forge/win-64/yarl-1.20.1-py311h5082efb_0.conda + sha256: f728006d9661123c6f28aa6044cdc7e5355b3b0ee20174897a9058ab8e660bcb + md5: f4f14f9f2092ace016e8e52822cb20da + depends: + - idna >=2.0 + - multidict >=4.0 + - propcache >=0.2.1 + - python >=3.11,<3.12.0a0 + - python_abi 3.11.* *_cp311 + - ucrt >=10.0.20348.0 + - vc >=14.2,<15 + - vc14_runtime >=14.29.30139 + license: Apache-2.0 + license_family: Apache + size: 143096 + timestamp: 1749555366270 +- conda: https://prefix.dev/conda-forge/noarch/zipp-3.23.0-pyhd8ed1ab_0.conda + sha256: 7560d21e1b021fd40b65bfb72f67945a3fcb83d78ad7ccf37b8b3165ec3b68ad + md5: df5e78d904988eb55042c0c97446079f + depends: + - python >=3.9 + license: MIT + license_family: MIT + size: 22963 + timestamp: 1749421737203 +- conda: https://prefix.dev/conda-forge/linux-64/zlib-1.3.1-hb9d3cd8_2.conda + sha256: 5d7c0e5f0005f74112a34a7425179f4eb6e73c92f5d109e6af4ddeca407c92ab + md5: c9f075ab2f33b3bbee9e62d4ad0a6cd8 + depends: + - __glibc >=2.17,<3.0.a0 + - libgcc >=13 + - libzlib 1.3.1 hb9d3cd8_2 + license: Zlib + license_family: Other + size: 92286 + timestamp: 1727963153079 +- conda: https://prefix.dev/conda-forge/linux-aarch64/zlib-1.3.1-h86ecc28_2.conda + sha256: b4f649aa3ecdae384d5dad7074e198bff120edd3dfb816588e31738fc6d627b1 + md5: bc230abb5d21b63ff4799b0e75204783 + depends: + - libgcc >=13 + - libzlib 1.3.1 h86ecc28_2 + license: Zlib + license_family: Other + size: 95582 + timestamp: 1727963203597 +- conda: https://prefix.dev/conda-forge/osx-arm64/zlib-1.3.1-h8359307_2.conda + sha256: 58f8860756680a4831c1bf4f294e2354d187f2e999791d53b1941834c4b37430 + md5: e3170d898ca6cb48f1bb567afb92f775 + depends: + - __osx >=11.0 + - libzlib 1.3.1 h8359307_2 + license: Zlib + license_family: Other + size: 77606 + timestamp: 1727963209370 +- conda: https://prefix.dev/conda-forge/win-64/zlib-1.3.1-h2466b09_2.conda + sha256: 8c688797ba23b9ab50cef404eca4d004a948941b6ee533ead0ff3bf52012528c + md5: be60c4e8efa55fddc17b4131aa47acbd + depends: + - libzlib 1.3.1 h2466b09_2 + - ucrt >=10.0.20348.0 + - vc >=14.2,<15 + - vc14_runtime >=14.29.30139 + license: Zlib + license_family: Other + size: 107439 + timestamp: 1727963788936 +- conda: https://prefix.dev/conda-forge/linux-64/zstd-1.5.7-hb8e6e7a_2.conda + sha256: a4166e3d8ff4e35932510aaff7aa90772f84b4d07e9f6f83c614cba7ceefe0eb + md5: 6432cb5d4ac0046c3ac0a8a0f95842f9 + depends: + - __glibc >=2.17,<3.0.a0 + - libgcc >=13 + - libstdcxx >=13 + - libzlib >=1.3.1,<2.0a0 + license: BSD-3-Clause + license_family: BSD + size: 567578 + timestamp: 1742433379869 +- conda: https://prefix.dev/conda-forge/linux-aarch64/zstd-1.5.7-hbcf94c1_2.conda + sha256: 0812e7b45f087cfdd288690ada718ce5e13e8263312e03b643dd7aa50d08b51b + md5: 5be90c5a3e4b43c53e38f50a85e11527 + depends: + - libgcc >=13 + - libstdcxx >=13 + - libzlib >=1.3.1,<2.0a0 + license: BSD-3-Clause + license_family: BSD + size: 551176 + timestamp: 1742433378347 +- conda: https://prefix.dev/conda-forge/osx-arm64/zstd-1.5.7-h6491c7d_2.conda + sha256: 0d02046f57f7a1a3feae3e9d1aa2113788311f3cf37a3244c71e61a93177ba67 + md5: e6f69c7bcccdefa417f056fa593b40f0 + depends: + - __osx >=11.0 + - libzlib >=1.3.1,<2.0a0 + license: BSD-3-Clause + license_family: BSD + size: 399979 + timestamp: 1742433432699 +- conda: https://prefix.dev/conda-forge/win-64/zstd-1.5.7-hbeecb71_2.conda + sha256: bc64864377d809b904e877a98d0584f43836c9f2ef27d3d2a1421fa6eae7ca04 + md5: 21f56217d6125fb30c3c3f10c786d751 + depends: + - libzlib >=1.3.1,<2.0a0 + - ucrt >=10.0.20348.0 + - vc >=14.2,<15 + - vc14_runtime >=14.29.30139 + license: BSD-3-Clause + license_family: BSD + size: 354697 + timestamp: 1742433568506 +- conda: https://prefix.dev/conda-forge/linux-64/zziplib-0.13.69-he45264a_2.conda + sha256: a7c3ba25f384c7eb30c4f4c2d390f62714e0b4946d315aa852749f927b4b03ff + md5: 6d2d107e0fb8bc381acd4e9c68dbeae7 + depends: + - libgcc-ng >=12 + - libzlib >=1.3.1,<2.0a0 + license: LGPL-2.0-or-later OR MPL-1.1 + size: 106915 + timestamp: 1719242059793 +- conda: https://prefix.dev/conda-forge/linux-aarch64/zziplib-0.13.69-h650d8d0_2.conda + sha256: 9e3764d1fb2b509bc43ebb059a5bb77ba11af56bb78a5960e1ba8a21aa1939a6 + md5: 133bf2541e6bc4f7bb7c4e0546776138 + depends: + - libgcc-ng >=12 + - libzlib >=1.3.1,<2.0a0 + license: LGPL-2.0-or-later OR MPL-1.1 + size: 115725 + timestamp: 1719242037690 +- conda: https://prefix.dev/conda-forge/osx-arm64/zziplib-0.13.69-h57f5043_2.conda + sha256: 5966a1b79653f3f5a4b1f54e5873d170ee7d82c904db31e56516eb9d26bced44 + md5: 1b73101be2f12abfb040d98460b23065 + depends: + - __osx >=11.0 + - libzlib >=1.3.1,<2.0a0 + license: LGPL-2.0-or-later OR MPL-1.1 + size: 99425 + timestamp: 1719242141755 +- conda: https://prefix.dev/conda-forge/win-64/zziplib-0.13.69-h3ca93ac_2.conda + sha256: e079aca99369f7a2a6a402a0256dad065cfaf17cd9ede1b03118ca5f38c6711d + md5: c79eee98990e5986d5d8bd02cf5a2a5e + depends: + - libzlib >=1.3.1,<2.0a0 + - ucrt >=10.0.20348.0 + - vc >=14.2,<15 + - vc14_runtime >=14.29.30139 + license: LGPL-2.0-or-later OR MPL-1.1 + size: 65791 + timestamp: 1719242575938 diff --git a/tests/data/pixi_build/ros-workspace/pixi.toml b/tests/data/pixi_build/ros-workspace/pixi.toml new file mode 100644 index 0000000..2d60bce --- /dev/null +++ b/tests/data/pixi_build/ros-workspace/pixi.toml @@ -0,0 +1,20 @@ +[workspace] +channels = [ + "https://prefix.dev/pixi-build-backends", + "https://prefix.dev/conda-forge", + "https://prefix.dev/robostack-staging", +] +platforms = ["osx-arm64", "linux-64", "win-64", "linux-aarch64"] +preview = ["pixi-build"] + +[tasks] +navigator = "ros2 run navigator navigator" +navigator_py = "ros2 run navigator_py navigator" +sim = "ros2 run turtlesim turtlesim_node" +talker = "ros2 run talker_py talker" + +[dependencies] +ros-humble-desktop = ">=0.10.0,<0.11" +ros-humble-navigator = { path = "src/navigator" } +ros-humble-navigator-py = { path = "src/navigator_py" } +ros-humble-talker-py = { path = "src/talker-py" } diff --git a/tests/data/pixi_build/ros-workspace/src/navigator/CMakeLists.txt b/tests/data/pixi_build/ros-workspace/src/navigator/CMakeLists.txt new file mode 100644 index 0000000..567da95 --- /dev/null +++ b/tests/data/pixi_build/ros-workspace/src/navigator/CMakeLists.txt @@ -0,0 +1,41 @@ +cmake_minimum_required(VERSION 3.8) +project(navigator) + +if(CMAKE_COMPILER_IS_GNUCXX OR CMAKE_CXX_COMPILER_ID MATCHES "Clang") + add_compile_options(-Wall -Wextra -Wpedantic) +endif() + +# find dependencies +find_package(ament_cmake REQUIRED) +find_package(rclcpp REQUIRED) +find_package(geometry_msgs REQUIRED) +find_package(turtlesim REQUIRED) + +add_executable(navigator src/navigator.cpp) +target_include_directories(navigator PUBLIC + $ + $) +target_compile_features(navigator PUBLIC c_std_99 cxx_std_17) # Require C99 and C++17 +ament_target_dependencies( + navigator + "rclcpp" + "geometry_msgs" + "turtlesim" +) + +install(TARGETS navigator + DESTINATION lib/${PROJECT_NAME}) + +# if(BUILD_TESTING) +# find_package(ament_lint_auto REQUIRED) +# # the following line skips the linter which checks for copyrights +# # comment the line when a copyright and license is added to all source files +# set(ament_cmake_copyright_FOUND TRUE) +# # the following line skips cpplint (only works in a git repo) +# # comment the line when this package is in a git repo and when +# # a copyright and license is added to all source files +# set(ament_cmake_cpplint_FOUND TRUE) +# ament_lint_auto_find_test_dependencies() +# endif() + +ament_package() diff --git a/tests/data/pixi_build/ros-workspace/src/navigator/package.xml b/tests/data/pixi_build/ros-workspace/src/navigator/package.xml new file mode 100644 index 0000000..65ab958 --- /dev/null +++ b/tests/data/pixi_build/ros-workspace/src/navigator/package.xml @@ -0,0 +1,22 @@ + + + + navigator + 0.0.0 + TODO: Package description + rarts + BSD-3-Clause + + ament_cmake + + rclcpp + geometry_msgs + turtlesim + + ament_lint_auto + ament_lint_common + + + ament_cmake + + diff --git a/tests/data/pixi_build/ros-workspace/src/navigator/pixi.toml b/tests/data/pixi_build/ros-workspace/src/navigator/pixi.toml new file mode 100644 index 0000000..fd07c45 --- /dev/null +++ b/tests/data/pixi_build/ros-workspace/src/navigator/pixi.toml @@ -0,0 +1,6 @@ +[package.build.backend] +name = "pixi-build-ros" +version = "*" + +[package.build.config] +distro = "humble" diff --git a/tests/data/pixi_build/ros-workspace/src/navigator/src/navigator.cpp b/tests/data/pixi_build/ros-workspace/src/navigator/src/navigator.cpp new file mode 100644 index 0000000..7fcd732 --- /dev/null +++ b/tests/data/pixi_build/ros-workspace/src/navigator/src/navigator.cpp @@ -0,0 +1,94 @@ +#define _USE_MATH_DEFINES + +#include + +#include "rclcpp/rclcpp.hpp" +#include "geometry_msgs/msg/point.hpp" +#include "geometry_msgs/msg/twist.hpp" +#include "turtlesim/msg/pose.hpp" + +class TurtleNavigator : public rclcpp::Node +{ +public: + TurtleNavigator() + : Node("turtle_navigator"), x_goal_(4.0), y_goal_(5.0), kp_(1.0), ki_(0.0), kd_(0.05), prev_error_(0.0), integral_(0.0) + { + subscription_ = this->create_subscription( + "coordinates", 10, std::bind(&TurtleNavigator::goal_callback, this, std::placeholders::_1)); + pose_subscription_ = this->create_subscription( + "turtle1/pose", 10, std::bind(&TurtleNavigator::pose_callback, this, std::placeholders::_1)); + publisher_ = this->create_publisher("turtle1/cmd_vel", 10); + + timer_ = this->create_wall_timer( + std::chrono::milliseconds(100), std::bind(&TurtleNavigator::control_loop, this)); + + RCLCPP_INFO(this->get_logger(), "Turtle Navigator has been started!"); + RCLCPP_INFO(this->get_logger(), "Initial goal: x=%f, y=%f", x_goal_, y_goal_); + } + +private: + void goal_callback(const geometry_msgs::msg::Point::SharedPtr msg) + { + x_goal_ = msg->x; + y_goal_ = msg->y; + RCLCPP_INFO(this->get_logger(), "Received goal: x=%f, y=%f", x_goal_, y_goal_); + } + + void pose_callback(const turtlesim::msg::Pose::SharedPtr msg) + { + x_current_ = msg->x; + y_current_ = msg->y; + theta_current_ = msg->theta; + } + + void control_loop() + { +// RCLCPP_INFO(this->get_logger(), "Hello Ruben!"); + double error_x = x_goal_ - x_current_; + double error_y = y_goal_ - y_current_; + double distance_error = std::sqrt(error_x * error_x + error_y * error_y); + + double angle_to_goal = std::atan2(error_y, error_x); + double angle_error = angle_to_goal - theta_current_; + + // Normalize angle error to the range [-pi, pi] + while (angle_error > M_PI) angle_error -= 2 * M_PI; + while (angle_error < -M_PI) angle_error += 2 * M_PI; + + // PID control + double control_signal = kp_ * distance_error + ki_ * integral_ + kd_ * (distance_error - prev_error_); + integral_ += distance_error; + prev_error_ = distance_error; + + // Limit control signal + double max_linear_speed = 2.0; // Max linear speed + double max_angular_speed = 2.0; // Max angular speed + control_signal = std::clamp(control_signal, -max_linear_speed, max_linear_speed); + + // Publish velocity commands + auto msg = geometry_msgs::msg::Twist(); + msg.linear.x = control_signal; + msg.angular.z = 4.0 * angle_error; // simple P controller for angle + msg.angular.z = std::clamp(msg.angular.z, -max_angular_speed, max_angular_speed); + + publisher_->publish(msg); + } + + rclcpp::Subscription::SharedPtr subscription_; + rclcpp::Subscription::SharedPtr pose_subscription_; + rclcpp::Publisher::SharedPtr publisher_; + rclcpp::TimerBase::SharedPtr timer_; + + double x_goal_, y_goal_; + double x_current_, y_current_, theta_current_; + double kp_, ki_, kd_; + double prev_error_, integral_; +}; + +int main(int argc, char *argv[]) +{ + rclcpp::init(argc, argv); + rclcpp::spin(std::make_shared()); + rclcpp::shutdown(); + return 0; +} diff --git a/tests/data/pixi_build/ros-workspace/src/navigator_py/navigator_py/__init__.py b/tests/data/pixi_build/ros-workspace/src/navigator_py/navigator_py/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/tests/data/pixi_build/ros-workspace/src/navigator_py/navigator_py/navigator.py b/tests/data/pixi_build/ros-workspace/src/navigator_py/navigator_py/navigator.py new file mode 100644 index 0000000..2aed04f --- /dev/null +++ b/tests/data/pixi_build/ros-workspace/src/navigator_py/navigator_py/navigator.py @@ -0,0 +1,91 @@ +import math +from typing import Any + +import rclpy # type: ignore[import-not-found] +from geometry_msgs.msg import Point, Twist # type: ignore[import-not-found] +from rclpy.node import Node # type: ignore[import-not-found] +from turtlesim.msg import Pose # type: ignore[import-not-found] + + +class TurtleNavigator(Node): # type: ignore[misc] + def __init__(self) -> None: + super().__init__(node_name="turtle_navigator") + self.x_goal = 5.0 + self.y_goal = 5.0 + self.kp = 1.0 + self.ki = 0.0 + self.kd = 0.05 + self.prev_error = 0.0 + self.integral = 0.0 + + self.subscription = self.create_subscription(Point, "coordinates", self.goal_callback, 10) + self.pose_subscription = self.create_subscription( + Pose, "turtle1/pose", self.pose_callback, 10 + ) + self.publisher = self.create_publisher(Twist, "turtle1/cmd_vel", 10) + + self.timer = self.create_timer(0.1, self.control_loop) + + self.x_current = 0.0 + self.y_current = 0.0 + self.theta_current = 0.0 + + def goal_callback(self, msg: Any) -> None: + self.x_goal = msg.x + self.y_goal = msg.y + self.get_logger().info(f"Received goal: x={self.x_goal}, y={self.y_goal}") + + def pose_callback(self, msg: Any) -> None: + self.x_current = msg.x + self.y_current = msg.y + self.theta_current = msg.theta + + def control_loop(self) -> None: + error_x = self.x_goal - self.x_current + error_y = self.y_goal - self.y_current + distance_error = math.sqrt(error_x**2 + error_y**2) + + angle_to_goal = math.atan2(error_y, error_x) + angle_error = angle_to_goal - self.theta_current + + # Normalize angle error to the range [-pi, pi] + while angle_error > math.pi: + angle_error -= 2 * math.pi + while angle_error < -math.pi: + angle_error += 2 * math.pi + + # PID control + control_signal = ( + self.kp * distance_error + + self.ki * self.integral + + self.kd * (distance_error - self.prev_error) + ) + self.integral += distance_error + self.prev_error = distance_error + + # Limit control signal + max_linear_speed = 2.0 # Max linear speed + max_angular_speed = 2.0 # Max angular speed + control_signal = max(min(control_signal, max_linear_speed), -max_linear_speed) + + # Publish velocity commands + msg = Twist() + msg.linear.x = control_signal + msg.angular.z = 4.0 * angle_error # Simple P controller for angle + msg.angular.z = max(min(msg.angular.z, max_angular_speed), -max_angular_speed) + + self.publisher.publish(msg) + + +def main(args: Any = None) -> None: + rclpy.init(args=args) + print("Turtle Navigator") + turtle_navigator = TurtleNavigator() + print("Waiting for command..") + rclpy.spin(turtle_navigator) + turtle_navigator.destroy_node() + rclpy.shutdown() + + +if __name__ == "__main__": + main() diff --git a/tests/data/pixi_build/ros-workspace/src/navigator_py/package.xml b/tests/data/pixi_build/ros-workspace/src/navigator_py/package.xml new file mode 100644 index 0000000..97a27d8 --- /dev/null +++ b/tests/data/pixi_build/ros-workspace/src/navigator_py/package.xml @@ -0,0 +1,18 @@ + + + + navigator_py + 0.0.0 + TODO: Package description + rubenarts + BSD-3-Clause + + ament_copyright + ament_flake8 + ament_pep257 + python3-pytest + + + ament_python + + diff --git a/tests/data/pixi_build/ros-workspace/src/navigator_py/pixi.toml b/tests/data/pixi_build/ros-workspace/src/navigator_py/pixi.toml new file mode 100644 index 0000000..f851e96 --- /dev/null +++ b/tests/data/pixi_build/ros-workspace/src/navigator_py/pixi.toml @@ -0,0 +1,7 @@ +[package.build.backend] +name = "pixi-build-ros" +version = "*" + +[package.build.config] +distro = "humble" +extra-input-globs = ["hi"] diff --git a/tests/data/pixi_build/ros-workspace/src/navigator_py/resource/navigator_py b/tests/data/pixi_build/ros-workspace/src/navigator_py/resource/navigator_py new file mode 100644 index 0000000..e69de29 diff --git a/tests/data/pixi_build/ros-workspace/src/navigator_py/setup.cfg b/tests/data/pixi_build/ros-workspace/src/navigator_py/setup.cfg new file mode 100644 index 0000000..c9717fc --- /dev/null +++ b/tests/data/pixi_build/ros-workspace/src/navigator_py/setup.cfg @@ -0,0 +1,4 @@ +[develop] +script_dir=$base/lib/navigator_py +[install] +install_scripts=$base/lib/navigator_py diff --git a/tests/data/pixi_build/ros-workspace/src/navigator_py/setup.py b/tests/data/pixi_build/ros-workspace/src/navigator_py/setup.py new file mode 100644 index 0000000..d4e7d71 --- /dev/null +++ b/tests/data/pixi_build/ros-workspace/src/navigator_py/setup.py @@ -0,0 +1,22 @@ +from setuptools import find_packages, setup + +package_name = "navigator_py" + +setup( + name=package_name, + version="0.0.0", + packages=find_packages(exclude=["test"]), + data_files=[ + ("share/ament_index/resource_index/packages", ["resource/" + package_name]), + ("share/" + package_name, ["package.xml"]), + ], + install_requires=["setuptools"], + zip_safe=True, + maintainer="rubenarts", + maintainer_email="ruben.arts@hotmail.com", + description="TODO: Package description", + license="TODO: License declaration", + entry_points={ + "console_scripts": ["navigator = navigator_py.navigator:main"], + }, +) diff --git a/tests/data/pixi_build/ros-workspace/src/navigator_py/test/test_copyright_navigator.py b/tests/data/pixi_build/ros-workspace/src/navigator_py/test/test_copyright_navigator.py new file mode 100644 index 0000000..5693a04 --- /dev/null +++ b/tests/data/pixi_build/ros-workspace/src/navigator_py/test/test_copyright_navigator.py @@ -0,0 +1,25 @@ +# Copyright 2015 Open Source Robotics Foundation, Inc. +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. + +from ament_copyright.main import main # type: ignore[import-not-found] +import pytest + + +# Remove the `skip` decorator once the source file(s) have a copyright header +@pytest.mark.skip(reason="No copyright header has been placed in the generated source file.") +@pytest.mark.copyright +@pytest.mark.linter +def test_copyright() -> None: + rc = main(argv=[".", "test"]) + assert rc == 0, "Found errors" diff --git a/tests/data/pixi_build/ros-workspace/src/navigator_py/test/test_flake8_navigator.py b/tests/data/pixi_build/ros-workspace/src/navigator_py/test/test_flake8_navigator.py new file mode 100644 index 0000000..944c9ea --- /dev/null +++ b/tests/data/pixi_build/ros-workspace/src/navigator_py/test/test_flake8_navigator.py @@ -0,0 +1,23 @@ +# Copyright 2017 Open Source Robotics Foundation, Inc. +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. + +from ament_flake8.main import main_with_errors # type: ignore[import-not-found] +import pytest + + +@pytest.mark.flake8 +@pytest.mark.linter +def test_flake8() -> None: + rc, errors = main_with_errors(argv=[]) + assert rc == 0, "Found %d code style errors / warnings:\n" % len(errors) + "\n".join(errors) diff --git a/tests/data/pixi_build/ros-workspace/src/navigator_py/test/test_pep257_navigator.py b/tests/data/pixi_build/ros-workspace/src/navigator_py/test/test_pep257_navigator.py new file mode 100644 index 0000000..3446c44 --- /dev/null +++ b/tests/data/pixi_build/ros-workspace/src/navigator_py/test/test_pep257_navigator.py @@ -0,0 +1,23 @@ +# Copyright 2015 Open Source Robotics Foundation, Inc. +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. + +from ament_pep257.main import main # type: ignore[import-not-found] +import pytest + + +@pytest.mark.linter +@pytest.mark.pep257 +def test_pep257() -> None: + rc = main(argv=[".", "test"]) + assert rc == 0, "Found code style errors / warnings" diff --git a/tests/data/pixi_build/ros-workspace/src/talker-py/package.xml b/tests/data/pixi_build/ros-workspace/src/talker-py/package.xml new file mode 100644 index 0000000..e29ef60 --- /dev/null +++ b/tests/data/pixi_build/ros-workspace/src/talker-py/package.xml @@ -0,0 +1,18 @@ + + + + talker_py + 0.0.0 + TODO: Package description + rubenarts + BSD-3-Clause + + ament_copyright + ament_flake8 + ament_pep257 + python3-pytest + + + ament_python + + diff --git a/tests/data/pixi_build/ros-workspace/src/talker-py/pixi.toml b/tests/data/pixi_build/ros-workspace/src/talker-py/pixi.toml new file mode 100644 index 0000000..f851e96 --- /dev/null +++ b/tests/data/pixi_build/ros-workspace/src/talker-py/pixi.toml @@ -0,0 +1,7 @@ +[package.build.backend] +name = "pixi-build-ros" +version = "*" + +[package.build.config] +distro = "humble" +extra-input-globs = ["hi"] diff --git a/tests/data/pixi_build/ros-workspace/src/talker-py/resource/talker_py b/tests/data/pixi_build/ros-workspace/src/talker-py/resource/talker_py new file mode 100644 index 0000000..e69de29 diff --git a/tests/data/pixi_build/ros-workspace/src/talker-py/setup.cfg b/tests/data/pixi_build/ros-workspace/src/talker-py/setup.cfg new file mode 100644 index 0000000..32f214d --- /dev/null +++ b/tests/data/pixi_build/ros-workspace/src/talker-py/setup.cfg @@ -0,0 +1,4 @@ +[develop] +script_dir=$base/lib/talker_py +[install] +install_scripts=$base/lib/talker_py diff --git a/tests/data/pixi_build/ros-workspace/src/talker-py/setup.py b/tests/data/pixi_build/ros-workspace/src/talker-py/setup.py new file mode 100644 index 0000000..2fe74ad --- /dev/null +++ b/tests/data/pixi_build/ros-workspace/src/talker-py/setup.py @@ -0,0 +1,24 @@ +from setuptools import find_packages, setup + +package_name = "talker_py" + +setup( + name=package_name, + version="0.0.0", + packages=find_packages(exclude=["test"]), + data_files=[ + ("share/ament_index/resource_index/packages", ["resource/" + package_name]), + ("share/" + package_name, ["package.xml"]), + ], + install_requires=["setuptools"], + zip_safe=True, + maintainer="rubenarts", + maintainer_email="ruben.arts@hotmail.com", + description="TODO: Package description", + license="TODO: License declaration", + entry_points={ + "console_scripts": [ + "talker = talker_py.talker:main", + ], + }, +) diff --git a/tests/data/pixi_build/ros-workspace/src/talker-py/talker_py/__init__.py b/tests/data/pixi_build/ros-workspace/src/talker-py/talker_py/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/tests/data/pixi_build/ros-workspace/src/talker-py/talker_py/talker.py b/tests/data/pixi_build/ros-workspace/src/talker-py/talker_py/talker.py new file mode 100644 index 0000000..b907a0e --- /dev/null +++ b/tests/data/pixi_build/ros-workspace/src/talker-py/talker_py/talker.py @@ -0,0 +1,45 @@ +import sys +import argparse +from typing import Any + +import rclpy # type: ignore[import-not-found] +from geometry_msgs.msg import Point # type: ignore[import-not-found] +from rclpy.node import Node # type: ignore[import-not-found] + + +class CoordinatePublisher(Node): # type: ignore[misc] + def __init__(self) -> None: + super().__init__(node_name="coordinate_publisher") + self.publisher_ = self.create_publisher(Point, "coordinates", 10) + + def publish_coordinates(self, x: float, y: float) -> None: + msg = Point() + msg.x = x + msg.y = y + msg.z = 0.0 # Assuming z is not used, set to 0 + self.publisher_.publish(msg) + self.get_logger().info(f"Publishing: x={x}, y={y}") + + +def main(args: Any = None) -> None: + rclpy.init(args=args) + node = CoordinatePublisher() + + parser = argparse.ArgumentParser(description="Send coordinates over a ROS2 topic") + parser.add_argument("x", type=float, help="X coordinate") + parser.add_argument("y", type=float, help="Y coordinate") + + args = parser.parse_args(args=None if sys.argv[1:] else ["--help"]) + + try: + node.publish_coordinates(args.x, args.y) + except KeyboardInterrupt: + pass + finally: + node.destroy_node() + rclpy.shutdown() + + +if __name__ == "__main__": + print("HALLO OUWE") + main() diff --git a/tests/data/pixi_build/ros-workspace/src/talker-py/test/test_copyright_talker.py b/tests/data/pixi_build/ros-workspace/src/talker-py/test/test_copyright_talker.py new file mode 100644 index 0000000..5693a04 --- /dev/null +++ b/tests/data/pixi_build/ros-workspace/src/talker-py/test/test_copyright_talker.py @@ -0,0 +1,25 @@ +# Copyright 2015 Open Source Robotics Foundation, Inc. +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. + +from ament_copyright.main import main # type: ignore[import-not-found] +import pytest + + +# Remove the `skip` decorator once the source file(s) have a copyright header +@pytest.mark.skip(reason="No copyright header has been placed in the generated source file.") +@pytest.mark.copyright +@pytest.mark.linter +def test_copyright() -> None: + rc = main(argv=[".", "test"]) + assert rc == 0, "Found errors" diff --git a/tests/data/pixi_build/ros-workspace/src/talker-py/test/test_flake8_talker.py b/tests/data/pixi_build/ros-workspace/src/talker-py/test/test_flake8_talker.py new file mode 100644 index 0000000..944c9ea --- /dev/null +++ b/tests/data/pixi_build/ros-workspace/src/talker-py/test/test_flake8_talker.py @@ -0,0 +1,23 @@ +# Copyright 2017 Open Source Robotics Foundation, Inc. +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. + +from ament_flake8.main import main_with_errors # type: ignore[import-not-found] +import pytest + + +@pytest.mark.flake8 +@pytest.mark.linter +def test_flake8() -> None: + rc, errors = main_with_errors(argv=[]) + assert rc == 0, "Found %d code style errors / warnings:\n" % len(errors) + "\n".join(errors) diff --git a/tests/data/pixi_build/ros-workspace/src/talker-py/test/test_pep257_talker.py b/tests/data/pixi_build/ros-workspace/src/talker-py/test/test_pep257_talker.py new file mode 100644 index 0000000..3446c44 --- /dev/null +++ b/tests/data/pixi_build/ros-workspace/src/talker-py/test/test_pep257_talker.py @@ -0,0 +1,23 @@ +# Copyright 2015 Open Source Robotics Foundation, Inc. +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. + +from ament_pep257.main import main # type: ignore[import-not-found] +import pytest + + +@pytest.mark.linter +@pytest.mark.pep257 +def test_pep257() -> None: + rc = main(argv=[".", "test"]) + assert rc == 0, "Found code style errors / warnings" diff --git a/tests/integration_python/common.py b/tests/integration_python/common.py index 49c3c25..5e90c0e 100644 --- a/tests/integration_python/common.py +++ b/tests/integration_python/common.py @@ -1,8 +1,8 @@ import os import platform +import re import shutil import subprocess -import re from contextlib import contextmanager from dataclasses import dataclass from enum import IntEnum @@ -10,6 +10,7 @@ from typing import Any, Generator import tomli_w +import tomllib import yaml from rattler import Platform @@ -28,6 +29,84 @@ """ +def get_local_backend_channel() -> str: + env_repo = os.environ.get("BUILD_BACKENDS_REPO") + if env_repo: + repo_path = Path(env_repo).expanduser().joinpath("artifacts-channel") + if repo_path.is_dir() and any(repo_path.rglob("repodata.json")): + return repo_path.as_uri() + + channel_dir = repo_root().joinpath("artifacts", "pixi-build-backends") + if channel_dir.is_dir() and any(channel_dir.rglob("repodata.json")): + return channel_dir.as_uri() + + raise Exception("No BUILD_BACKENDS_REPO defined, can't find artifacts-channel dir") + + +def copy_manifest( + src: os.PathLike[str], + dst: os.PathLike[str], +) -> Path: + """ + Copy file with special handling for pixi manifest. + + It will override backends channel with local backends channel. + """ + copied_path = Path(shutil.copy(src, dst)) + local_uri = get_local_backend_channel() + + if copied_path.suffix != ".toml": + return copied_path + + content = copied_path.read_text(encoding="utf-8") + + changed = False + if copied_path.name == "pixi.toml": + data = tomllib.loads(content) + + package = data.get("package") + if isinstance(package, dict): + build = package.get("build") + if isinstance(build, dict): + backend = build.get("backend") + if isinstance(backend, dict): + channels = backend.get("channels") + new_channels: list[str] = [] + if not channels: + new_channels = [local_uri, "https://prefix.dev/conda-forge"] + else: + for channel in channels: + if "pixi-build-backends" in channel: + new_channels.append(local_uri) + else: + new_channels.append(channel) + # Handle case where channels is not defined + if local_uri not in new_channels: + new_channels.append(local_uri) + + backend["channels"] = new_channels + changed = new_channels != channels + if changed: + content = tomli_w.dumps(data) + + if changed: + copied_path.write_text(content, encoding="utf-8") + + return copied_path + + +def copytree_with_local_backend( + src: os.PathLike[str], + dst: os.PathLike[str], + **kwargs: Any, +) -> Path: + # Remove existing .pixi folders + shutil.rmtree(Path(src).joinpath(".pixi"), ignore_errors=True) + + kwargs.setdefault("copy_function", copy_manifest) + return Path(shutil.copytree(src, dst, **kwargs)) + + @dataclass class Workspace: recipe: dict[str, Any] @@ -203,7 +282,7 @@ def git_test_repo(source_dir: Path, repo_name: str, target_dir: Path) -> str: repo_path: Path = target_dir / repo_name # Copy source directory to temp - shutil.copytree(source_dir, repo_path, copy_function=shutil.copy) + copytree_with_local_backend(source_dir, repo_path, copy_function=copy_manifest) # Initialize git repository in the copied source subprocess.run( diff --git a/tests/integration_python/conftest.py b/tests/integration_python/conftest.py index e9fe060..c6f3d79 100644 --- a/tests/integration_python/conftest.py +++ b/tests/integration_python/conftest.py @@ -7,7 +7,58 @@ import dotenv import pytest -from .common import CURRENT_PLATFORM, Workspace, exec_extension, repo_root +from urllib.parse import urlparse, unquote +from urllib.request import url2pathname + +from .common import ( + CURRENT_PLATFORM, + Workspace, + exec_extension, + get_local_backend_channel, + repo_root, +) + + +@pytest.fixture(scope="session") +def local_backend_channel_dir() -> Path: + channel_uri = get_local_backend_channel() + if channel_uri is None: + raise RuntimeError( + "Local pixi-build-backends channel not found. Run 'pixi run build-repos' " + "or 'pixi run download-artifacts --repo pixi-build-backends' before running tests." + ) + parsed = urlparse(channel_uri) + if parsed.scheme != "file": + raise RuntimeError( + f"Local backend channel must be a file URI, got '{channel_uri}'. " + "Update BUILD_BACKENDS_REPO to point to a local channel." + ) + + path_str = url2pathname(parsed.path) + if ( + len(path_str) >= 3 + and path_str[0] in {"/", "\\"} + and path_str[1].isalpha() + and path_str[2] == ":" + ): + # Drop leading slash that urlparse adds before the drive letter on Windows file URIs. + path_str = path_str[1:] + if parsed.netloc: + # Preserve UNC host if present. + path_str = f"//{parsed.netloc}{path_str}" + + channel_dir = Path(unquote(path_str)) + if not channel_dir.is_dir() or not any(channel_dir.rglob("repodata.json")): + raise RuntimeError( + f"Local backend channel at '{channel_dir}' is missing repodata.json. " + "Recreate it with 'pixi run build-repos' or re-download the artifacts." + ) + return channel_dir + + +@pytest.fixture(scope="session") +def local_backend_channel_uri(local_backend_channel_dir: Path) -> str: + return local_backend_channel_dir.as_uri() @pytest.fixture @@ -27,7 +78,11 @@ def examples_dir() -> Path: @pytest.fixture -def simple_workspace(tmp_pixi_workspace: Path, request: pytest.FixtureRequest) -> Workspace: +def simple_workspace( + tmp_pixi_workspace: Path, + request: pytest.FixtureRequest, + local_backend_channel_uri: str, +) -> Workspace: name = request.node.name workspace_dir = tmp_pixi_workspace.joinpath("workspace") @@ -44,7 +99,7 @@ def simple_workspace(tmp_pixi_workspace: Path, request: pytest.FixtureRequest) - workspace_manifest = { "workspace": { "channels": [ - "https://prefix.dev/pixi-build-backends", + local_backend_channel_uri, "https://prefix.dev/conda-forge", ], "preview": ["pixi-build"], @@ -58,7 +113,14 @@ def simple_workspace(tmp_pixi_workspace: Path, request: pytest.FixtureRequest) - "name": name, "version": "1.0.0", "build": { - "backend": {"name": "pixi-build-rattler-build", "version": "*"}, + "backend": { + "name": "pixi-build-rattler-build", + "version": "*", + "channels": [ + local_backend_channel_uri, + "https://prefix.dev/conda-forge", + ], + }, "configuration": {"debug-dir": str(debug_dir)}, }, }, @@ -216,71 +278,30 @@ def pixi() -> Path: @pytest.fixture(scope="session", autouse=True) -def build_backends(load_dotenv: None) -> None: +def build_backends( + load_dotenv: None, + local_backend_channel_dir: Path | None, + local_backend_channel_uri: str | None, +) -> None: """ - Sets up build backend environment variables for testing. - - Configures PIXI_BUILD_BACKEND_OVERRIDE environment variable with paths - to the build backends. + Ensure build backend helpers are available for tests. - Requires the BUILD_BACKENDS_BIN_DIR environment variable to be set. - Falls back to binaries downloaded into the artifacts directory. + We prefer installing backends from the local channel. """ - build_backends_dir = os.getenv("BUILD_BACKENDS_BIN_DIR") - - backends = [ - "pixi-build-cmake", - "pixi-build-python", - "pixi-build-rattler-build", - "pixi-build-rust", - ] - - if build_backends_dir: - build_backends_path = Path(build_backends_dir) - else: - project_root = repo_root() - candidates = [ - project_root / "artifacts", - project_root / "artifacts" / "pixi-build-backends", - ] - build_backends_path = None - for candidate in candidates: - if not candidate.is_dir(): - continue - if all((candidate / exec_extension(backend)).is_file() for backend in backends): - build_backends_path = candidate - break - - if build_backends_path is not None: - os.environ["BUILD_BACKENDS_BIN_DIR"] = str(build_backends_path) - build_backends_dir = os.environ["BUILD_BACKENDS_BIN_DIR"] - - if build_backends_dir is None and build_backends_path is None: - raise ValueError( - "Could not determine build backend locations. Set BUILD_BACKENDS_BIN_DIR or run " - "'pixi run download-artifacts --repo pixi-build-backends'." + if local_backend_channel_dir is not None and not any( + local_backend_channel_dir.rglob("repodata.json") + ): + raise RuntimeError( + f"Local backend channel at '{local_backend_channel_dir}' is missing repodata.json. " + "Recreate it with 'pixi run build-repos' or re-download the artifacts." ) - if build_backends_path is None or not build_backends_path.is_dir(): - raise ValueError( - f"BUILD_BACKENDS_BIN_DIR points to '{build_backends_dir}' which is not a valid directory. " - "Please set it to a directory that exists and contains build backend definitions." + if os.getenv("BUILD_BACKENDS_BIN_DIR"): + raise RuntimeError( + "BUILD_BACKENDS_BIN_DIR is no longer supported. Remove it to rely on the packaged channel." ) - # Build the override string in the format: tool_name=/path/to/executable::tool_name2=... - override_parts = [] - for backend in backends: - backend_path = build_backends_path / exec_extension(backend) - if not backend_path.is_file(): - raise FileNotFoundError( - f"'{backend}' not found at '{backend_path}'. Set BUILD_BACKENDS_BIN_DIR " - "or run 'pixi run download-artifacts --repo pixi-build-backends'." - ) - - override_parts.append(f"{backend}={backend_path}") - - override_value = ",".join(override_parts) - os.environ["PIXI_BUILD_BACKEND_OVERRIDE"] = override_value + os.environ.pop("PIXI_BUILD_BACKEND_OVERRIDE", None) @pytest.fixture diff --git a/tests/integration_python/test_backends.py b/tests/integration_python/test_backends.py index 60d96b3..041a991 100644 --- a/tests/integration_python/test_backends.py +++ b/tests/integration_python/test_backends.py @@ -1,9 +1,8 @@ -import shutil from pathlib import Path import pytest -from .common import get_manifest, repo_root, verify_cli_command +from .common import copytree_with_local_backend, get_manifest, repo_root, verify_cli_command @pytest.mark.slow @@ -18,11 +17,8 @@ ], ) def test_pixi_minimal_backend(pixi_project: Path, pixi: Path, tmp_pixi_workspace: Path) -> None: - # Remove existing .pixi folders - shutil.rmtree(pixi_project.joinpath(".pixi"), ignore_errors=True) - # Copy to workspace - shutil.copytree(pixi_project, tmp_pixi_workspace, dirs_exist_ok=True) + copytree_with_local_backend(pixi_project, tmp_pixi_workspace, dirs_exist_ok=True) # Get manifest manifest = get_manifest(tmp_pixi_workspace) @@ -38,9 +34,6 @@ def test_pixi_minimal_backend(pixi_project: Path, pixi: Path, tmp_pixi_workspace # def test_nameless_versionless(pixi: Path, tmp_pixi_workspace: Path): # project_dir = repo_root().joinpath("tests", "data", "pixi_build", "name-and-version-less-package") # -# # Remove existing .pixi folders -# shutil.rmtree(project_dir.joinpath(".pixi"), ignore_errors=True) -# # # Copy to workspace # shutil.copytree(project_dir, tmp_pixi_workspace, dirs_exist_ok=True) # diff --git a/tests/integration_python/test_build.py b/tests/integration_python/test_build.py index 32ba5bc..7531918 100644 --- a/tests/integration_python/test_build.py +++ b/tests/integration_python/test_build.py @@ -1,11 +1,17 @@ -import shutil from pathlib import Path import pytest import tomli_w import tomllib -from .common import CURRENT_PLATFORM, ExitCode, Workspace, verify_cli_command +from .common import ( + CURRENT_PLATFORM, + ExitCode, + Workspace, + copy_manifest, + copytree_with_local_backend, + verify_cli_command, +) def test_build_conda_package( @@ -156,7 +162,7 @@ def test_editable_pyproject(pixi: Path, build_data: Path, tmp_pixi_workspace: Pa test_data = build_data.joinpath(project) target_dir = tmp_pixi_workspace.joinpath(project) - shutil.copytree(test_data, target_dir) + copytree_with_local_backend(test_data, target_dir) manifest_path = target_dir.joinpath("pyproject.toml") verify_cli_command( @@ -193,7 +199,7 @@ def test_non_editable_pyproject(pixi: Path, build_data: Path, tmp_pixi_workspace test_data = build_data.joinpath(project) target_dir = tmp_pixi_workspace.joinpath(project) - shutil.copytree(test_data, target_dir) + copytree_with_local_backend(test_data, target_dir) manifest_path = target_dir.joinpath("pyproject.toml") env = { @@ -234,7 +240,9 @@ def test_build_using_rattler_build_backend( build_data: Path, ) -> None: test_data = build_data.joinpath("rattler-build-backend") - shutil.copytree(test_data / "array-api-extra", tmp_pixi_workspace, dirs_exist_ok=True) + copytree_with_local_backend( + test_data / "array-api-extra", tmp_pixi_workspace, dirs_exist_ok=True + ) manifest_path = tmp_pixi_workspace / "pixi.toml" @@ -267,7 +275,7 @@ def test_incremental_builds( non_incremental_evidence: str, ) -> None: test_workspace = build_data / "minimal-backend-workspaces" / backend - shutil.copytree(test_workspace, tmp_pixi_workspace, dirs_exist_ok=True) + copytree_with_local_backend(test_workspace, tmp_pixi_workspace, dirs_exist_ok=True) manifest_path = tmp_pixi_workspace / "pixi.toml" verify_cli_command( @@ -287,7 +295,7 @@ def test_incremental_builds( def test_error_manifest_deps(pixi: Path, build_data: Path, tmp_pixi_workspace: Path) -> None: test_data = build_data.joinpath("rattler-build-backend") # copy the whole smokey project to the tmp_pixi_workspace - shutil.copytree(test_data / "smokey", tmp_pixi_workspace / "smokey") + copytree_with_local_backend(test_data / "smokey", tmp_pixi_workspace / "smokey") manifest_path = tmp_pixi_workspace / "smokey" / "pixi.toml" verify_cli_command( @@ -308,7 +316,7 @@ def test_error_manifest_deps_no_default( ) -> None: test_data = build_data.joinpath("rattler-build-backend") # copy the whole smokey2 project to the tmp_pixi_workspace - shutil.copytree(test_data / "smokey2", tmp_pixi_workspace / "smokey2") + copytree_with_local_backend(test_data / "smokey2", tmp_pixi_workspace / "smokey2") manifest_path = tmp_pixi_workspace / "smokey2" / "pixi.toml" verify_cli_command( @@ -329,7 +337,9 @@ def test_rattler_build_source_dependency( ) -> None: test_data = build_data.joinpath("rattler-build-backend") # copy the whole smokey2 project to the tmp_pixi_workspace - shutil.copytree(test_data / "source-dependency", tmp_pixi_workspace / "source-dependency") + copytree_with_local_backend( + test_data / "source-dependency", tmp_pixi_workspace / "source-dependency" + ) manifest_path = tmp_pixi_workspace / "source-dependency" / "b" / "pixi.toml" verify_cli_command( @@ -356,7 +366,7 @@ def test_recursive_source_run_dependencies( project = "recursive_source_run_dep" test_data = build_data.joinpath(project) - shutil.copytree(test_data, tmp_pixi_workspace, dirs_exist_ok=True) + copytree_with_local_backend(test_data, tmp_pixi_workspace, dirs_exist_ok=True) manifest_path = tmp_pixi_workspace.joinpath("pixi.toml") verify_cli_command( @@ -389,7 +399,7 @@ def test_maturin(pixi: Path, build_data: Path, tmp_pixi_workspace: Path) -> None project = "maturin" test_data = build_data.joinpath(project) - shutil.copytree(test_data, tmp_pixi_workspace, dirs_exist_ok=True) + copytree_with_local_backend(test_data, tmp_pixi_workspace, dirs_exist_ok=True) manifest_path = tmp_pixi_workspace.joinpath("pixi.toml") verify_cli_command( @@ -415,7 +425,7 @@ def test_recursive_source_build_dependencies( project = "recursive_source_build_dep" test_data = build_data.joinpath(project) - shutil.copytree(test_data, tmp_pixi_workspace, dirs_exist_ok=True) + copytree_with_local_backend(test_data, tmp_pixi_workspace, dirs_exist_ok=True) manifest_path = tmp_pixi_workspace.joinpath("pixi.toml") verify_cli_command( @@ -450,7 +460,9 @@ def test_source_path(pixi: Path, build_data: Path, tmp_pixi_workspace: Path) -> project = "cpp-with-path-to-source" test_data = build_data.joinpath(project) - shutil.copytree(test_data, tmp_pixi_workspace, dirs_exist_ok=True, copy_function=shutil.copy) + copytree_with_local_backend( + test_data, tmp_pixi_workspace, dirs_exist_ok=True, copy_function=copy_manifest + ) verify_cli_command( [ @@ -478,7 +490,7 @@ def test_extra_args(pixi: Path, build_data: Path, tmp_pixi_workspace: Path) -> N test_data = build_data.joinpath(project) target_dir = tmp_pixi_workspace.joinpath(project) - shutil.copytree(test_data, target_dir) + copytree_with_local_backend(test_data, target_dir) manifest_path = target_dir.joinpath("pixi.toml") verify_cli_command( @@ -504,7 +516,7 @@ def test_target_specific_dependency( test_data = build_data.joinpath(project) target_dir = tmp_pixi_workspace.joinpath(project) - shutil.copytree(test_data, target_dir) + copytree_with_local_backend(test_data, target_dir) manifest_path = target_dir.joinpath("pixi.toml") manifest = tomllib.loads(manifest_path.read_text()) diff --git a/tests/integration_python/test_config.py b/tests/integration_python/test_config.py index 90a8f1f..9feff5e 100644 --- a/tests/integration_python/test_config.py +++ b/tests/integration_python/test_config.py @@ -1,9 +1,9 @@ -import shutil -from pathlib import Path import platform +from pathlib import Path + import pytest -from .common import ExitCode, get_manifest, verify_cli_command +from .common import ExitCode, copytree_with_local_backend, get_manifest, verify_cli_command @pytest.mark.slow @@ -15,11 +15,8 @@ def test_pixi_build_cmake_env_config_without_target( # Copy the cmake env config test workspace cmake_env_test_project = test_data.joinpath("pixi_build", "env-config-cmake-test") - # Remove existing .pixi folders - shutil.rmtree(cmake_env_test_project.joinpath(".pixi"), ignore_errors=True) - # Copy to workspace - shutil.copytree(cmake_env_test_project, tmp_pixi_workspace, dirs_exist_ok=True) + copytree_with_local_backend(cmake_env_test_project, tmp_pixi_workspace, dirs_exist_ok=True) # Get manifest manifest = get_manifest(tmp_pixi_workspace) @@ -44,11 +41,10 @@ def test_pixi_build_cmake_env_config_with_target( # Copy the target cmake env config test workspace cmake_target_env_test_project = test_data.joinpath("pixi_build", "env-config-target-cmake-test") - # Remove existing .pixi folders - shutil.rmtree(cmake_target_env_test_project.joinpath(".pixi"), ignore_errors=True) - # Copy to workspace - shutil.copytree(cmake_target_env_test_project, tmp_pixi_workspace, dirs_exist_ok=True) + copytree_with_local_backend( + cmake_target_env_test_project, tmp_pixi_workspace, dirs_exist_ok=True + ) # Get manifest manifest = get_manifest(tmp_pixi_workspace) @@ -87,11 +83,8 @@ def test_pixi_build_cmake_invalid_config_rejection( # Copy the invalid config test workspace cmake_invalid_test_project = test_data.joinpath("pixi_build", "env-config-invalid-test") - # Remove existing .pixi folders - shutil.rmtree(cmake_invalid_test_project.joinpath(".pixi"), ignore_errors=True) - # Copy to workspace - shutil.copytree(cmake_invalid_test_project, tmp_pixi_workspace, dirs_exist_ok=True) + copytree_with_local_backend(cmake_invalid_test_project, tmp_pixi_workspace, dirs_exist_ok=True) # Get manifest manifest = get_manifest(tmp_pixi_workspace) @@ -118,11 +111,10 @@ def test_pixi_build_cmake_invalid_target_config_rejection( "pixi_build", "env-config-target-invalid-test" ) - # Remove existing .pixi folders - shutil.rmtree(cmake_target_invalid_test_project.joinpath(".pixi"), ignore_errors=True) - # Copy to workspace - shutil.copytree(cmake_target_invalid_test_project, tmp_pixi_workspace, dirs_exist_ok=True) + copytree_with_local_backend( + cmake_target_invalid_test_project, tmp_pixi_workspace, dirs_exist_ok=True + ) # Get manifest manifest = get_manifest(tmp_pixi_workspace) diff --git a/tests/integration_python/test_examples.py b/tests/integration_python/test_examples.py index 083eb49..8139e8f 100644 --- a/tests/integration_python/test_examples.py +++ b/tests/integration_python/test_examples.py @@ -1,9 +1,8 @@ -import shutil from pathlib import Path import pytest -from .common import get_manifest, repo_root, verify_cli_command +from .common import copytree_with_local_backend, get_manifest, repo_root, verify_cli_command @pytest.mark.slow @@ -22,11 +21,8 @@ def test_pixi_install_examples(pixi_project: Path, pixi: Path, tmp_pixi_workspac This test iterates through all folders in the examples directory and verifies that `pixi install` completes successfully for each project. """ - # Remove existing .pixi folders - shutil.rmtree(pixi_project.joinpath(".pixi"), ignore_errors=True) - # Copy to workspace - shutil.copytree(pixi_project, tmp_pixi_workspace, dirs_exist_ok=True) + copytree_with_local_backend(pixi_project, tmp_pixi_workspace, dirs_exist_ok=True) # Get manifest manifest = get_manifest(tmp_pixi_workspace) diff --git a/tests/integration_python/test_git.py b/tests/integration_python/test_git.py index 397e162..4b5a09f 100644 --- a/tests/integration_python/test_git.py +++ b/tests/integration_python/test_git.py @@ -1,8 +1,13 @@ from pathlib import Path -import shutil + import pytest -from .common import CURRENT_PLATFORM, verify_cli_command +from .common import ( + CURRENT_PLATFORM, + copy_manifest, + copytree_with_local_backend, + verify_cli_command, +) @pytest.mark.slow @@ -13,8 +18,7 @@ def test_build_git_source_deps(pixi: Path, tmp_pixi_workspace: Path, build_data: project = build_data / "rich_example" target_git_dir = tmp_pixi_workspace / "git_project" - shutil.copytree(project, target_git_dir) - shutil.rmtree(target_git_dir.joinpath(".pixi"), ignore_errors=True) + copytree_with_local_backend(project, target_git_dir) # init it as a git repo and commit all files verify_cli_command(["git", "init"], cwd=target_git_dir) @@ -32,9 +36,7 @@ def test_build_git_source_deps(pixi: Path, tmp_pixi_workspace: Path, build_data: minimal_workspace = tmp_pixi_workspace / "minimal_workspace" minimal_workspace.mkdir() - shutil.copyfile( - build_data / "manifests" / "workspace_git.toml", minimal_workspace / "pixi.toml" - ) + copy_manifest(build_data / "manifests" / "workspace_git.toml", minimal_workspace / "pixi.toml") # edit the minimal_workspace to include the git_project workspace_manifest = minimal_workspace / "pixi.toml" @@ -98,8 +100,7 @@ def test_build_git_source_deps_from_branch( project = build_data / "rich_example" target_git_dir = tmp_pixi_workspace / "git_project" - shutil.rmtree(project.joinpath(".pixi"), ignore_errors=True) - shutil.copytree(project, target_git_dir) + copytree_with_local_backend(project, target_git_dir) # init it as a git repo and commit all files to a test-branch verify_cli_command(["git", "init"], cwd=target_git_dir) @@ -119,9 +120,7 @@ def test_build_git_source_deps_from_branch( minimal_workspace = tmp_pixi_workspace / "minimal_workspace" minimal_workspace.mkdir() - shutil.copyfile( - build_data / "manifests" / "workspace_git.toml", minimal_workspace / "pixi.toml" - ) + copy_manifest(build_data / "manifests" / "workspace_git.toml", minimal_workspace / "pixi.toml") # edit the minimal_workspace to include the git_project workspace_manifest = minimal_workspace / "pixi.toml" @@ -164,8 +163,7 @@ def test_build_git_source_deps_from_rev( project = build_data / "rich_example" target_git_dir = tmp_pixi_workspace / "git_project" - shutil.copytree(project, target_git_dir) - shutil.rmtree(target_git_dir.joinpath(".pixi"), ignore_errors=True) + copytree_with_local_backend(project, target_git_dir) # init it as a git repo and commit all files to a test-branch verify_cli_command(["git", "init"], cwd=target_git_dir) @@ -183,9 +181,7 @@ def test_build_git_source_deps_from_rev( minimal_workspace = tmp_pixi_workspace / "minimal_workspace" minimal_workspace.mkdir() - shutil.copyfile( - build_data / "manifests" / "workspace_git.toml", minimal_workspace / "pixi.toml" - ) + copy_manifest(build_data / "manifests" / "workspace_git.toml", minimal_workspace / "pixi.toml") # edit the minimal_workspace to include the git_project workspace_manifest = minimal_workspace / "pixi.toml" @@ -231,8 +227,7 @@ def test_build_git_source_deps_from_tag( project = build_data / "rich_example" target_git_dir = tmp_pixi_workspace / "git_project" - shutil.rmtree(project.joinpath(".pixi"), ignore_errors=True) - shutil.copytree(project, target_git_dir) + copytree_with_local_backend(project, target_git_dir) # init it as a git repo and commit all files to a tag called v1.0.0 verify_cli_command(["git", "init"], cwd=target_git_dir) @@ -251,9 +246,7 @@ def test_build_git_source_deps_from_tag( minimal_workspace = tmp_pixi_workspace / "minimal_workspace" minimal_workspace.mkdir() - shutil.copyfile( - build_data / "manifests" / "workspace_git.toml", minimal_workspace / "pixi.toml" - ) + copy_manifest(build_data / "manifests" / "workspace_git.toml", minimal_workspace / "pixi.toml") # edit the minimal_workspace to include the git_project workspace_manifest = minimal_workspace / "pixi.toml" diff --git a/tests/integration_python/test_global.py b/tests/integration_python/test_global.py index a683446..88755f5 100644 --- a/tests/integration_python/test_global.py +++ b/tests/integration_python/test_global.py @@ -1,11 +1,17 @@ -import shutil from pathlib import Path import pytest import tomli_w import tomllib -from .common import ExitCode, exec_extension, git_test_repo, verify_cli_command +from .common import ( + ExitCode, + copy_manifest, + copytree_with_local_backend, + exec_extension, + git_test_repo, + verify_cli_command, +) @pytest.mark.parametrize( @@ -181,10 +187,12 @@ def test_update(pixi: Path, tmp_path: Path, build_data: Path) -> None: # Create a modifiable copy of simple-package source_project = tmp_path / "simple-package-copy" - # by using shutil.copy, we change the metadata and therefore get a higher timestamp + # by using copy_manifest we change the metadata and therefore get a higher timestamp # that way we make sure that we don't use old caches - shutil.copytree( - build_data.joinpath("simple-package"), source_project, copy_function=shutil.copy + copytree_with_local_backend( + build_data.joinpath("simple-package"), + source_project, + copy_function=copy_manifest, ) # Install the package from the path diff --git a/tests/integration_python/test_log.py b/tests/integration_python/test_log.py index 2ff6309..3a3d25d 100644 --- a/tests/integration_python/test_log.py +++ b/tests/integration_python/test_log.py @@ -1,13 +1,12 @@ -import shutil from pathlib import Path -from .common import ExitCode, verify_cli_command +from .common import ExitCode, copytree_with_local_backend, verify_cli_command def test_log_working_quiet(pixi: Path, build_data: Path, tmp_pixi_workspace: Path) -> None: test_data = build_data.joinpath("log-example", "working") - shutil.copytree(test_data, tmp_pixi_workspace, dirs_exist_ok=True) + copytree_with_local_backend(test_data, tmp_pixi_workspace, dirs_exist_ok=True) verify_cli_command( [ @@ -24,7 +23,7 @@ def test_log_working_quiet(pixi: Path, build_data: Path, tmp_pixi_workspace: Pat def test_log_working_default(pixi: Path, build_data: Path, tmp_pixi_workspace: Path) -> None: test_data = build_data.joinpath("log-example", "working") - shutil.copytree(test_data, tmp_pixi_workspace, dirs_exist_ok=True) + copytree_with_local_backend(test_data, tmp_pixi_workspace, dirs_exist_ok=True) verify_cli_command( [ @@ -40,7 +39,7 @@ def test_log_working_default(pixi: Path, build_data: Path, tmp_pixi_workspace: P def test_log_failing(pixi: Path, build_data: Path, tmp_pixi_workspace: Path) -> None: test_data = build_data.joinpath("log-example", "failing") - shutil.copytree(test_data, tmp_pixi_workspace, dirs_exist_ok=True) + copytree_with_local_backend(test_data, tmp_pixi_workspace, dirs_exist_ok=True) verify_cli_command( [ diff --git a/tests/integration_python/test_multi_output.py b/tests/integration_python/test_multi_output.py index ac2a984..4cc9c68 100644 --- a/tests/integration_python/test_multi_output.py +++ b/tests/integration_python/test_multi_output.py @@ -1,14 +1,13 @@ -import shutil from pathlib import Path -from .common import CURRENT_PLATFORM, ExitCode, verify_cli_command +from .common import CURRENT_PLATFORM, ExitCode, copytree_with_local_backend, verify_cli_command def test_build(pixi: Path, build_data: Path, tmp_pixi_workspace: Path) -> None: project = "multi-output" test_data = build_data.joinpath(project) test_data.joinpath("pixi.lock").unlink(missing_ok=True) - shutil.copytree(test_data, tmp_pixi_workspace, dirs_exist_ok=True) + copytree_with_local_backend(test_data, tmp_pixi_workspace, dirs_exist_ok=True) package_manifest = tmp_pixi_workspace.joinpath("recipe", "pixi.toml") verify_cli_command( @@ -35,7 +34,7 @@ def test_install(pixi: Path, build_data: Path, tmp_pixi_workspace: Path) -> None project = "multi-output" test_data = build_data.joinpath(project) test_data.joinpath("pixi.lock").unlink(missing_ok=True) - shutil.copytree(test_data, tmp_pixi_workspace, dirs_exist_ok=True) + copytree_with_local_backend(test_data, tmp_pixi_workspace, dirs_exist_ok=True) # Run `install` should work and create a lock file verify_cli_command([pixi, "install", "-v", "--manifest-path", tmp_pixi_workspace]) @@ -48,7 +47,7 @@ def test_available_packages(pixi: Path, build_data: Path, tmp_pixi_workspace: Pa project = "multi-output" test_data = build_data.joinpath(project) test_data.joinpath("pixi.lock").unlink(missing_ok=True) - shutil.copytree(test_data, tmp_pixi_workspace, dirs_exist_ok=True) + copytree_with_local_backend(test_data, tmp_pixi_workspace, dirs_exist_ok=True) # foobar-desktop is a direct dependency, so it should be properly installed verify_cli_command( diff --git a/tests/integration_python/test_ros.py b/tests/integration_python/test_ros.py new file mode 100644 index 0000000..3261102 --- /dev/null +++ b/tests/integration_python/test_ros.py @@ -0,0 +1,131 @@ +import json +from pathlib import Path +from typing import Any + +import pytest + +from .common import copytree_with_local_backend, verify_cli_command + + +ROS_WORKSPACE_NAME = "ros-workspace" +ROS_PACKAGE_DIRS = ["navigator", "navigator_py", "talker-py"] +ROS_PACKAGE_OUTPUT_NAMES = { + "navigator": "ros-humble-navigator", + "navigator_py": "ros-humble-navigator-py", + "talker-py": "ros-humble-talker-py", +} + + +def _prepare_ros_workspace(build_data: Path, tmp_pixi_workspace: Path) -> Path: + workspace_src = build_data.joinpath(ROS_WORKSPACE_NAME) + copytree_with_local_backend(workspace_src, tmp_pixi_workspace, dirs_exist_ok=True) + return tmp_pixi_workspace + + +def _load_package_metadata(project_root: Path, package_name: str) -> dict[str, Any]: + metadata_root = project_root.joinpath(".pixi", "build", "metadata-v0") + assert metadata_root.exists(), f"metadata directory missing for {package_name}" + selected_metadata: dict[str, Any] | None = None + selected_mtime: float = -1.0 + for metadata_file in metadata_root.rglob("metadata.json"): + metadata = json.loads(metadata_file.read_text()) + outputs = metadata.get("outputs", []) + if any( + isinstance(output, dict) and output.get("metadata", {}).get("name") == package_name + for output in outputs + ): + mtime = metadata_file.stat().st_mtime + if mtime > selected_mtime: + selected_metadata = metadata + selected_mtime = mtime + if selected_metadata is not None: + return selected_metadata + raise AssertionError(f"metadata for {package_name} not found") + + +@pytest.mark.slow +@pytest.mark.parametrize("package_dir", ROS_PACKAGE_DIRS, ids=ROS_PACKAGE_DIRS) +def test_ros_packages_build( + package_dir: str, pixi: Path, build_data: Path, tmp_pixi_workspace: Path +) -> None: + workspace = _prepare_ros_workspace(build_data, tmp_pixi_workspace) + output_dir = workspace.joinpath("dist") + output_dir.mkdir(parents=True, exist_ok=True) + + manifest_path = workspace.joinpath("src", package_dir, "pixi.toml") + + verify_cli_command( + [ + pixi, + "build", + "--manifest-path", + manifest_path, + "--output-dir", + output_dir, + ] + ) + + expected_name = ROS_PACKAGE_OUTPUT_NAMES[package_dir] + built_packages = list(output_dir.glob("*.conda")) + assert built_packages, f"no package artifacts produced for {expected_name}" + assert any(expected_name in artifact.name for artifact in built_packages) + + +def test_ros_input_globs(pixi: Path, build_data: Path, tmp_pixi_workspace: Path) -> None: + workspace = _prepare_ros_workspace(build_data, tmp_pixi_workspace) + output_dir = workspace.joinpath("dist") + output_dir.mkdir(parents=True, exist_ok=True) + + manifest_path = workspace.joinpath("src", "navigator_py", "pixi.toml") + + verify_cli_command( + [ + pixi, + "build", + "--manifest-path", + manifest_path, + "--output-dir", + output_dir, + ] + ) + + metadata = _load_package_metadata(workspace, ROS_PACKAGE_OUTPUT_NAMES["navigator_py"]) + globs = metadata.get("input_hash", {}).get("globs", []) + print(globs) + assert {"hi"}.issubset(set(globs)) + + +def test_ros_rebuild_on_source_change( + pixi: Path, build_data: Path, tmp_pixi_workspace: Path +) -> None: + workspace = _prepare_ros_workspace(build_data, tmp_pixi_workspace) + output_dir = workspace.joinpath("dist") + output_dir.mkdir(parents=True, exist_ok=True) + + manifest_path = workspace.joinpath("src", "talker-py", "pixi.toml") + package_name = ROS_PACKAGE_OUTPUT_NAMES["talker-py"] + + def build_and_get_hash() -> str: + verify_cli_command( + [ + pixi, + "build", + "--manifest-path", + manifest_path, + "--output-dir", + output_dir, + ] + ) + metadata = _load_package_metadata(workspace, package_name) + hash_value = metadata.get("input_hash", {}).get("hash", "") + assert isinstance(hash_value, str) + return hash_value + + initial_hash = build_and_get_hash() + + source_file = workspace.joinpath("src", "talker-py", "setup.py") + source_file.write_text(source_file.read_text() + "\n# trigger rebuild\n") + + rebuilt_hash = build_and_get_hash() + + assert rebuilt_hash and rebuilt_hash != initial_hash diff --git a/tests/integration_python/test_variants.py b/tests/integration_python/test_variants.py index 72f473e..baa7e16 100644 --- a/tests/integration_python/test_variants.py +++ b/tests/integration_python/test_variants.py @@ -1,4 +1,3 @@ -import shutil from pathlib import Path import pytest @@ -6,7 +5,7 @@ import tomli_w import tomllib -from .common import CURRENT_PLATFORM, verify_cli_command +from .common import CURRENT_PLATFORM, copytree_with_local_backend, verify_cli_command @pytest.mark.parametrize( @@ -21,7 +20,7 @@ def test_inline_variants_produce_multiple_outputs( workspace_dirname: str, ) -> None: test_workspace = build_data.joinpath(workspace_dirname) - shutil.copytree(test_workspace, tmp_pixi_workspace, dirs_exist_ok=True) + copytree_with_local_backend(test_workspace, tmp_pixi_workspace, dirs_exist_ok=True) manifest_path = tmp_pixi_workspace.joinpath("pixi.toml") manifest = tomllib.loads(manifest_path.read_text()) @@ -64,7 +63,7 @@ def test_inline_variants_change_triggers_rebuild( workspace_dirname: str, ) -> None: test_workspace = build_data.joinpath(workspace_dirname) - shutil.copytree(test_workspace, tmp_pixi_workspace, dirs_exist_ok=True) + copytree_with_local_backend(test_workspace, tmp_pixi_workspace, dirs_exist_ok=True) manifest_path = tmp_pixi_workspace.joinpath("pixi.toml") manifest = tomllib.loads(manifest_path.read_text()) @@ -113,7 +112,7 @@ def test_variant_files_produce_multiple_outputs( workspace_dirname: str, ) -> None: test_workspace = build_data.joinpath(workspace_dirname) - shutil.copytree(test_workspace, tmp_pixi_workspace, dirs_exist_ok=True) + copytree_with_local_backend(test_workspace, tmp_pixi_workspace, dirs_exist_ok=True) manifest_path = tmp_pixi_workspace.joinpath("pixi.toml") manifest = tomllib.loads(manifest_path.read_text()) @@ -159,7 +158,7 @@ def test_variant_files_change_triggers_rebuild( workspace_dirname: str, ) -> None: test_workspace = build_data.joinpath(workspace_dirname) - shutil.copytree(test_workspace, tmp_pixi_workspace, dirs_exist_ok=True) + copytree_with_local_backend(test_workspace, tmp_pixi_workspace, dirs_exist_ok=True) manifest_path = tmp_pixi_workspace.joinpath("pixi.toml") manifest = tomllib.loads(manifest_path.read_text())