diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index f52db754..1b22f174 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -1,73 +1,48 @@ name: CI on: [push, pull_request] -jobs: - # Here we're keeping on arbitrary LLVM version fixed and varying GCC. - linux-gcc: - strategy: - fail-fast: false - matrix: - image: - # List: https://github.com/conan-io/conan-docker-tools - - gcc10 - - gcc9 - - gcc8 - - gcc7 - - gcc6 - - runs-on: ubuntu-latest - container: - image: conanio/${{matrix.image}} - options: --user root - - steps: - - uses: actions/checkout@v2 - - name: Create Build Environment - run: cmake -E make_directory build - - name: Install libclang - run: apt-get -qq update && apt-get install -y llvm clang libclang-dev - - name: Install ninja - run: type ninja || apt-get install -y ninja-build +concurrency: + group: ci-${{ github.ref }} + cancel-in-progress: true - - name: Configure - working-directory: build/ - run: cmake -GNinja $GITHUB_WORKSPACE - - name: Build - working-directory: build/ - run: cmake --build . - - name: Test - working-directory: build/ - run: ctest --output-on-failure - - # Here we're varying the LLVM version and using its clang for compiling as well. - linux-clang: +jobs: + test: + runs-on: ${{ matrix.on }} strategy: - fail-fast: false matrix: - version: [7, 8, 9, 10] - - runs-on: ubuntu-latest - container: - # Just one of the newer images. - image: conanio/gcc10 - options: --user root + include: + - { environment: "llvm-15", on: "ubuntu-24.04" } + - { environment: "llvm-16", on: "ubuntu-24.04" } + - { environment: "llvm-17", on: "ubuntu-24.04" } + - { environment: "llvm-18", on: "ubuntu-24.04" } + - { environment: "llvm-19", on: "ubuntu-24.04" } + - { environment: "llvm-20", on: "ubuntu-24.04" } + - { environment: "llvm-21", on: "ubuntu-24.04" } + - { environment: "llvm-22", on: "ubuntu-24.04" } + # The Xcode 16.x SDK is not compatible with such an old clang + # - { environment: "llvm-15", on: "macos-15" } + # - { environment: "llvm-16", on: "macos-15" } + # - { environment: "llvm-17", on: "macos-15" } + # - { environment: "llvm-18", on: "macos-15" } + - { environment: "llvm-19", on: "macos-15" } + # conda cannot solve for clangdev=20,21,22 on Silicon + # - { environment: "llvm-20", on: "macos-15" } + # - { environment: "llvm-21", on: "macos-15" } + # - { environment: "llvm-22", on: "macos-15" } + # The Xcode 16.x SDK is not compatible with such an old clang + # - { environment: "llvm-15", on: "macos-15-intel" } + # - { environment: "llvm-16", on: "macos-15-intel" } + # - { environment: "llvm-17", on: "macos-15-intel" } + # - { environment: "llvm-18", on: "macos-15-intel" } + - { environment: "llvm-19", on: "macos-15-intel" } + - { environment: "llvm-20", on: "macos-15-intel" } + - { environment: "llvm-21", on: "macos-15-intel" } + - { environment: "llvm-22", on: "macos-15-intel" } steps: - - uses: actions/checkout@v2 - - name: Create Build Environment - run: cmake -E make_directory build - - name: Install libclang - run: apt-get -qq update && apt-get install -y llvm-${{matrix.version}} clang-${{matrix.version}} libclang-${{matrix.version}}-dev - - name: Install ninja - run: type ninja || apt-get install -y ninja-build - - - name: Configure - working-directory: build/ - run: cmake -GNinja $GITHUB_WORKSPACE -DCMAKE_CXX_COMPILER=clang++-${{matrix.version}} - - name: Build - working-directory: build/ - run: cmake --build . - - name: Test - working-directory: build/ - run: ctest --output-on-failure - + - uses: actions/checkout@v5 + with: { submodules: recursive } + - uses: prefix-dev/setup-pixi@v0.9.4 + with: { pixi-version: v0.68.0 } + - name: run tests + run: pixi run -e ${{ matrix.environment }} test diff --git a/.gitignore b/.gitignore new file mode 100644 index 00000000..6e0a3fc2 --- /dev/null +++ b/.gitignore @@ -0,0 +1,2 @@ +/build +/Testing diff --git a/CMakeLists.txt b/CMakeLists.txt index 80d0aca9..38c35b3c 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -2,7 +2,7 @@ # SPDX-License-Identifier: MIT # found in the top-level directory of this distribution. -cmake_minimum_required(VERSION 3.11) +cmake_minimum_required(VERSION 4.0) project(cppast VERSION 0.1.0) if(CMAKE_CURRENT_SOURCE_DIR STREQUAL CMAKE_SOURCE_DIR) diff --git a/README.md b/README.md index 5c54628f..788b271f 100644 --- a/README.md +++ b/README.md @@ -40,23 +40,17 @@ TODO, refer to documentation comments in header file. ### Installation -The library can be used as CMake subdirectory, download it and call `add_subdirectory(path/to/cppast)`, then link to the `cppast` target and enable C++11 or higher. +For development, we recommend to use [pixi](https://pixi.sh). Run `pixi run build` to compile the package, `pixi run test` to run its test suite, `pixi run cppast` to run the cppast tool. -The parser needs `libclang` and the `clang++` binary, at least version 4.0.0. -The `clang++` binary will be found in `PATH` and in the same directory as the program that is being executed. +The library can also be used as CMake subdirectory, download it and call `add_subdirectory(path/to/cppast)`, then link to the `cppast` target and enable C++11 or higher. -*Note: The project will drop support for older LLVM versions very soon; this minimizes the workaround code when the `libclang` API catches up.* +The parser needs `libclang` and the `clang++` binary, at least version 15. +The `clang++` binary will be found in `PATH` and in the same directory as the program that is being executed. The CMake code requires `llvm-config`, you may need to install `llvm` and not just `clang` to get it (e.g. on ArchLinux). If `llvm-config` is in your path and the version is compatible, it should just work out of the box. Else you need to set the CMake variable `LLVM_CONFIG_BINARY` to the proper path. -If you don't have a proper clang version installed, it can also be downloaded. -For that you need to set `LLVM_DOWNLOAD_OS_NAME`. -This is the name of the operating system used on the [LLVM pre-built binary archive](http://releases.llvm.org/download.html#4.0.0), e.g. `x86_64-linux-gnu-ubuntu-16.10` for Ubuntu 16.10. - -You can also set `LLVM_DOWNLOAD_URL` to a custom url, to download a specific version or from a mirror. - If you don't have `llvm-config`, you need to pass the locations explictly. For that set the option `LLVM_VERSION_EXPLICIT` to the version you're using, `LIBCLANG_LIBRARY` to the location of the libclang library file, diff --git a/external/external.cmake b/external/external.cmake index 556d847c..abbe8286 100644 --- a/external/external.cmake +++ b/external/external.cmake @@ -9,7 +9,7 @@ include(FetchContent) find_package(type_safe QUIET) if(NOT type_safe_FOUND) message(STATUS "Fetching type_safe") - FetchContent_Declare(type_safe GIT_REPOSITORY https://github.com/foonathan/type_safe GIT_TAG origin/main) + FetchContent_Declare(type_safe GIT_REPOSITORY https://github.com/foonathan/type_safe GIT_TAG 292e8c127037e33d92f8f52dab0f1184993942d0) # main as of 2026-05-20 FetchContent_MakeAvailable(type_safe) endif() @@ -31,7 +31,7 @@ if(build_tool) set(CXXOPTS_BUILD_TESTS OFF CACHE BOOL "") message(STATUS "Fetching cxxopts") - FetchContent_Declare(cxxopts URL https://github.com/jarro2783/cxxopts/archive/v2.2.1.zip) + FetchContent_Declare(cxxopts GIT_REPOSITORY https://github.com/jarro2783/cxxopts GIT_TAG a3a21b31ef2894b5a802f041f40d51059469a259) # master as of 2026-05-20 FetchContent_MakeAvailable(cxxopts) endif() @@ -50,38 +50,6 @@ function(name_without_extension FILENAME NAME) set(${NAME} "${name_we}" PARENT_SCOPE) endfunction() -# downloads and extracts LLVM using the given URL, filename, and extension -# sets: LLVM_DOWNLOAD_DIR -function(_cppast_download_llvm url) - get_filename_component(file "${url}" NAME) - name_without_extension(${file} folder) - - if(NOT EXISTS ${CMAKE_CURRENT_BINARY_DIR}/${folder}) - message(STATUS "Downloading LLVM from ${url}") - file(DOWNLOAD ${url} ${CMAKE_CURRENT_BINARY_DIR}/${file} - STATUS status - LOG log) - - list(GET status 0 status_code) - list(GET status 1 status_string) - if(NOT status_code EQUAL 0) - message(FATAL_ERROR "error downloading llvm: ${status_string}" "${log}") - endif() - - execute_process(COMMAND ${CMAKE_COMMAND} -E tar xJf ${file} - WORKING_DIRECTORY ${CMAKE_CURRENT_BINARY_DIR}) - endif() - - set(LLVM_DOWNLOAD_DIR ${CMAKE_CURRENT_BINARY_DIR}/${folder} PARENT_SCOPE) -endfunction() - -# downloads and extracts LLVM using the given version and OS name -# sets: LLVM_DOWNLOAD_DIR -function(_cppast_download_llvm_from_llvm_releases version os) - _cppast_download_llvm("http://releases.llvm.org/${version}/clang+llvm-${version}-${os}.tar.xz") - set(LLVM_DOWNLOAD_DIR ${LLVM_DOWNLOAD_DIR} PARENT_SCOPE) -endfunction() - # determines the llvm version from a config binary macro(_cppast_llvm_version output_name llvm_binary) execute_process(COMMAND ${llvm_binary} --version @@ -94,34 +62,16 @@ endmacro() # finds the llvm-config binary # sets: LLVM_CONFIG_BINARY function(_cppast_find_llvm_config) - unset(LLVM_CONFIG_BINARY CACHE) - if(LLVM_DOWNLOAD_DIR) - find_program(LLVM_CONFIG_BINARY "llvm-config" "${LLVM_DOWNLOAD_DIR}/bin" NO_DEFAULT_PATH) - else() - find_program(llvm_config_binary_no_suffix llvm-config) - find_program(llvm_config_binary_suffix NAMES llvm-config-10 llvm-config-9 llvm-config-8 llvm-config-7 llvm-config-6.0 llvm-config-5.0 llvm-config-4.0) + if(NOT LLVM_CONFIG_BINARY) + + find_program(LLVM_CONFIG_BINARY llvm-config) - if(NOT llvm_config_binary_no_suffix) - set(LLVM_CONFIG_BINARY ${llvm_config_binary_suffix} CACHE INTERNAL "") - elseif(NOT llvm_config_binary_suffix) - set(LLVM_CONFIG_BINARY ${llvm_config_binary_no_suffix} CACHE INTERNAL "") + if(NOT LLVM_CONFIG_BINARY) + message(FATAL_ERROR "Unable to find llvm-config binary, please set option LLVM_CONFIG_BINARY yourself") else() - # pick latest version of the two - _cppast_llvm_version(suffix_version ${llvm_config_binary_suffix}) - _cppast_llvm_version(no_suffix_version ${llvm_config_binary_no_suffix}) - if(suffix_version VERSION_GREATER no_suffix_version) - set(LLVM_CONFIG_BINARY ${llvm_config_binary_suffix} CACHE INTERNAL "") - else() - set(LLVM_CONFIG_BINARY ${llvm_config_binary_no_suffix} CACHE INTERNAL "") - endif() + message(STATUS "Found llvm-config at ${LLVM_CONFIG_BINARY}") endif() endif() - - if(NOT LLVM_CONFIG_BINARY) - message(FATAL_ERROR "Unable to find llvm-config binary, please set option LLVM_CONFIG_BINARY yourself") - else() - message(STATUS "Found llvm-config at ${LLVM_CONFIG_BINARY}") - endif() endfunction() # find libclang using the config tool @@ -202,11 +152,7 @@ function(_cppast_find_libclang config_tool min_version force) endif() endfunction() -set(llvm_min_version 4.0.0) - -if(NOT DEFINED LLVM_PREFERRED_VERSION) - set(LLVM_PREFERRED_VERSION 4.0.0 CACHE STRING "the preferred LLVM version") -endif() +set(llvm_min_version 15.0.0) if(DEFINED LLVM_VERSION_EXPLICIT) if(LLVM_VERSION_EXPLICIT VERSION_LESS llvm_min_version) @@ -215,11 +161,6 @@ if(DEFINED LLVM_VERSION_EXPLICIT) set(LLVM_VERSION ${LLVM_VERSION_EXPLICIT} CACHE INTERNAL "") message(STATUS "Using manually specified LLVM version ${LLVM_VERSION}") elseif(NOT LLVM_CONFIG_BINARY) - if(DEFINED LLVM_DOWNLOAD_OS_NAME) - _cppast_download_llvm_from_llvm_releases(${LLVM_PREFERRED_VERSION} ${LLVM_DOWNLOAD_OS_NAME}) - elseif(DEFINED LLVM_DOWNLOAD_URL) - _cppast_download_llvm(${LLVM_DOWNLOAD_URL}) - endif() _cppast_find_llvm_config() _cppast_find_libclang(${LLVM_CONFIG_BINARY} ${llvm_min_version} 1) # override here else() diff --git a/external/tpl/CMakeLists.txt b/external/tpl/CMakeLists.txt index 8662ba3a..4f31d3e2 100644 --- a/external/tpl/CMakeLists.txt +++ b/external/tpl/CMakeLists.txt @@ -1,4 +1,4 @@ -cmake_minimum_required(VERSION 3.1) +cmake_minimum_required(VERSION 4.0) project(tiny-process-library) diff --git a/include/cppast/compile_config.hpp b/include/cppast/compile_config.hpp index aecb24b3..63d794ce 100644 --- a/include/cppast/compile_config.hpp +++ b/include/cppast/compile_config.hpp @@ -168,6 +168,11 @@ class compile_config return do_use_c(); } + void add_flag(std::string flag) + { + flags_.push_back(std::move(flag)); + } + protected: compile_config(std::vector def_flags) : flags_(std::move(def_flags)) {} @@ -176,11 +181,6 @@ class compile_config ~compile_config() noexcept = default; - void add_flag(std::string flag) - { - flags_.push_back(std::move(flag)); - } - const std::vector& get_flags() const noexcept { return flags_; diff --git a/include/cppast/cpp_entity_index.hpp b/include/cppast/cpp_entity_index.hpp index 72c688d8..9215e43d 100644 --- a/include/cppast/cpp_entity_index.hpp +++ b/include/cppast/cpp_entity_index.hpp @@ -46,7 +46,7 @@ struct cpp_entity_id : type_safe::strong_typedef=2.17,<3.0.a0 + - libgomp >=7.5.0 + constrains: + - openmp_impl <0.0a0 + license: BSD-3-Clause + license_family: BSD + size: 28948 + timestamp: 1770939786096 +- conda: https://conda.anaconda.org/conda-forge/linux-64/binutils-2.45.1-default_h4852527_102.conda + sha256: 3c7c5580c1720206f28b7fa3d60d17986b3f32465e63009c14c9ae1ea64f926c + md5: 212fe5f1067445544c99dc1c847d032c + depends: + - binutils_impl_linux-64 >=2.45.1,<2.45.2.0a0 + license: GPL-3.0-only + license_family: GPL + size: 35436 + timestamp: 1774197482571 +- conda: https://conda.anaconda.org/conda-forge/linux-64/binutils_impl_linux-64-2.45.1-default_hfdba357_102.conda + sha256: 0a7d405064f53b9d91d92515f1460f7906ee5e8523f3cd8973430e81219f4917 + md5: 8165352fdce2d2025bf884dc0ee85700 + depends: + - ld_impl_linux-64 2.45.1 default_hbd61a6d_102 + - sysroot_linux-64 + - zstd >=1.5.7,<1.6.0a0 + license: GPL-3.0-only + license_family: GPL + size: 3661455 + timestamp: 1774197460085 +- conda: https://conda.anaconda.org/conda-forge/linux-64/binutils_linux-64-2.45.1-default_h4852527_102.conda + sha256: 78a58d523d072b7f8e591b8f8572822e044b31764ed7e8d170392e7bc6d58339 + md5: 2a307a17309d358c9b42afdd3199ddcc + depends: + - binutils_impl_linux-64 2.45.1 default_hfdba357_102 + license: GPL-3.0-only + license_family: GPL + size: 36304 + timestamp: 1774197485247 +- conda: https://conda.anaconda.org/conda-forge/linux-64/boost-cpp-1.85.0-h3c6214e_4.conda + sha256: dec1f52d8869b94a9cb2b4d9a727a00ae2c54e7b5a66a51d3d9f1c33159ebb45 + md5: cc4533eabf5caa8b4fbb56418d1617a9 + depends: + - bzip2 >=1.0.8,<2.0a0 + - icu >=75.1,<76.0a0 + - libboost-devel 1.85.0 h00ab1b0_4 + - libzlib >=1.3.1,<2.0a0 + - xz >=5.2.6,<6.0a0 + - zstd >=1.5.6,<1.6.0a0 + license: BSL-1.0 + size: 18122 + timestamp: 1722289881184 +- conda: https://conda.anaconda.org/conda-forge/linux-64/bzip2-1.0.8-hda65f42_9.conda + sha256: 0b75d45f0bba3e95dc693336fa51f40ea28c980131fec438afb7ce6118ed05f6 + md5: d2ffd7602c02f2b316fd921d39876885 + depends: + - __glibc >=2.17,<3.0.a0 + - libgcc >=14 + license: bzip2-1.0.6 + license_family: BSD + size: 260182 + timestamp: 1771350215188 +- conda: https://conda.anaconda.org/conda-forge/linux-64/c-ares-1.34.6-hb03c661_0.conda + sha256: cc9accf72fa028d31c2a038460787751127317dcfa991f8d1f1babf216bb454e + md5: 920bb03579f15389b9e512095ad995b7 + depends: + - __glibc >=2.17,<3.0.a0 + - libgcc >=14 + license: MIT + license_family: MIT + size: 207882 + timestamp: 1765214722852 +- conda: https://conda.anaconda.org/conda-forge/linux-64/c-compiler-1.11.0-h4d9bdce_0.conda + sha256: 8e7a40f16400d7839c82581410aa05c1f8324a693c9d50079f8c50dc9fb241f0 + md5: abd85120de1187b0d1ec305c2173c71b + depends: + - binutils + - gcc + - gcc_linux-64 14.* + license: BSD-3-Clause + license_family: BSD + size: 6693 + timestamp: 1753098721814 +- conda: https://conda.anaconda.org/conda-forge/linux-64/clang-15-15.0.7-default_h127d8a8_5.conda + sha256: 992b335a65a406b585fa6f644f3691efe8de5182275a0d78a2cd40ffa327ddb2 + md5: 23fa44189a3fee1c6d38e598130ad19c + depends: + - libclang-cpp15 15.0.7 default_h127d8a8_5 + - libgcc-ng >=12 + - libllvm15 >=15.0.7,<15.1.0a0 + - libstdcxx-ng >=12 + constrains: + - clang-tools 15.0.7 + - clangxx 15.0.7 + - llvm-tools 15.0.7 + - clangdev 15.0.7 + license: Apache-2.0 WITH LLVM-exception + license_family: Apache + size: 810177 + timestamp: 1711063799710 +- conda: https://conda.anaconda.org/conda-forge/linux-64/clang-15.0.7-h39da44c_5.conda + sha256: 863efb7a40195a16062be5402bb677c6fbbd08f53de789ff16366c27a0a7a08b + md5: 9c12603bcef2dce0f93f1e1a47809e5e + depends: + - clang-15 15.0.7 default_h127d8a8_5 + - gcc_impl_linux-64 + constrains: + - clang-tools 15.0.7.* + - llvm 15.0.7.* + - llvm-tools 15.0.7.* + - llvmdev 15.0.7.* + license: Apache-2.0 WITH LLVM-exception + license_family: Apache + size: 133152 + timestamp: 1711063872610 +- conda: https://conda.anaconda.org/conda-forge/linux-64/clang-16-16.0.6-default_hddf928d_15.conda + sha256: aa96d079366b0c456c5f4f045451eee4aaa862b03cc1c28b01dd784e0ddef47a + md5: 61d63a0f0954f5b043930ec4fcf40e3f + depends: + - __glibc >=2.17,<3.0.a0 + - libclang-cpp16 16.0.6 default_hddf928d_15 + - libgcc >=14 + - libllvm16 >=16.0.6,<16.1.0a0 + - libstdcxx >=14 + constrains: + - clangdev 16.0.6 + - clang-tools 16.0.6 + - clangxx 16.0.6 + - llvm-tools 16.0.6 + license: Apache-2.0 WITH LLVM-exception + license_family: Apache + size: 778881 + timestamp: 1756166860477 +- conda: https://conda.anaconda.org/conda-forge/linux-64/clang-16.0.6-default_hfa515fb_15.conda + sha256: b303447a1f3d40386ca79d34a9383b2fe522f1e8358087bf7ca699647ac844b4 + md5: c3357d588e7330cebbe34b0fba0f09c0 + depends: + - binutils_impl_linux-64 + - clang-16 16.0.6 default_hddf928d_15 + - libgcc-devel_linux-64 + - sysroot_linux-64 + constrains: + - clang-tools 16.0.6.* + - llvm 16.0.6.* + - llvm-tools 16.0.6.* + - llvmdev 16.0.6.* + license: Apache-2.0 WITH LLVM-exception + license_family: Apache + size: 91663 + timestamp: 1756166910935 +- conda: https://conda.anaconda.org/conda-forge/linux-64/clang-17-17.0.6-default_hb5137d0_8.conda + sha256: 4cd6ef921ab52ab27a189c9e2fead99473f74769c6fc0a837509618bb913e10d + md5: 217c78d61e0a33950f7faa9059187531 + depends: + - __glibc >=2.17,<3.0.a0 + - libclang-cpp17 17.0.6 default_hb5137d0_8 + - libgcc >=13 + - libllvm17 >=17.0.6,<17.1.0a0 + - libstdcxx >=13 + constrains: + - llvm-tools 17.0.6 + - clangxx 17.0.6 + - clang-tools 17.0.6 + - clangdev 17.0.6 + license: Apache-2.0 WITH LLVM-exception + license_family: Apache + size: 730740 + timestamp: 1738087809456 +- conda: https://conda.anaconda.org/conda-forge/linux-64/clang-17.0.6-default_h9e3a008_8.conda + sha256: bd83bbfcece3d1437657580353ca702eaade6187608716987f9a452be87260da + md5: 4e6b9a239741567f08d33cca170b10e7 + depends: + - binutils_impl_linux-64 + - clang-17 17.0.6 default_hb5137d0_8 + - libgcc-devel_linux-64 + - sysroot_linux-64 + license: Apache-2.0 WITH LLVM-exception + license_family: Apache + size: 24279 + timestamp: 1738087876559 +- conda: https://conda.anaconda.org/conda-forge/linux-64/clang-18-18.1.8-default_h99862b1_18.conda + sha256: 1d9e3e5b32e25aa4bfb313d7930056913679f68f0661a605eb943aba6551ba0d + md5: 271a91b6c408844f35eb7da6b9357f03 + depends: + - __glibc >=2.17,<3.0.a0 + - libclang-cpp18.1 18.1.8 default_h99862b1_18 + - libgcc >=14 + - libllvm18 >=18.1.8,<18.2.0a0 + - libstdcxx >=14 + license: Apache-2.0 WITH LLVM-exception + license_family: Apache + size: 839068 + timestamp: 1773511554214 +- conda: https://conda.anaconda.org/conda-forge/linux-64/clang-18.1.8-default_h36abe19_18.conda + sha256: b5c165b748f2995224dec1856ed48d2d734d87fa2f17975ff2c9b704c87b21f6 + md5: 6bc2f64377f143f2b671cb970d1c82e4 + depends: + - binutils_impl_linux-64 + - clang-18 18.1.8 default_h99862b1_18 + - libgcc-devel_linux-64 + - sysroot_linux-64 + license: Apache-2.0 WITH LLVM-exception + license_family: Apache + size: 93030 + timestamp: 1773511621671 +- conda: https://conda.anaconda.org/conda-forge/linux-64/clang-19-19.1.7-default_h99862b1_9.conda + sha256: bb28dc501895f703d955de1531f1460c8954577d8bae1dc2056bf7360c98e12d + md5: 156fc73acbe40d69c8a33305714f0fce + depends: + - __glibc >=2.17,<3.0.a0 + - libclang-cpp19.1 19.1.7 default_h99862b1_9 + - libgcc >=14 + - libllvm19 >=19.1.7,<19.2.0a0 + - libstdcxx >=14 + license: Apache-2.0 WITH LLVM-exception + license_family: Apache + size: 774241 + timestamp: 1776984158022 +- conda: https://conda.anaconda.org/conda-forge/linux-64/clang-19.1.7-default_h36abe19_9.conda + sha256: 402636babfbaae4086caf9023aff4501f7d6fe5c9c7e8ff0cfc1358a79a4424d + md5: 973d04fa8e9bc9b7fe42ed818a2dcc9a + depends: + - binutils_impl_linux-64 + - clang-19 19.1.7 default_h99862b1_9 + - clang_impl_linux-64 19.1.7 default_hbd963a2_9 + - libgcc-devel_linux-64 + - sysroot_linux-64 + license: Apache-2.0 WITH LLVM-exception + license_family: Apache + size: 24829 + timestamp: 1776984215705 +- conda: https://conda.anaconda.org/conda-forge/linux-64/clang-20-20.1.8-default_h99862b1_15.conda + sha256: 9fbd6ba6833ee790a4bc5b3cb2332ad20b4643f54064ec11c243b897afd1ca25 + md5: 758b41951d3afed35ef832f3db015dec + depends: + - __glibc >=2.17,<3.0.a0 + - libclang-cpp20.1 20.1.8 default_h99862b1_15 + - libgcc >=14 + - libllvm20 >=20.1.8,<20.2.0a0 + - libstdcxx >=14 + license: Apache-2.0 WITH LLVM-exception + license_family: Apache + size: 855409 + timestamp: 1776983101672 +- conda: https://conda.anaconda.org/conda-forge/linux-64/clang-20.1.8-default_cfg_hcbb2b3e_15.conda + sha256: 0dfb13a2c368057bcc85673ddc04d7c177f40cf1065ac01235bf542839168f29 + md5: 5525067eee640d95936af008676e36b3 + depends: + - binutils_impl_linux-64 + - clang-20 20.1.8 default_h99862b1_15 + - clang_impl_linux-64 20.1.8 default_cfg_h027053c_15 + - libgcc-devel_linux-64 + - sysroot_linux-64 + license: Apache-2.0 WITH LLVM-exception + license_family: Apache + size: 70894 + timestamp: 1776983171105 +- conda: https://conda.anaconda.org/conda-forge/linux-64/clang-21-21.1.8-default_h99862b1_4.conda + sha256: 406ae4d989cc3bec99c4c3125476c66b1e39da0c4bbc49f7a0ddecf6a5814af9 + md5: 6cb5791382ee325b61377cc2f2f26ae9 + depends: + - __glibc >=2.17,<3.0.a0 + - compiler-rt21 21.1.8.* + - libclang-cpp21.1 21.1.8 default_h99862b1_4 + - libgcc >=14 + - libllvm21 >=21.1.8,<21.2.0a0 + - libstdcxx >=14 + license: Apache-2.0 WITH LLVM-exception + license_family: Apache + size: 829487 + timestamp: 1777010933851 +- conda: https://conda.anaconda.org/conda-forge/linux-64/clang-21.1.8-default_cfg_hcbb2b3e_4.conda + sha256: 9c62039a5717e033dfc0ce145de44e2bc9d5123d9e02345a5e9b9015833d35ae + md5: 3ed56c087ec2b8ee528991df28519e9c + depends: + - binutils + - clang-21 21.1.8 default_h99862b1_4 + - clang_impl_linux-64 21.1.8 default_h0a60c25_4 + - libgcc-devel_linux-64 + - llvm-openmp >=21.1.8 + - sysroot_linux-64 + license: Apache-2.0 WITH LLVM-exception + license_family: Apache + size: 28693 + timestamp: 1777011007539 +- conda: https://conda.anaconda.org/conda-forge/linux-64/clang-22-22.1.5-default_h99862b1_1.conda + sha256: 6fea7d67429866945f56bcaa9a7e640430deb2484645519a7ff027cce703de0c + md5: 46299914d03a50027499ae1d5579d9ef + depends: + - __glibc >=2.17,<3.0.a0 + - compiler-rt22 22.1.5.* + - libclang-cpp22.1 22.1.5 default_h99862b1_1 + - libgcc >=14 + - libllvm22 >=22.1.5,<22.2.0a0 + - libstdcxx >=14 + license: Apache-2.0 WITH LLVM-exception + license_family: Apache + size: 835079 + timestamp: 1778479769947 +- conda: https://conda.anaconda.org/conda-forge/linux-64/clang-22.1.5-default_cfg_hcbb2b3e_1.conda + sha256: a15294e0faddb260e754b31647d22783e38c2d6b1af7eb0837f1161fa20f5561 + md5: 1ea030cbc2b4930ec970cdde456be1cb + depends: + - binutils + - clang-22 22.1.5 default_h99862b1_1 + - clang_impl_linux-64 22.1.5 default_h0a60c25_1 + - libgcc-devel_linux-64 + - llvm-openmp >=22.1.5 + - sysroot_linux-64 + license: Apache-2.0 WITH LLVM-exception + license_family: Apache + size: 28579 + timestamp: 1778479827102 +- conda: https://conda.anaconda.org/conda-forge/linux-64/clang-format-15-15.0.7-default_h127d8a8_5.conda + sha256: 2f37ba741b7e62267032b2383b6269d9e5894321b8e7fc1c7106dd02330dc4e8 + md5: 9a2894a0a345ac4be349ad3636162cc6 + depends: + - libclang-cpp15 >=15.0.7,<15.1.0a0 + - libgcc-ng >=12 + - libllvm15 >=15.0.7,<15.1.0a0 + - libstdcxx-ng >=12 + license: Apache-2.0 WITH LLVM-exception + license_family: Apache + size: 173218 + timestamp: 1711064051959 +- conda: https://conda.anaconda.org/conda-forge/linux-64/clang-format-15.0.7-default_h127d8a8_5.conda + sha256: 01928450405ef4799aadb5819dea7e0a681a036075093e0026dd905bc8343a05 + md5: 330904d33518c97c0cf5320ef4ab095d + depends: + - clang-format-15 15.0.7 default_h127d8a8_5 + - libclang-cpp15 >=15.0.7,<15.1.0a0 + - libgcc-ng >=12 + - libllvm15 >=15.0.7,<15.1.0a0 + - libstdcxx-ng >=12 + license: Apache-2.0 WITH LLVM-exception + license_family: Apache + size: 133475 + timestamp: 1711064118624 +- conda: https://conda.anaconda.org/conda-forge/linux-64/clang-format-16-16.0.6-default_hddf928d_15.conda + sha256: c298b3982508413eea55027ddbfb97ef81e83f79a90904a2f4e8f158c9000446 + md5: 410d6d9619792bb965e00753e7e51bd5 + depends: + - __glibc >=2.17,<3.0.a0 + - libclang-cpp16 >=16.0.6,<16.1.0a0 + - libgcc >=14 + - libllvm16 >=16.0.6,<16.1.0a0 + - libstdcxx >=14 + license: Apache-2.0 WITH LLVM-exception + license_family: Apache + size: 132097 + timestamp: 1756167055330 +- conda: https://conda.anaconda.org/conda-forge/linux-64/clang-format-16.0.6-default_hddf928d_15.conda + sha256: 18572fc7752aad18c1f63afe22b33b3caa19c12ec04618716ec86faae68d16c3 + md5: 343da6ed76363ed69872e9fba4258f32 + depends: + - __glibc >=2.17,<3.0.a0 + - clang-format-16 16.0.6 default_hddf928d_15 + - libclang-cpp16 >=16.0.6,<16.1.0a0 + - libgcc >=14 + - libllvm16 >=16.0.6,<16.1.0a0 + - libstdcxx >=14 + license: Apache-2.0 WITH LLVM-exception + license_family: Apache + size: 91745 + timestamp: 1756167099993 +- conda: https://conda.anaconda.org/conda-forge/linux-64/clang-format-17-17.0.6-default_hb5137d0_8.conda + sha256: e232f4845479138e955bc04b3d98ada9c51c2316e81bb22f2434dd9ce1d57c4f + md5: 53c16882acfd75022960355c4055b3b1 + depends: + - __glibc >=2.17,<3.0.a0 + - libclang-cpp17 >=17.0.6,<17.1.0a0 + - libgcc >=13 + - libllvm17 >=17.0.6,<17.1.0a0 + - libstdcxx >=13 + license: Apache-2.0 WITH LLVM-exception + license_family: Apache + size: 62845 + timestamp: 1738088065479 +- conda: https://conda.anaconda.org/conda-forge/linux-64/clang-format-17.0.6-default_hb5137d0_8.conda + sha256: 726f6bc60d770dde4ff4b4933552188189c53bc825385ccf561d1610eeb02c83 + md5: cc331fabb20769acfd8e70e228aeeeca + depends: + - __glibc >=2.17,<3.0.a0 + - clang-format-17 17.0.6 default_hb5137d0_8 + - libclang-cpp17 >=17.0.6,<17.1.0a0 + - libgcc >=13 + - libllvm17 >=17.0.6,<17.1.0a0 + - libstdcxx >=13 + license: Apache-2.0 WITH LLVM-exception + license_family: Apache + size: 24277 + timestamp: 1738088123146 +- conda: https://conda.anaconda.org/conda-forge/linux-64/clang-format-18-18.1.8-default_h99862b1_18.conda + sha256: a13ccfde9a0ae3967a5e1077672f6b8604fe38ff4ba237fd4abe1ef937c0dbc7 + md5: 3189ede361a5de2b37014f2f4acf7542 + depends: + - __glibc >=2.17,<3.0.a0 + - libclang-cpp18.1 >=18.1.8,<18.2.0a0 + - libgcc >=14 + - libllvm18 >=18.1.8,<18.2.0a0 + - libstdcxx >=14 + license: Apache-2.0 WITH LLVM-exception + license_family: Apache + size: 136295 + timestamp: 1773511791140 +- conda: https://conda.anaconda.org/conda-forge/linux-64/clang-format-18.1.8-default_h99862b1_18.conda + sha256: dd70abb0dadd2013d53b43ccc8a36eb2a650412cb1321dd22cfa028d94b5afaf + md5: 4b932c0b7a4f8edc598485563787b48f + depends: + - __glibc >=2.17,<3.0.a0 + - clang-format-18 18.1.8 default_h99862b1_18 + - libclang-cpp18.1 >=18.1.8,<18.2.0a0 + - libgcc >=14 + - libllvm18 >=18.1.8,<18.2.0a0 + - libstdcxx >=14 + license: Apache-2.0 WITH LLVM-exception + license_family: Apache + size: 93411 + timestamp: 1773511852971 +- conda: https://conda.anaconda.org/conda-forge/linux-64/clang-format-19-19.1.7-default_h99862b1_9.conda + sha256: e0f74250c9ed791245a1a4830cdcbc3b3ad8ff6195ed2df229358177bbc6c07f + md5: 946e8f6806e8bd9805c939f60f6d0450 + depends: + - __glibc >=2.17,<3.0.a0 + - libclang-cpp19.1 >=19.1.7,<19.2.0a0 + - libgcc >=14 + - libllvm19 >=19.1.7,<19.2.0a0 + - libstdcxx >=14 + license: Apache-2.0 WITH LLVM-exception + license_family: Apache + size: 68577 + timestamp: 1776984174018 +- conda: https://conda.anaconda.org/conda-forge/linux-64/clang-format-19.1.7-default_h99862b1_9.conda + sha256: ffa6c15b2492cc867e3865275eaef48a6fee305488854ba75a052aacdaf2c67e + md5: 7dd7c7508a0cf2475816241e44ddddd7 + depends: + - __glibc >=2.17,<3.0.a0 + - clang-format-19 19.1.7 default_h99862b1_9 + - libclang-cpp19.1 >=19.1.7,<19.2.0a0 + - libgcc >=14 + - libllvm19 >=19.1.7,<19.2.0a0 + - libstdcxx >=14 + license: Apache-2.0 WITH LLVM-exception + license_family: Apache + size: 25156 + timestamp: 1776984198153 +- conda: https://conda.anaconda.org/conda-forge/linux-64/clang-format-20-20.1.8-default_h99862b1_15.conda + sha256: 9d6f00f8aba07b78f33174ecd994785831c2b231577a9b3b5e77f7700ecff372 + md5: e564ab8a4954fedeb8554d073bfad148 + depends: + - __glibc >=2.17,<3.0.a0 + - libclang-cpp20.1 >=20.1.8,<20.2.0a0 + - libgcc >=14 + - libllvm20 >=20.1.8,<20.2.0a0 + - libstdcxx >=14 + license: Apache-2.0 WITH LLVM-exception + license_family: Apache + size: 114482 + timestamp: 1776983118459 +- conda: https://conda.anaconda.org/conda-forge/linux-64/clang-format-20.1.8-default_h99862b1_15.conda + sha256: bb12492286d285c6fb36796dd9b7f3570ad200bf58e11b52bd41715fccae7363 + md5: a5292312a24f81011ad79535b2422d82 + depends: + - __glibc >=2.17,<3.0.a0 + - clang-format-20 20.1.8 default_h99862b1_15 + - libclang-cpp20.1 >=20.1.8,<20.2.0a0 + - libgcc >=14 + - libllvm20 >=20.1.8,<20.2.0a0 + - libstdcxx >=14 + license: Apache-2.0 WITH LLVM-exception + license_family: Apache + size: 71203 + timestamp: 1776983143728 +- conda: https://conda.anaconda.org/conda-forge/linux-64/clang-format-21-21.1.8-default_h99862b1_4.conda + sha256: 92087869cccace0433bcd852f9476ee56b1540e4e2a234a6befdb3d3dd595c30 + md5: a088cd39b7d8d0cdb7ace83ad146381e + depends: + - __glibc >=2.17,<3.0.a0 + - libclang-cpp21.1 >=21.1.8,<21.2.0a0 + - libgcc >=14 + - libllvm21 >=21.1.8,<21.2.0a0 + - libstdcxx >=14 + license: Apache-2.0 WITH LLVM-exception + license_family: Apache + size: 71485 + timestamp: 1777011252467 +- conda: https://conda.anaconda.org/conda-forge/linux-64/clang-format-21.1.8-default_h99862b1_4.conda + sha256: f80d405ad1024af8bd9d713f2d1667de7f0af9e903bc275fd0d4d2a071ca4236 + md5: 64fcea8e570d27d533eca56b81ddc234 + depends: + - __glibc >=2.17,<3.0.a0 + - clang-format-21 21.1.8 default_h99862b1_4 + - libclang-cpp21.1 >=21.1.8,<21.2.0a0 + - libgcc >=14 + - libllvm21 >=21.1.8,<21.2.0a0 + - libstdcxx >=14 + license: Apache-2.0 WITH LLVM-exception + license_family: Apache + size: 28677 + timestamp: 1777011299688 +- conda: https://conda.anaconda.org/conda-forge/linux-64/clang-format-22-22.1.5-default_h99862b1_1.conda + sha256: 04b2e1cec8eab2bad0913f9e74b697f97dc39988ffea03c7d9dba39a0b2a7a50 + md5: 52808cb4cc57cafb2a1ad688032a1363 + depends: + - __glibc >=2.17,<3.0.a0 + - libclang-cpp22.1 >=22.1.5,<22.2.0a0 + - libgcc >=14 + - libllvm22 >=22.1.5,<22.2.0a0 + - libstdcxx >=14 + license: Apache-2.0 WITH LLVM-exception + license_family: Apache + size: 70607 + timestamp: 1778480042963 +- conda: https://conda.anaconda.org/conda-forge/linux-64/clang-format-22.1.5-default_h99862b1_1.conda + sha256: 69a3f0c03840f1c678ed689f3d46d2cb67c75e8138ca88044905a54d479a81e4 + md5: 36ea0403a8fda28b0823dbef02a20f2c + depends: + - __glibc >=2.17,<3.0.a0 + - clang-format-22 22.1.5 default_h99862b1_1 + - libclang-cpp22.1 >=22.1.5,<22.2.0a0 + - libgcc >=14 + - libllvm22 >=22.1.5,<22.2.0a0 + - libstdcxx >=14 + license: Apache-2.0 WITH LLVM-exception + license_family: Apache + size: 28567 + timestamp: 1778480065823 +- conda: https://conda.anaconda.org/conda-forge/linux-64/clang-scan-deps-22.1.5-default_h99862b1_1.conda + sha256: 5ad6a15e3114bcd104982850855824dacae4ca4e131d91a22d2c4f1fcafd04a5 + md5: 16a53a797297f62e3a86eedd6d643088 + depends: + - __glibc >=2.17,<3.0.a0 + - libclang-cpp22.1 >=22.1.5,<22.2.0a0 + - libclang13 >=22.1.5 + - libgcc >=14 + - libllvm22 >=22.1.5,<22.2.0a0 + - libstdcxx >=14 + license: Apache-2.0 WITH LLVM-exception + license_family: Apache + size: 104148 + timestamp: 1778479982117 +- conda: https://conda.anaconda.org/conda-forge/linux-64/clang-tools-15.0.7-default_h127d8a8_5.conda + sha256: b39088fa0072f6a8f4f93f5be0aa46d5a6a56e94443ff7a11e62139a9acfe759 + md5: 3eec9c7818b7c7093f54e39124fe3f03 + depends: + - clang-format 15.0.7 default_h127d8a8_5 + - libclang-cpp15 >=15.0.7,<15.1.0a0 + - libclang13 >=15.0.7 + - libgcc-ng >=12 + - libllvm15 >=15.0.7,<15.1.0a0 + - libstdcxx-ng >=12 + constrains: + - clangdev 15.0.7 + - clang 15.0.7.* + - llvm 15.0.7.* + - llvm-tools 15.0.7.* + - llvmdev 15.0.7.* + license: Apache-2.0 WITH LLVM-exception + license_family: Apache + size: 25258879 + timestamp: 1711064168896 +- conda: https://conda.anaconda.org/conda-forge/linux-64/clang-tools-16.0.6-default_hddf928d_15.conda + sha256: 699fb4d288d693c55f7eaed5e3ae8363383fb1f95a99b6dfbb6f759efc3097a4 + md5: 5195e7353fc2e1a8038d6550c7738b57 + depends: + - __glibc >=2.17,<3.0.a0 + - clang-format 16.0.6 default_hddf928d_15 + - libclang-cpp16 >=16.0.6,<16.1.0a0 + - libclang13 >=16.0.6 + - libgcc >=14 + - libllvm16 >=16.0.6,<16.1.0a0 + - libstdcxx >=14 + - libxml2 >=2.13.8,<2.14.0a0 + constrains: + - clangdev 16.0.6 + - clang 16.0.6.* + - llvm 16.0.6.* + - llvm-tools 16.0.6.* + - llvmdev 16.0.6.* + license: Apache-2.0 WITH LLVM-exception + license_family: Apache + size: 27294116 + timestamp: 1756167142932 +- conda: https://conda.anaconda.org/conda-forge/linux-64/clang-tools-17.0.6-default_hb5137d0_8.conda + sha256: ca04bfa0a5cd2c7e8be2133010c85169d7b6b785426ccef0249dc97e0df2ffbb + md5: 084a0fa4f5ecfac1ebaf85cd5825210a + depends: + - __glibc >=2.17,<3.0.a0 + - clang-format 17.0.6 default_hb5137d0_8 + - libclang-cpp17 >=17.0.6,<17.1.0a0 + - libclang13 >=17.0.6 + - libgcc >=13 + - libllvm17 >=17.0.6,<17.1.0a0 + - libstdcxx >=13 + - libxml2 >=2.13.5,<2.14.0a0 + constrains: + - clangdev 17.0.6 + license: Apache-2.0 WITH LLVM-exception + license_family: Apache + size: 27494763 + timestamp: 1738088177596 +- conda: https://conda.anaconda.org/conda-forge/linux-64/clang-tools-18.1.8-default_h99862b1_18.conda + sha256: 04a92fa7d78be68efdd875ebaa2b0db8f3850bb208efc7aa5936e6df12466157 + md5: daf33a27f4fded0fe83cf1b4f2b24dec + depends: + - __glibc >=2.17,<3.0.a0 + - clang-format 18.1.8 default_h99862b1_18 + - libclang-cpp18.1 >=18.1.8,<18.2.0a0 + - libclang13 >=18.1.8 + - libgcc >=14 + - libllvm18 >=18.1.8,<18.2.0a0 + - libstdcxx >=14 + - libxml2 + - libxml2-16 >=2.14.6 + constrains: + - clangdev 18.1.8 + license: Apache-2.0 WITH LLVM-exception + license_family: Apache + size: 29326575 + timestamp: 1773511898211 +- conda: https://conda.anaconda.org/conda-forge/linux-64/clang-tools-19.1.7-default_h57a47db_9.conda + sha256: 3c25541caf08d0ef55a8c18ae13c9a6d3094bacb8213e4d1d391da08b491a159 + md5: 1a06d39937cfed52afbf0a46d9958edf + depends: + - __glibc >=2.17,<3.0.a0 + - clang-format 19.1.7 default_h99862b1_9 + - libclang-cpp19.1 >=19.1.7,<19.2.0a0 + - libclang13 >=19.1.7 + - libgcc >=14 + - libllvm19 >=19.1.7,<19.2.0a0 + - libstdcxx >=14 + - libxml2 + - libxml2-16 >=2.14.6 + constrains: + - clangdev 19.1.7 + license: Apache-2.0 WITH LLVM-exception + license_family: Apache + size: 21577867 + timestamp: 1776984226884 +- conda: https://conda.anaconda.org/conda-forge/linux-64/clang-tools-20.1.8-default_h57a47db_15.conda + sha256: 71adc92f71fa2ce973e523b643de52d9e5b01325eaa065658bdc948c0cbc35be + md5: 0f61bdbe04761bfcdbfea34db8d9db4e + depends: + - __glibc >=2.17,<3.0.a0 + - clang-format 20.1.8 default_h99862b1_15 + - libclang-cpp20.1 >=20.1.8,<20.2.0a0 + - libclang13 >=20.1.8 + - libgcc >=14 + - libllvm20 >=20.1.8,<20.2.0a0 + - libstdcxx >=14 + - libxml2 + - libxml2-16 >=2.14.6 + constrains: + - clangdev 20.1.8 + license: Apache-2.0 WITH LLVM-exception + license_family: Apache + size: 21869813 + timestamp: 1776983182607 +- conda: https://conda.anaconda.org/conda-forge/linux-64/clang-tools-21.1.8-default_h99862b1_4.conda + sha256: 76b882b24e7eba8446bdca2357f45254a77434eceda7f259cdd937d27e73774d + md5: 270ecdb8abba79ea313d9154723b05c8 + depends: + - __glibc >=2.17,<3.0.a0 + - clang-format 21.1.8 default_h99862b1_4 + - libclang-cpp21.1 >=21.1.8,<21.2.0a0 + - libclang13 >=21.1.8 + - libgcc >=14 + - libllvm21 >=21.1.8,<21.2.0a0 + - libstdcxx >=14 + - libxml2 + - libxml2-16 >=2.14.6 + constrains: + - clangdev 21.1.8 + license: Apache-2.0 WITH LLVM-exception + license_family: Apache + size: 22033150 + timestamp: 1777011399748 +- conda: https://conda.anaconda.org/conda-forge/linux-64/clang-tools-22.1.5-default_h99862b1_1.conda + sha256: 473d07d7c0da52ff804efb6bc55338bb9630c17450ce8f052db6edc580dc9442 + md5: e208576ec33016a747ec097b9524680e + depends: + - __glibc >=2.17,<3.0.a0 + - clang-format 22.1.5 default_h99862b1_1 + - clang-scan-deps 22.1.5 default_h99862b1_1 + - libclang-cpp22.1 >=22.1.5,<22.2.0a0 + - libclang13 >=22.1.5 + - libgcc >=14 + - libllvm22 >=22.1.5,<22.2.0a0 + - libstdcxx >=14 + - libxml2 + - libxml2-16 >=2.14.6 + constrains: + - clangdev 22.1.5 + license: Apache-2.0 WITH LLVM-exception + license_family: Apache + size: 10572040 + timestamp: 1778480154143 +- conda: https://conda.anaconda.org/conda-forge/linux-64/clang_impl_linux-64-19.1.7-default_hbd963a2_9.conda + sha256: aa838a9daf65c7a548dfb7e447c04d0869c29c260440983875a717052e82e24c + md5: 517a48ddcdddf5779ab67893ece61d88 + depends: + - binutils_impl_linux-64 + - clang-19 19.1.7 default_h99862b1_9 + - compiler-rt 19.1.7.* + - compiler-rt_linux-64 + - libgcc-devel_linux-64 + - llvm-openmp >=19.1.7 + - sysroot_linux-64 + license: Apache-2.0 WITH LLVM-exception + license_family: Apache + size: 24791 + timestamp: 1776984202775 +- conda: https://conda.anaconda.org/conda-forge/linux-64/clang_impl_linux-64-20.1.8-default_cfg_h027053c_15.conda + sha256: fdfe23091a84732d12c3f688ab54bbfddabecf3eb00a4bcb3fdbe536635e7c74 + md5: d723c25ba1a8b4619277f0ec3d7fb3cc + depends: + - binutils_impl_linux-64 + - clang-20 20.1.8 default_h99862b1_15 + - compiler-rt 20.1.8.* + - compiler-rt_linux-64 + - libgcc-devel_linux-64 + - llvm-openmp >=20.1.8 + - sysroot_linux-64 + license: Apache-2.0 WITH LLVM-exception + license_family: Apache + size: 71267 + timestamp: 1776983152865 +- conda: https://conda.anaconda.org/conda-forge/linux-64/clang_impl_linux-64-21.1.8-default_h0a60c25_4.conda + sha256: 9d2c824c95e610fca649a7c20568851716c8bc5b1e53726d3bca94ce0efb6dfe + md5: 3f534da6723cb8431f12b925247831da + depends: + - binutils_impl_linux-64 + - clang-21 21.1.8 default_h99862b1_4 + - compiler-rt 21.1.8.* + - compiler-rt_linux-64 21.1.8.* + - libgcc-devel_linux-64 + - sysroot_linux-64 + license: Apache-2.0 WITH LLVM-exception + license_family: Apache + size: 28218 + timestamp: 1777010989729 +- conda: https://conda.anaconda.org/conda-forge/linux-64/clang_impl_linux-64-22.1.5-default_h0a60c25_1.conda + sha256: 182c774b0899a540a0704258e26d3ec6a6ed2764ccd397e7f35e2c75ea7758b3 + md5: a0c54ce7d1363bbec1a1895db4da0130 + depends: + - binutils_impl_linux-64 + - clang-22 22.1.5 default_h99862b1_1 + - compiler-rt 22.1.5.* + - compiler-rt_linux-64 + - libgcc-devel_linux-64 + - sysroot_linux-64 + license: Apache-2.0 WITH LLVM-exception + license_family: Apache + size: 28084 + timestamp: 1778479813267 +- conda: https://conda.anaconda.org/conda-forge/linux-64/clangdev-15.0.7-default_h127d8a8_5.conda + sha256: aece670235dd8c675cf6fafa902e445050726eb02cac5071f16300ac4e368588 + md5: abc051db4fde46d3065e9d9818712119 + depends: + - clang 15.0.7 h39da44c_5 + - clang-tools 15.0.7 default_h127d8a8_5 + - clangxx 15.0.7 default_h127d8a8_5 + - libclang 15.0.7 default_h127d8a8_5 + - libclang-cpp 15.0.7 default_h127d8a8_5 + - libgcc-ng >=12 + - libstdcxx-ng >=12 + - llvmdev 15.0.7 + license: Apache-2.0 WITH LLVM-exception + license_family: Apache + size: 43179145 + timestamp: 1711064265464 +- conda: https://conda.anaconda.org/conda-forge/linux-64/clangdev-16.0.6-default_hddf928d_15.conda + sha256: 7f6d60a787f6be24bcb1693106db3056393e8a45937ed9019b491bfa8185b4d7 + md5: d6da571a357ebc350fcccb7f77f9cd7e + depends: + - __glibc >=2.17,<3.0.a0 + - clang 16.0.6 default_hfa515fb_15 + - clang-tools 16.0.6 default_hddf928d_15 + - clangxx 16.0.6 default_h804c401_15 + - libclang 16.0.6 default_hddf928d_15 + - libclang-cpp 16.0.6 default_hddf928d_15 + - libgcc >=14 + - libstdcxx >=14 + - llvmdev 16.0.6 + license: Apache-2.0 WITH LLVM-exception + license_family: Apache + size: 44653748 + timestamp: 1756167239845 +- conda: https://conda.anaconda.org/conda-forge/linux-64/clangdev-17.0.6-default_hb5137d0_8.conda + sha256: 1531246c3e7c53477d4fd995ad0fa22854320bcea48e73177567c1873e5ae7fb + md5: 1879555d1852e5e13e0c2dbecbfb0ab5 + depends: + - __glibc >=2.17,<3.0.a0 + - clang 17.0.6 default_h9e3a008_8 + - clang-tools 17.0.6 default_hb5137d0_8 + - clangxx 17.0.6 default_ha78316a_8 + - libclang 17.0.6 default_hb5137d0_8 + - libclang-cpp 17.0.6 default_hb5137d0_8 + - libgcc >=13 + - libstdcxx >=13 + - llvmdev 17.0.6 + license: Apache-2.0 WITH LLVM-exception + license_family: Apache + size: 47079787 + timestamp: 1738088301734 +- conda: https://conda.anaconda.org/conda-forge/linux-64/clangdev-18.1.8-default_h99862b1_18.conda + sha256: 9494d28e39f2b88127ccec92056541bb8c8945a70c9ec726a52cfb8a874c31b7 + md5: c486ba3be5722d3150f74d16f6c6a6e2 + depends: + - __glibc >=2.17,<3.0.a0 + - clang 18.1.8 default_h36abe19_18 + - clang-tools 18.1.8 default_h99862b1_18 + - clangxx 18.1.8 default_h363a0c9_18 + - libclang 18.1.8 default_h99862b1_18 + - libclang-cpp 18.1.8 default_h99862b1_18 + - libgcc >=14 + - libstdcxx >=14 + - llvmdev 18.1.8.* + license: Apache-2.0 WITH LLVM-exception + license_family: Apache + size: 49209827 + timestamp: 1773512001782 +- conda: https://conda.anaconda.org/conda-forge/linux-64/clangdev-19.1.7-default_h99862b1_9.conda + sha256: d88cb13187b51fc745689e2b2d52295e0f6bef3ff7136b39c6f330c4d7ce064c + md5: 87b30d3fd3add38626c2ac57ff1d1692 + depends: + - __glibc >=2.17,<3.0.a0 + - clang 19.1.7 default_h36abe19_9 + - clang-tools 19.1.7 default_h57a47db_9 + - clangxx 19.1.7 default_h36abe19_9 + - libclang 19.1.7 default_h99862b1_9 + - libclang-cpp 19.1.7 default_h99862b1_9 + - libgcc >=14 + - libstdcxx >=14 + - llvmdev 19.1.7.* + license: Apache-2.0 WITH LLVM-exception + license_family: Apache + size: 51630933 + timestamp: 1776984284508 +- conda: https://conda.anaconda.org/conda-forge/linux-64/clangdev-20.1.8-default_h99862b1_15.conda + sha256: d5635e104d421f9fe2d908b49794d070b4ad761df4f4c22a219576eb30ac94c7 + md5: 314b35e596b286540fdfa0afee515c78 + depends: + - __glibc >=2.17,<3.0.a0 + - clang 20.1.8 default_*_15 + - clang-tools 20.1.8 default_h57a47db_15 + - clangxx 20.1.8 default_*_15 + - libclang 20.1.8 default_h99862b1_15 + - libclang-cpp 20.1.8 default_h99862b1_15 + - libgcc >=14 + - libstdcxx >=14 + - llvmdev 20.1.8.* + license: Apache-2.0 WITH LLVM-exception + license_family: Apache + size: 52703337 + timestamp: 1776983255983 +- conda: https://conda.anaconda.org/conda-forge/linux-64/clangdev-21.1.8-default_h99862b1_4.conda + sha256: 86f2ab8e3b952a864176491962d93e4714d1aa910d92905dff1ca71e8df7d750 + md5: 768bfb9e893d234a961adfaa086f6d47 + depends: + - __glibc >=2.17,<3.0.a0 + - clang 21.1.8 *_4 + - clang-tools 21.1.8 default_h99862b1_4 + - clangxx 21.1.8 *_4 + - libclang 21.1.8 default_h99862b1_4 + - libclang-cpp 21.1.8 default_h99862b1_4 + - libgcc >=14 + - libstdcxx >=14 + - llvmdev 21.1.8.* + license: Apache-2.0 WITH LLVM-exception + license_family: Apache + size: 52722903 + timestamp: 1777011475408 +- conda: https://conda.anaconda.org/conda-forge/linux-64/clangdev-22.1.5-default_h99862b1_1.conda + sha256: 337a67da16da5234e8d139c5ebdbff5d827a8e830077f7fa39f0c59317f4c23a + md5: 3b1f41f99c4b16f7c5db5bb7186cacd4 + depends: + - __glibc >=2.17,<3.0.a0 + - clang 22.1.5 *_1 + - clang-tools 22.1.5 default_h99862b1_1 + - clangxx 22.1.5 *_1 + - libclang 22.1.5 default_h99862b1_1 + - libclang-cpp 22.1.5 default_h99862b1_1 + - libgcc >=14 + - libstdcxx >=14 + - llvmdev 22.1.5.* + license: Apache-2.0 WITH LLVM-exception + license_family: Apache + size: 54233961 + timestamp: 1778480199618 +- conda: https://conda.anaconda.org/conda-forge/linux-64/clangxx-15.0.7-default_h127d8a8_5.conda + sha256: cb085791fbbaa41e69d6c6506353e1e9717a637def932d4c1a0984eab57e72ca + md5: a017e840c8c5143deed5a55eebb2410a + depends: + - clang 15.0.7 h39da44c_5 + license: Apache-2.0 WITH LLVM-exception + license_family: Apache + size: 133178 + timestamp: 1711063895036 +- conda: https://conda.anaconda.org/conda-forge/linux-64/clangxx-16.0.6-default_h804c401_15.conda + sha256: 52326372ed1f05bb9f313b8e7bd5ffdba727aaad801c034d5963a961640f70cd + md5: 505f8a38c746dfca727ad1d49443428c + depends: + - clang 16.0.6 default_hfa515fb_15 + - libstdcxx-devel_linux-64 + license: Apache-2.0 WITH LLVM-exception + license_family: Apache + size: 91806 + timestamp: 1756166923881 +- conda: https://conda.anaconda.org/conda-forge/linux-64/clangxx-17.0.6-default_ha78316a_8.conda + sha256: 28aa370085c1c2e1e95fa4b080a67a876efc970640e3d98d10fa9140b3e4e2f1 + md5: 2a3d72769d537fd8558f95493491ab52 + depends: + - clang 17.0.6 default_h9e3a008_8 + - libstdcxx-devel_linux-64 + license: Apache-2.0 WITH LLVM-exception + license_family: Apache + size: 24289 + timestamp: 1738087890146 +- conda: https://conda.anaconda.org/conda-forge/linux-64/clangxx-18.1.8-default_h363a0c9_18.conda + sha256: 39f29a562c4081581ade46d42fdd50ee948d32883be68580d54b2297db913d8b + md5: 1f79bff0f6301461a0ace241de8d129a + depends: + - clang 18.1.8 default_h36abe19_18 + - libstdcxx-devel_linux-64 + license: Apache-2.0 WITH LLVM-exception + license_family: Apache + size: 93277 + timestamp: 1773511639418 +- conda: https://conda.anaconda.org/conda-forge/linux-64/clangxx-19.1.7-default_h36abe19_9.conda + sha256: 7b242ab7f98da41390eb36cd42780f4e7393e7bc3ce3b76d50f272a963b2281c + md5: d47453016448b17ca1e70d0e1737468a + depends: + - clang 19.1.7 default_h36abe19_9 + - clangxx_impl_linux-64 19.1.7.* default_* + - libstdcxx-devel_linux-64 + license: Apache-2.0 WITH LLVM-exception + license_family: Apache + size: 24758 + timestamp: 1776984276624 +- conda: https://conda.anaconda.org/conda-forge/linux-64/clangxx-20.1.8-default_cfg_hcbb2b3e_15.conda + sha256: da6fd412d19a7d89bafd88b38a9894e4a8cd99f5e7822bb70656b7d3f7da9295 + md5: 6bb40000c7d2f7397887102835090641 + depends: + - clang 20.1.8 default_cfg_hcbb2b3e_15 + - clangxx_impl_linux-64 20.1.8.* default_* + - libstdcxx-devel_linux-64 + license: Apache-2.0 WITH LLVM-exception + license_family: Apache + size: 70854 + timestamp: 1776983247746 +- conda: https://conda.anaconda.org/conda-forge/linux-64/clangxx-21.1.8-default_cfg_h9f82b57_4.conda + sha256: 544fbc7fb937d745d1b2cc0ab2e0239fb2d09d95be7cc7e2d0aa7db87e90a08b + md5: 6aea69b1277cc9a2ac3f8515d9f9a922 + depends: + - clang 21.1.8 default_cfg_hcbb2b3e_4 + - clangxx_impl_linux-64 21.1.8 default_h0a60c25_4 + - libstdcxx-devel_linux-64 + license: Apache-2.0 WITH LLVM-exception + license_family: Apache + size: 28397 + timestamp: 1777011055256 +- conda: https://conda.anaconda.org/conda-forge/linux-64/clangxx-22.1.5-default_cfg_h9f82b57_1.conda + sha256: 39ec7649233919babecd13dd00d259d75d367655b59b0e0cbd8e244194f5b448 + md5: 82b2fec92b90f058c7034be760d79e82 + depends: + - clang 22.1.5 default_cfg_hcbb2b3e_1 + - clangxx_impl_linux-64 22.1.5 default_h0a60c25_1 + - libstdcxx-devel_linux-64 + license: Apache-2.0 WITH LLVM-exception + license_family: Apache + size: 28297 + timestamp: 1778480018238 +- conda: https://conda.anaconda.org/conda-forge/linux-64/clangxx_impl_linux-64-19.1.7-default_hbd963a2_9.conda + sha256: d6492ce3d8c5eb21a930e9edd45f9886537a955dbbe5d69836f169e9b503598a + md5: ebed5d0131db9477e91322ed25dc323f + depends: + - clang-19 19.1.7 default_h99862b1_9 + - clang_impl_linux-64 19.1.7 default_hbd963a2_9 + - libstdcxx-devel_linux-64 + license: Apache-2.0 WITH LLVM-exception + license_family: Apache + size: 24701 + timestamp: 1776984272214 +- conda: https://conda.anaconda.org/conda-forge/linux-64/clangxx_impl_linux-64-20.1.8-default_cfg_h027053c_15.conda + sha256: a9f922383a6be32e0bc8d7838ef4072504f3377f5947193a9ca71121c58ca97a + md5: de22c86f3b23a2433ef770ea38570b22 + depends: + - clang-20 20.1.8 default_h99862b1_15 + - clang_impl_linux-64 20.1.8 default_cfg_h027053c_15 + - libstdcxx-devel_linux-64 + license: Apache-2.0 WITH LLVM-exception + license_family: Apache + size: 70993 + timestamp: 1776983236570 +- conda: https://conda.anaconda.org/conda-forge/linux-64/clangxx_impl_linux-64-21.1.8-default_h0a60c25_4.conda + sha256: a9ce2dbe425117cce6b13d6f3928e5936edb874153a728d1e7f96c37afa4b46b + md5: f4207c1be082e6786df3ca36e9b116ab + depends: + - clang-21 21.1.8 default_h99862b1_4 + - clang_impl_linux-64 21.1.8 default_h0a60c25_4 + - libstdcxx-devel_linux-64 + license: Apache-2.0 WITH LLVM-exception + license_family: Apache + size: 28153 + timestamp: 1777011032213 +- conda: https://conda.anaconda.org/conda-forge/linux-64/clangxx_impl_linux-64-22.1.5-default_h0a60c25_1.conda + sha256: 211aa961475d149adb426d737598de7bb768b4f2eaaead34f59ac6f8631245f5 + md5: 43588107fa39245ff716d71d65f1c283 + depends: + - clang-22 22.1.5 default_h99862b1_1 + - clang-scan-deps 22.1.5 default_h99862b1_1 + - clang_impl_linux-64 22.1.5 default_h0a60c25_1 + - libstdcxx-devel_linux-64 + license: Apache-2.0 WITH LLVM-exception + license_family: Apache + size: 28041 + timestamp: 1778480001945 +- conda: https://conda.anaconda.org/conda-forge/linux-64/cmake-4.3.2-hc85cc9f_0.conda + sha256: 2c28bf80ca85fd62ff955850522ea72d5a19c1f3d548354b9ce991ee900252ad + md5: 92093889766d74d1d3d8079cd11d5642 + depends: + - __glibc >=2.17,<3.0.a0 + - bzip2 >=1.0.8,<2.0a0 + - libcurl >=8.19.0,<9.0a0 + - libexpat >=2.7.5,<3.0a0 + - libgcc >=14 + - liblzma >=5.8.3,<6.0a0 + - libstdcxx >=14 + - libuv >=1.51.0,<2.0a0 + - libzlib >=1.3.2,<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: 23076535 + timestamp: 1776799558143 +- conda: https://conda.anaconda.org/conda-forge/linux-64/compiler-rt-19.1.7-hb700be7_1.conda + sha256: 1f3839f485cbdd4c9f5577094380547c3327009ada9522b7de3757724333645e + md5: c88428a4cdec24439445266941b67507 + depends: + - __glibc >=2.17,<3.0.a0 + - clang 19.1.7.* + - compiler-rt_linux-64 19.1.7.* + - libgcc >=14 + - libstdcxx >=14 + license: Apache-2.0 WITH LLVM-exception + license_family: APACHE + size: 112803 + timestamp: 1757411468917 +- conda: https://conda.anaconda.org/conda-forge/linux-64/compiler-rt-20.1.8-hb700be7_1.conda + sha256: 8dd25cb56ec529b43b05f93f1b501848ba1f958501f2da2ab8b5d3f910afcbff + md5: 76dfabc5943bd8ab2a916b276c5f7a59 + depends: + - __glibc >=2.17,<3.0.a0 + - clang 20.1.8.* + - compiler-rt_linux-64 20.1.8.* + - libgcc >=14 + - libstdcxx >=14 + license: Apache-2.0 WITH LLVM-exception + license_family: APACHE + size: 114057 + timestamp: 1757411545630 +- conda: https://conda.anaconda.org/conda-forge/linux-64/compiler-rt-21.1.8-ha770c72_1.conda + sha256: 858d6848e0b078c32e3a809d6d0e2d0ab9fc3069a567f117fd3dc71f9205e6d0 + md5: 3ac91ecdddec705b30d71680db84ac9d + depends: + - compiler-rt21 21.1.8 hb700be7_1 + - libcompiler-rt 21.1.8 hb700be7_1 + constrains: + - clang 21.1.8 + license: Apache-2.0 WITH LLVM-exception + license_family: APACHE + size: 16177 + timestamp: 1769057142509 +- conda: https://conda.anaconda.org/conda-forge/linux-64/compiler-rt-22.1.5-ha770c72_1.conda + sha256: a802d32ca7b238d8c2a8da31c934afd5f81383c863d680895cab9a26f6d5e9d3 + md5: 6658be289d777edb7a31bafab16b49f0 + depends: + - compiler-rt22 22.1.5 hb700be7_1 + - libcompiler-rt 22.1.5 hb700be7_1 + constrains: + - clang 22.1.5 + license: Apache-2.0 WITH LLVM-exception + license_family: APACHE + size: 16519 + timestamp: 1778193503418 +- conda: https://conda.anaconda.org/conda-forge/linux-64/compiler-rt21-21.1.8-hb700be7_1.conda + sha256: ea3adf9924c6d52c9ba0767556e23f436b1619a99247aeda04f7d0907e9726b3 + md5: 7f1e2ba1c7d2ad3d5b57a12149c4af45 + depends: + - __glibc >=2.17,<3.0.a0 + - compiler-rt21_linux-64 21.1.8.* + - libgcc >=14 + - libstdcxx >=14 + license: Apache-2.0 WITH LLVM-exception + license_family: APACHE + size: 114459 + timestamp: 1769057141242 +- conda: https://conda.anaconda.org/conda-forge/linux-64/compiler-rt22-22.1.5-hb700be7_1.conda + sha256: 4ea96f38ef8a83678a3db8298d78b19b55e6e68a25a176fc91c7fc53cc8b9733 + md5: 37d718bedc9f6d5b1c8992b326ef061f + depends: + - __glibc >=2.17,<3.0.a0 + - compiler-rt22_linux-64 22.1.5.* + - libgcc >=14 + - libstdcxx >=14 + license: Apache-2.0 WITH LLVM-exception + license_family: APACHE + size: 114469 + timestamp: 1778193502597 +- conda: https://conda.anaconda.org/conda-forge/linux-64/coreutils-9.5-hd590300_0.conda + sha256: 7cd3b0f55aa55bb27b045c30f32b3f6b874ecc006f3abcb274c71a3bcbacb358 + md5: 126d457e0e7a535278e808a7d8960015 + depends: + - libgcc-ng >=12 + license: GPL-3.0-or-later + license_family: GPL + size: 3014238 + timestamp: 1711655132451 +- conda: https://conda.anaconda.org/conda-forge/linux-64/cxx-compiler-1.11.0-hfcd1e18_0.conda + sha256: 3fcc97ae3e89c150401a50a4de58794ffc67b1ed0e1851468fcc376980201e25 + md5: 5da8c935dca9186673987f79cef0b2a5 + depends: + - c-compiler 1.11.0 h4d9bdce_0 + - gxx + - gxx_linux-64 14.* + license: BSD-3-Clause + license_family: BSD + size: 6635 + timestamp: 1753098722177 +- conda: https://conda.anaconda.org/conda-forge/linux-64/gcc-14.3.0-h6f77f03_19.conda + sha256: 5c86862941a44b2554e23e623ddb8f18c95474cacf536635e38ee431385b7d4a + md5: 444fafd4d1acdfe80c49b559a2569ba1 + depends: + - gcc_impl_linux-64 14.3.0 h235f0fe_19 + track_features: + - gcc_no_conda_specs + license: BSD-3-Clause + license_family: BSD + size: 29453 + timestamp: 1778268811434 +- conda: https://conda.anaconda.org/conda-forge/linux-64/gcc_impl_linux-64-14.3.0-h235f0fe_19.conda + sha256: 1e2500ca976d4831c953d1c6db7b238d2e6806910b930e3eb631b79ba5c3ba41 + md5: 99936dc616b7ce97b0468759b8a7c64e + depends: + - binutils_impl_linux-64 >=2.45 + - libgcc >=14.3.0 + - libgcc-devel_linux-64 14.3.0 hf649bbc_119 + - libgomp >=14.3.0 + - libsanitizer 14.3.0 h8f1669f_19 + - libstdcxx >=14.3.0 + - libstdcxx-devel_linux-64 14.3.0 h9f08a49_119 + - sysroot_linux-64 + license: GPL-3.0-only WITH GCC-exception-3.1 + license_family: GPL + size: 77667192 + timestamp: 1778268558509 +- conda: https://conda.anaconda.org/conda-forge/linux-64/gcc_linux-64-14.3.0-h50e9bb6_24.conda + sha256: 5f73bc0ce1729466f99d072678fb1bc13d5424d03a34cb2e69fbafbfd5e27ab2 + md5: 91b0f19212d79a1a4dca034aac729e4f + depends: + - gcc_impl_linux-64 14.3.0.* + - binutils_linux-64 + - sysroot_linux-64 + license: BSD-3-Clause + license_family: BSD + size: 29073 + timestamp: 1777144725126 +- conda: https://conda.anaconda.org/conda-forge/linux-64/gxx-14.3.0-h76987e4_19.conda + sha256: 32ff46517d91ee041287687d65140f7b0e8d08bb3fca141e5f97cc4a7ad7e255 + md5: 1167f6b6bfaf9ba5a450c5c8f3a21795 + depends: + - gcc 14.3.0 h6f77f03_19 + - gxx_impl_linux-64 14.3.0 h2185e75_19 + license: BSD-3-Clause + license_family: BSD + size: 28877 + timestamp: 1778268830629 +- conda: https://conda.anaconda.org/conda-forge/linux-64/gxx_impl_linux-64-14.3.0-h2185e75_19.conda + sha256: a31694c26d6a525d44f81130ebf7b9abe18771b7eaecb2cf93630c0b8b8fb936 + md5: 8b867d053ed89743eeac52c3a50f112d + depends: + - gcc_impl_linux-64 14.3.0 h235f0fe_19 + - libstdcxx-devel_linux-64 14.3.0 h9f08a49_119 + - sysroot_linux-64 + - tzdata + license: GPL-3.0-only WITH GCC-exception-3.1 + license_family: GPL + size: 15235650 + timestamp: 1778268773535 +- conda: https://conda.anaconda.org/conda-forge/linux-64/gxx_linux-64-14.3.0-h8a413ad_24.conda + sha256: 66e357fad69998624d24ed52d7e1550f8159dc78418fff044377790f29e0fee3 + md5: ea3921760f33250a1c12926fce1660eb + depends: + - gxx_impl_linux-64 14.3.0.* + - gcc_linux-64 ==14.3.0 h50e9bb6_24 + - binutils_linux-64 + - sysroot_linux-64 + license: BSD-3-Clause + license_family: BSD + size: 27606 + timestamp: 1777144725126 +- conda: https://conda.anaconda.org/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://conda.anaconda.org/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://conda.anaconda.org/conda-forge/linux-64/krb5-1.22.2-ha1258a1_0.conda + sha256: 3e307628ca3527448dd1cb14ad7bb9d04d1d28c7d4c5f97ba196ae984571dd25 + md5: fb53fb07ce46a575c5d004bbc96032c2 + depends: + - __glibc >=2.17,<3.0.a0 + - keyutils >=1.6.3,<2.0a0 + - libedit >=3.1.20250104,<3.2.0a0 + - libedit >=3.1.20250104,<4.0a0 + - libgcc >=14 + - libstdcxx >=14 + - openssl >=3.5.5,<4.0a0 + license: MIT + license_family: MIT + size: 1386730 + timestamp: 1769769569681 +- conda: https://conda.anaconda.org/conda-forge/linux-64/ld_impl_linux-64-2.45.1-default_hbd61a6d_102.conda + sha256: 3d584956604909ff5df353767f3a2a2f60e07d070b328d109f30ac40cd62df6c + md5: 18335a698559cdbcd86150a48bf54ba6 + depends: + - __glibc >=2.17,<3.0.a0 + - zstd >=1.5.7,<1.6.0a0 + constrains: + - binutils_impl_linux-64 2.45.1 + license: GPL-3.0-only + license_family: GPL + size: 728002 + timestamp: 1774197446916 +- conda: https://conda.anaconda.org/conda-forge/linux-64/libboost-1.85.0-h0ccab89_4.conda + sha256: dc19dfc636c363871763384219269ce6a027fcf3831f17e018caeecb2ffbb20a + md5: 4da1690badd566fc1041f91cd5655727 + depends: + - __glibc >=2.17,<3.0.a0 + - bzip2 >=1.0.8,<2.0a0 + - icu >=75.1,<76.0a0 + - libgcc-ng >=12 + - libstdcxx-ng >=12 + - libzlib >=1.3.1,<2.0a0 + - xz >=5.2.6,<6.0a0 + - zstd >=1.5.6,<1.6.0a0 + constrains: + - boost-cpp =1.85.0 + license: BSL-1.0 + size: 2869710 + timestamp: 1722289756758 +- conda: https://conda.anaconda.org/conda-forge/linux-64/libboost-devel-1.85.0-h00ab1b0_4.conda + sha256: 04ec5a59e87d75cf6f8b539493f7f71c0cca3f50976251895f51da45e39cddf7 + md5: ded76b8670cb505006c891c4d45844a5 + depends: + - libboost 1.85.0 h0ccab89_4 + - libboost-headers 1.85.0 ha770c72_4 + constrains: + - boost-cpp =1.85.0 + license: BSL-1.0 + size: 40881 + timestamp: 1722289871820 +- conda: https://conda.anaconda.org/conda-forge/linux-64/libboost-headers-1.85.0-ha770c72_4.conda + sha256: 55aa2ac604bd7ed76fae0c93698d37aae455ca2fb229ff9aa45e085ff7ad48ec + md5: 00e4848983222729ccb7c69f1039f4b9 + constrains: + - boost-cpp =1.85.0 + license: BSL-1.0 + size: 13961521 + timestamp: 1722289776587 +- conda: https://conda.anaconda.org/conda-forge/linux-64/libclang-15.0.7-default_h127d8a8_5.conda + sha256: 606b79c8a4a926334191d79f4a1447aac1d82c43344e3a603cbba31ace859b8f + md5: 09b94dd3a7e304df5b83176239347920 + depends: + - libclang13 15.0.7 default_h5d6823c_5 + - libgcc-ng >=12 + - libllvm15 >=15.0.7,<15.1.0a0 + - libstdcxx-ng >=12 + license: Apache-2.0 WITH LLVM-exception + license_family: Apache + size: 133467 + timestamp: 1711064002817 +- conda: https://conda.anaconda.org/conda-forge/linux-64/libclang-16.0.6-default_hddf928d_15.conda + sha256: e28559e2b5f794cd26eeeac5d8789b8a7f23b64ec97daba4918d0192297e4d9c + md5: a8380312ac608cdd14e1a677de040297 + depends: + - __glibc >=2.17,<3.0.a0 + - libclang13 16.0.6 default_ha444ac7_15 + - libgcc >=14 + - libllvm16 >=16.0.6,<16.1.0a0 + - libstdcxx >=14 + license: Apache-2.0 WITH LLVM-exception + license_family: Apache + size: 91718 + timestamp: 1756167017117 +- conda: https://conda.anaconda.org/conda-forge/linux-64/libclang-17.0.6-default_hb5137d0_8.conda + sha256: 1840e675c48ae86de1362dc4579fc6704b172ea3ffc8dc8f55ac4258325b8a71 + md5: 628f6de81256ef512a506cf6dfbbb57e + depends: + - __glibc >=2.17,<3.0.a0 + - libclang13 17.0.6 default_h9c6a7e4_8 + - libgcc >=13 + - libllvm17 >=17.0.6,<17.1.0a0 + - libstdcxx >=13 + license: Apache-2.0 WITH LLVM-exception + license_family: Apache + size: 24247 + timestamp: 1738088016635 +- conda: https://conda.anaconda.org/conda-forge/linux-64/libclang-18.1.8-default_h99862b1_18.conda + sha256: 20dfbafffb97f8b27691058bf33fde318025a7465eab4c9455aa95c0f1470512 + md5: 8303e7e2f29cc1a0608031abfd1d5f74 + depends: + - __glibc >=2.17,<3.0.a0 + - libclang13 18.1.8 default_h746c552_18 + - libgcc >=14 + - libllvm18 >=18.1.8,<18.2.0a0 + - libstdcxx >=14 + license: Apache-2.0 WITH LLVM-exception + license_family: Apache + size: 93491 + timestamp: 1773511742854 +- conda: https://conda.anaconda.org/conda-forge/linux-64/libclang-19.1.7-default_h99862b1_9.conda + sha256: 5d9a2b12d34bea18d91d61889a129efa577734bddeaa83fa9a912c95a6b5be35 + md5: 17caa7d71211713883c0edf119521e2e + depends: + - __glibc >=2.17,<3.0.a0 + - libclang13 19.1.7 default_h746c552_9 + - libgcc >=14 + - libllvm19 >=19.1.7,<19.2.0a0 + - libstdcxx >=14 + license: Apache-2.0 WITH LLVM-exception + license_family: Apache + size: 25121 + timestamp: 1776984181459 +- conda: https://conda.anaconda.org/conda-forge/linux-64/libclang-20.1.8-default_h99862b1_15.conda + sha256: 174e24c28b114e167554d68a7dcaf99068be551c87237ef32ec0c49cca1ec130 + md5: a04754ddc9b644731b4c3401c9c818f3 + depends: + - __glibc >=2.17,<3.0.a0 + - libclang13 20.1.8 default_h746c552_15 + - libgcc >=14 + - libllvm20 >=20.1.8,<20.2.0a0 + - libstdcxx >=14 + license: Apache-2.0 WITH LLVM-exception + license_family: Apache + size: 71158 + timestamp: 1776983126294 +- conda: https://conda.anaconda.org/conda-forge/linux-64/libclang-21.1.8-default_h99862b1_4.conda + sha256: 17fbec40c59121bebb0540bcf6ab232b3990a0de3a59e1a2d8c44cbe23f5c1ef + md5: 9cbbb009469b0885ecf53004ec0232a8 + depends: + - __glibc >=2.17,<3.0.a0 + - libclang13 21.1.8 default_h746c552_4 + - libgcc >=14 + - libllvm21 >=21.1.8,<21.2.0a0 + - libstdcxx >=14 + license: Apache-2.0 WITH LLVM-exception + license_family: Apache + size: 28658 + timestamp: 1777011152186 +- conda: https://conda.anaconda.org/conda-forge/linux-64/libclang-22.1.5-default_h99862b1_1.conda + sha256: c69527d339a54f17f2d8125bde5fd95aa68c8a3c6be913b4c3e189e0db0001b2 + md5: 36c6cad43e291bbf27c9cb85247e88ea + depends: + - __glibc >=2.17,<3.0.a0 + - libclang13 22.1.5 default_h746c552_1 + - libgcc >=14 + - libllvm22 >=22.1.5,<22.2.0a0 + - libstdcxx >=14 + license: Apache-2.0 WITH LLVM-exception + license_family: Apache + size: 28505 + timestamp: 1778479896140 +- conda: https://conda.anaconda.org/conda-forge/linux-64/libclang-cpp-15.0.7-default_h127d8a8_5.conda + sha256: 0a3d9ef7b2ea90c55ca699e86903b4be9cf3df668c3ed12338965a14d13effc1 + md5: b57ca00b59916eb7b6d6b8c66b910ff2 + depends: + - libclang-cpp15 15.0.7 default_h127d8a8_5 + - libgcc-ng >=12 + - libllvm15 >=15.0.7,<15.1.0a0 + - libstdcxx-ng >=12 + license: Apache-2.0 WITH LLVM-exception + license_family: Apache + size: 133473 + timestamp: 1711063848075 +- conda: https://conda.anaconda.org/conda-forge/linux-64/libclang-cpp-16.0.6-default_hddf928d_15.conda + sha256: fb7fae3328ea7cc0b903bf5302791e619a3204ffdfd6cff1a06f95f67b266211 + md5: 1cb9aff471548870ffa07d61ab81c59e + depends: + - __glibc >=2.17,<3.0.a0 + - libclang-cpp16 16.0.6 default_hddf928d_15 + - libgcc >=14 + - libllvm16 >=16.0.6,<16.1.0a0 + - libstdcxx >=14 + license: Apache-2.0 WITH LLVM-exception + license_family: Apache + size: 91742 + timestamp: 1756166899892 +- conda: https://conda.anaconda.org/conda-forge/linux-64/libclang-cpp-17.0.6-default_hb5137d0_8.conda + sha256: edc6284b40836543dbab342f07fe452d876ad335fdb869f11e14aca7b6385ebd + md5: 6e84b6a884c45dd25e0144980ba67ee7 + depends: + - __glibc >=2.17,<3.0.a0 + - libclang-cpp17 17.0.6 default_hb5137d0_8 + - libgcc >=13 + - libllvm17 >=17.0.6,<17.1.0a0 + - libstdcxx >=13 + license: Apache-2.0 WITH LLVM-exception + license_family: Apache + size: 24266 + timestamp: 1738087862786 +- conda: https://conda.anaconda.org/conda-forge/linux-64/libclang-cpp-18.1.8-default_h99862b1_18.conda + sha256: 8e125df7192920cf57efa043e97790e29c7df11bf2a8624b147b231ddcbb86e1 + md5: 2bdc4491046f2b494d9d9bbad3214027 + depends: + - __glibc >=2.17,<3.0.a0 + - libclang-cpp18.1 18.1.8 default_h99862b1_18 + - libgcc >=14 + - libllvm18 >=18.1.8,<18.2.0a0 + - libstdcxx >=14 + license: Apache-2.0 WITH LLVM-exception + license_family: Apache + size: 93299 + timestamp: 1773511602793 +- conda: https://conda.anaconda.org/conda-forge/linux-64/libclang-cpp-19.1.7-default_h99862b1_9.conda + sha256: de3adab7c21f3d4a01c248028116ce01b828ddbadc47aff95e3bfbd6881cd7a8 + md5: e0b5da1f9b2d052c79f9aba7c9d60ea1 + depends: + - __glibc >=2.17,<3.0.a0 + - libclang-cpp19.1 19.1.7 default_h99862b1_9 + - libgcc >=14 + - libllvm19 >=19.1.7,<19.2.0a0 + - libstdcxx >=14 + license: Apache-2.0 WITH LLVM-exception + license_family: Apache + size: 25119 + timestamp: 1776984188709 +- conda: https://conda.anaconda.org/conda-forge/linux-64/libclang-cpp-20.1.8-default_h99862b1_15.conda + sha256: 9bbd0cdd9d524d338a068e1513f2e9d1876e145f76b739a1fc3db9902834808e + md5: 2504b49dab3f2d4ffb26982216455b9d + depends: + - __glibc >=2.17,<3.0.a0 + - libclang-cpp20.1 20.1.8 default_h99862b1_15 + - libgcc >=14 + - libllvm20 >=20.1.8,<20.2.0a0 + - libstdcxx >=14 + license: Apache-2.0 WITH LLVM-exception + license_family: Apache + size: 71201 + timestamp: 1776983135315 +- conda: https://conda.anaconda.org/conda-forge/linux-64/libclang-cpp-21.1.8-default_h99862b1_4.conda + sha256: 18513e063dd3e1bb87ade5c3fe3a064b5a11840574cd8e970471909388ea54a1 + md5: 928a58ab049a539b87141c17a706b9f5 + depends: + - __glibc >=2.17,<3.0.a0 + - libclang-cpp21.1 21.1.8 default_h99862b1_4 + - libgcc >=14 + - libllvm21 >=21.1.8,<21.2.0a0 + - libstdcxx >=14 + license: Apache-2.0 WITH LLVM-exception + license_family: Apache + size: 28555 + timestamp: 1777010973655 +- conda: https://conda.anaconda.org/conda-forge/linux-64/libclang-cpp-22.1.5-default_h99862b1_1.conda + sha256: 6f7d48684b2b85c3de316691319d8a3af366e8b8f7902e9d74af4254806b4111 + md5: 2f27ba768a5c14fa7beaf06db066d85a + depends: + - __glibc >=2.17,<3.0.a0 + - libclang-cpp22.1 22.1.5 default_h99862b1_1 + - libgcc >=14 + - libllvm22 >=22.1.5,<22.2.0a0 + - libstdcxx >=14 + license: Apache-2.0 WITH LLVM-exception + license_family: Apache + size: 28437 + timestamp: 1778479800617 +- conda: https://conda.anaconda.org/conda-forge/linux-64/libclang-cpp15-15.0.7-default_h127d8a8_5.conda + sha256: 9b0238e705a33da74ca82efd03974f499550f7dada1340cc9cb7c35a92411ed8 + md5: d0a9633b53cdc319b8a1a532ae7822b8 + depends: + - libgcc-ng >=12 + - libllvm15 >=15.0.7,<15.1.0a0 + - libstdcxx-ng >=12 + license: Apache-2.0 WITH LLVM-exception + license_family: Apache + size: 17206402 + timestamp: 1711063711931 +- conda: https://conda.anaconda.org/conda-forge/linux-64/libclang-cpp16-16.0.6-default_hddf928d_15.conda + sha256: 218ea23f992734c3cb40bca39266768240f8f099a23c5d69305692f3485f1bea + md5: ebf034fe29aad0a581668bcbf8ca4431 + depends: + - __glibc >=2.17,<3.0.a0 + - libgcc >=14 + - libllvm16 >=16.0.6,<16.1.0a0 + - libstdcxx >=14 + license: Apache-2.0 WITH LLVM-exception + license_family: Apache + size: 18328968 + timestamp: 1756166766219 +- conda: https://conda.anaconda.org/conda-forge/linux-64/libclang-cpp17-17.0.6-default_hb5137d0_8.conda + sha256: 02a1c8d525104a781af98e5590fa319d0d150ed5b2aa68f203286d9dee6bc196 + md5: 4865444acb3d32dd63d606f58e8f24f0 + depends: + - __glibc >=2.17,<3.0.a0 + - libgcc >=13 + - libllvm17 >=17.0.6,<17.1.0a0 + - libstdcxx >=13 + license: Apache-2.0 WITH LLVM-exception + license_family: Apache + size: 18487417 + timestamp: 1738087655183 +- conda: https://conda.anaconda.org/conda-forge/linux-64/libclang-cpp18.1-18.1.8-default_h99862b1_18.conda + sha256: c54c902679012a22ed1727d5a5b87b0e46727d1e2b201e3a79c19188fbb5b829 + md5: 6c396d954c81b50021d2df4b567acc93 + depends: + - __glibc >=2.17,<3.0.a0 + - libgcc >=14 + - libllvm18 >=18.1.8,<18.2.0a0 + - libstdcxx >=14 + license: Apache-2.0 WITH LLVM-exception + license_family: Apache + size: 19595525 + timestamp: 1773511447721 +- conda: https://conda.anaconda.org/conda-forge/linux-64/libclang-cpp19.1-19.1.7-default_h99862b1_9.conda + sha256: 6b256303e6a1db40e4ce61a5bc69d0e78bf8946070309b665555248667aa23f3 + md5: feec6e0f138982e3f7b1ac372fb396cf + depends: + - __glibc >=2.17,<3.0.a0 + - libgcc >=14 + - libllvm19 >=19.1.7,<19.2.0a0 + - libstdcxx >=14 + license: Apache-2.0 WITH LLVM-exception + license_family: Apache + size: 20824232 + timestamp: 1776984079535 +- conda: https://conda.anaconda.org/conda-forge/linux-64/libclang-cpp20.1-20.1.8-default_h99862b1_15.conda + sha256: 4581c97a00e61b0f3332bcb5cac0d2f8121dfa20fb81c4b1ffbdd12412c8f4da + md5: 9981b5fa5a35796827027aad4949a63e + 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: 21292403 + timestamp: 1776983019123 +- conda: https://conda.anaconda.org/conda-forge/linux-64/libclang-cpp21.1-21.1.8-default_h99862b1_4.conda + sha256: aa61ed39af5944d05cd27672d2b520dbf2b3428575fbc7192acede709bed974a + md5: 80edae9c0a5feaf93fa2996c266d1ce7 + depends: + - __glibc >=2.17,<3.0.a0 + - libgcc >=14 + - libllvm21 >=21.1.8,<21.2.0a0 + - libstdcxx >=14 + license: Apache-2.0 WITH LLVM-exception + license_family: Apache + size: 21066414 + timestamp: 1777010859192 +- conda: https://conda.anaconda.org/conda-forge/linux-64/libclang-cpp22.1-22.1.5-default_h99862b1_1.conda + sha256: 20319f075f7dc77270ec9a1696c5264b4ea06788105a1dd592a37bf0d544bfc7 + md5: 8d6a3213512f06865c389a43b781f837 + depends: + - __glibc >=2.17,<3.0.a0 + - libgcc >=14 + - libllvm22 >=22.1.5,<22.2.0a0 + - libstdcxx >=14 + license: Apache-2.0 WITH LLVM-exception + license_family: Apache + size: 21678235 + timestamp: 1778479708847 +- conda: https://conda.anaconda.org/conda-forge/linux-64/libclang13-15.0.7-default_h5d6823c_5.conda + sha256: 91ecfcf545a5d4588e9fad5db2b5b04eeef18cae1c03b790829ef8b978f06ccd + md5: 2d694a9ffdcc30e89dea34a8dcdab6ae + depends: + - libgcc-ng >=12 + - libllvm15 >=15.0.7,<15.1.0a0 + - libstdcxx-ng >=12 + license: Apache-2.0 WITH LLVM-exception + license_family: Apache + size: 9583734 + timestamp: 1711063939856 +- conda: https://conda.anaconda.org/conda-forge/linux-64/libclang13-16.0.6-default_ha444ac7_15.conda + sha256: 2b6e61e8c965c05331d3a4498854e8c00628fb32c2f93380c3aea1f854e360db + md5: 7a7061ce88036a90ac305d279c94fd3b + depends: + - __glibc >=2.17,<3.0.a0 + - libgcc >=14 + - libllvm16 >=16.0.6,<16.1.0a0 + - libstdcxx >=14 + license: Apache-2.0 WITH LLVM-exception + license_family: Apache + size: 10540283 + timestamp: 1756166961628 +- conda: https://conda.anaconda.org/conda-forge/linux-64/libclang13-17.0.6-default_h9c6a7e4_8.conda + sha256: 6c11fc917280b3bdd3699fb7c5aa7b2f29cc2ad76115d2ee8b57ec2fff06a5b3 + md5: 75c6720328a6e9e238fcb6bfe73bda89 + depends: + - __glibc >=2.17,<3.0.a0 + - libgcc >=13 + - libllvm17 >=17.0.6,<17.1.0a0 + - libstdcxx >=13 + license: Apache-2.0 WITH LLVM-exception + license_family: Apache + size: 10539990 + timestamp: 1738087939450 +- conda: https://conda.anaconda.org/conda-forge/linux-64/libclang13-18.1.8-default_h746c552_18.conda + sha256: 167fcc607045632cc62fa09d153d07f193842be8af3909e930a2ed4fb29400f3 + md5: 647d88769f21c391bfc852aa61b65c27 + depends: + - __glibc >=2.17,<3.0.a0 + - libgcc >=14 + - libllvm18 >=18.1.8,<18.2.0a0 + - libstdcxx >=14 + license: Apache-2.0 WITH LLVM-exception + license_family: Apache + size: 11310872 + timestamp: 1773511681279 +- conda: https://conda.anaconda.org/conda-forge/linux-64/libclang13-19.1.7-default_h746c552_9.conda + sha256: 7cc4a937a5d2ce82fc9f17ba28f5b36f67a041a318807264246a4a3001d65a23 + md5: 4e756679c3744333916ee13bb56e0875 + depends: + - __glibc >=2.17,<3.0.a0 + - libgcc >=14 + - libllvm19 >=19.1.7,<19.2.0a0 + - libstdcxx >=14 + license: Apache-2.0 WITH LLVM-exception + license_family: Apache + size: 12027903 + timestamp: 1776984127441 +- conda: https://conda.anaconda.org/conda-forge/linux-64/libclang13-20.1.8-default_h746c552_15.conda + sha256: 98bada9112c9e42c2a7bf6481ba769ea75bf85fa4e762a728b5eb5f0d193a8ce + md5: 4d1b97de0eaf51dc6498c389be4c182f + 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: 12392589 + timestamp: 1776983069801 +- conda: https://conda.anaconda.org/conda-forge/linux-64/libclang13-21.1.8-default_h746c552_4.conda + sha256: 8108eaf1c68d2b5eaa227b3307195b2d6121d29e785f8714cd2be431477e0222 + md5: 0a84a1d4fe6f6465c016a8e6e1fb8d4a + depends: + - __glibc >=2.17,<3.0.a0 + - libgcc >=14 + - libllvm21 >=21.1.8,<21.2.0a0 + - libstdcxx >=14 + license: Apache-2.0 WITH LLVM-exception + license_family: Apache + size: 12348817 + timestamp: 1777011092655 +- conda: https://conda.anaconda.org/conda-forge/linux-64/libclang13-22.1.5-default_h746c552_1.conda + sha256: 7f479f796ba05f22324fb484f53da6f9948395499d7558cc4ff5ec24e91448b1 + md5: af8c5fb71cb5aa4861365af2784fc9ce + depends: + - __glibc >=2.17,<3.0.a0 + - libgcc >=14 + - libllvm22 >=22.1.5,<22.2.0a0 + - libstdcxx >=14 + license: Apache-2.0 WITH LLVM-exception + license_family: Apache + size: 12827971 + timestamp: 1778479852868 +- conda: https://conda.anaconda.org/conda-forge/linux-64/libcompiler-rt-21.1.8-hb700be7_1.conda + sha256: 6f76c19dd29c2d2916e919d01e929717a7c88145523c6dffe8619f3c8bb2f9eb + md5: 3b4d8d38ce35c48ad0d6415ef286541e + depends: + - __glibc >=2.17,<3.0.a0 + - libgcc >=14 + - libstdcxx >=14 + constrains: + - compiler-rt >=9.0.1 + license: Apache-2.0 WITH LLVM-exception + license_family: APACHE + size: 10606333 + timestamp: 1769057116625 +- conda: https://conda.anaconda.org/conda-forge/linux-64/libcompiler-rt-22.1.5-hb700be7_1.conda + sha256: e67c6597cb56108ffc2f2c199a20d36dc804f6d281e1b0f5117054db85358241 + md5: cf4338c8cded486308588fcbc35f7cc3 + depends: + - __glibc >=2.17,<3.0.a0 + - libgcc >=14 + - libstdcxx >=14 + constrains: + - compiler-rt >=9.0.1 + license: Apache-2.0 WITH LLVM-exception + license_family: APACHE + size: 10970191 + timestamp: 1778193484176 +- conda: https://conda.anaconda.org/conda-forge/linux-64/libcurl-8.20.0-hcf29cc6_0.conda + sha256: 75963a5dd913311f59a35dbd307592f4fa754c4808aff9c33edb430c415e38eb + md5: c3cc2864f82a944bc90a7beb4d3b0e88 + depends: + - __glibc >=2.17,<3.0.a0 + - krb5 >=1.22.2,<1.23.0a0 + - libgcc >=14 + - libnghttp2 >=1.68.1,<2.0a0 + - libssh2 >=1.11.1,<2.0a0 + - libzlib >=1.3.2,<2.0a0 + - openssl >=3.5.6,<4.0a0 + - zstd >=1.5.7,<1.6.0a0 + license: curl + license_family: MIT + size: 468706 + timestamp: 1777461492876 +- conda: https://conda.anaconda.org/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://conda.anaconda.org/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://conda.anaconda.org/conda-forge/linux-64/libexpat-2.8.0-hecca717_0.conda + sha256: ea33c40977ea7a2c3658c522230058395bc2ee0d89d99f0711390b6a1ee80d12 + md5: a3b390520c563d78cc58974de95a03e5 + depends: + - __glibc >=2.17,<3.0.a0 + - libgcc >=14 + constrains: + - expat 2.8.0.* + license: MIT + license_family: MIT + size: 77241 + timestamp: 1777846112704 +- conda: https://conda.anaconda.org/conda-forge/linux-64/libgcc-15.2.0-he0feb66_19.conda + sha256: 8e0a3b5e41272e5678499b5dfc4cddb673f9e935de01eb0767ce857001229f46 + md5: 57736f29cc2b0ec0b6c2952d3f101b6a + depends: + - __glibc >=2.17,<3.0.a0 + - _openmp_mutex >=4.5 + constrains: + - libgcc-ng ==15.2.0=*_19 + - libgomp 15.2.0 he0feb66_19 + license: GPL-3.0-only WITH GCC-exception-3.1 + license_family: GPL + size: 1041084 + timestamp: 1778269013026 +- conda: https://conda.anaconda.org/conda-forge/linux-64/libgcc-ng-15.2.0-h69a702a_19.conda + sha256: 9dcf54adfaa5e861123c2da4f2f0451a685464ea7e5a41ad91cf67b31d658d98 + md5: 331ee9b72b9dff570d56b1302c5ab37d + depends: + - libgcc 15.2.0 he0feb66_19 + license: GPL-3.0-only WITH GCC-exception-3.1 + license_family: GPL + size: 27694 + timestamp: 1778269016987 +- conda: https://conda.anaconda.org/conda-forge/linux-64/libgomp-15.2.0-he0feb66_19.conda + sha256: 5abe4ab9d93f6c9757d654f1969ae2267d4505315c1f2f8fe705fd60af084f1b + md5: faac990cb7aedc7f3a2224f2c9b0c26c + depends: + - __glibc >=2.17,<3.0.a0 + license: GPL-3.0-only WITH GCC-exception-3.1 + license_family: GPL + size: 603817 + timestamp: 1778268942614 +- conda: https://conda.anaconda.org/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://conda.anaconda.org/conda-forge/linux-64/libllvm15-15.0.7-ha7bfdaf_5.conda + sha256: 7dfa43a79a35debdff93328f9acc3b0ad859929dc7e761160ecbd93275e64e6f + md5: f55d1108d59fa85e6a1ded9c70766bd8 + depends: + - __glibc >=2.17,<3.0.a0 + - libgcc >=13 + - libstdcxx >=13 + - 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: 33233890 + timestamp: 1739680079644 +- conda: https://conda.anaconda.org/conda-forge/linux-64/libllvm16-16.0.6-ha7bfdaf_4.conda + sha256: 421fed3a23f5657c2f6ab672b253ae3fce6039c109be6484bd9ce6a16e90bc2b + md5: 5cf4080515925080bff5ac96d82a3bfa + depends: + - __glibc >=2.17,<3.0.a0 + - libgcc >=13 + - libstdcxx >=13 + - 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: 35234903 + timestamp: 1739806428307 +- conda: https://conda.anaconda.org/conda-forge/linux-64/libllvm17-17.0.6-ha7bfdaf_3.conda + sha256: 4fb1d91048b7714c65b01dc8fd5e9ed3fdf7e48c0b2ed390c75dd376cf682316 + md5: ed3e154faccbf6393bf0bc9ea0423dce + depends: + - __glibc >=2.17,<3.0.a0 + - libgcc >=13 + - libstdcxx >=13 + - 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: 36562200 + timestamp: 1737805523606 +- conda: https://conda.anaconda.org/conda-forge/linux-64/libllvm18-18.1.8-default_h99862b1_12.conda + sha256: 39533d192fe2d2d701294ac7f2fe5bb62f3eb4b29faff3cac4b780e5dcab3101 + md5: 613ec9fccfce0265fb834f6ee3426264 + depends: + - __glibc >=2.17,<3.0.a0 + - libgcc >=14 + - libstdcxx >=14 + - libxml2 + - libxml2-16 >=2.14.6 + - libzlib >=1.3.1,<2.0a0 + - zstd >=1.5.7,<1.6.0a0 + license: Apache-2.0 WITH LLVM-exception + license_family: Apache + size: 39156260 + timestamp: 1773663809253 +- conda: https://conda.anaconda.org/conda-forge/linux-64/libllvm19-19.1.7-hf7376ad_2.conda + sha256: 8310e3bf47af086ef9d4434d69139c888e2c13b66d8815d6dc5e7c272a267538 + md5: 8131707c4e4fac60e6e7da4d532484a4 + depends: + - __glibc >=2.17,<3.0.a0 + - libgcc >=14 + - libstdcxx >=14 + - libxml2 + - libxml2-16 >=2.14.5 + - libzlib >=1.3.1,<2.0a0 + - zstd >=1.5.7,<1.6.0a0 + license: Apache-2.0 WITH LLVM-exception + license_family: Apache + size: 41033274 + timestamp: 1757357153329 +- conda: https://conda.anaconda.org/conda-forge/linux-64/libllvm20-20.1.8-hf7376ad_1.conda + sha256: bd2981488f63afbc234f6c7759f8363c63faf38dd0f4e64f48ef5a06541c12b4 + md5: eafa8fd1dfc9a107fe62f7f12cabbc9c + depends: + - __glibc >=2.17,<3.0.a0 + - libgcc >=14 + - libstdcxx >=14 + - libxml2 + - libxml2-16 >=2.14.5 + - libzlib >=1.3.1,<2.0a0 + - zstd >=1.5.7,<1.6.0a0 + license: Apache-2.0 WITH LLVM-exception + license_family: Apache + size: 43977914 + timestamp: 1757353652788 +- conda: https://conda.anaconda.org/conda-forge/linux-64/libllvm21-21.1.8-hf7376ad_0.conda + sha256: 91bb4f5be1601b40b4995911d785e29387970f0b3c80f33f7f9028f95335399f + md5: 1a2708a460884d6861425b7f9a7bef99 + depends: + - __glibc >=2.17,<3.0.a0 + - libgcc >=14 + - libstdcxx >=14 + - libxml2 + - libxml2-16 >=2.14.6 + - libzlib >=1.3.1,<2.0a0 + - zstd >=1.5.7,<1.6.0a0 + license: Apache-2.0 WITH LLVM-exception + license_family: Apache + size: 44333366 + timestamp: 1765959132513 +- conda: https://conda.anaconda.org/conda-forge/linux-64/libllvm22-22.1.5-hf7376ad_1.conda + sha256: 094198dc5c7fbd85e3719d192d5b77c3f0dccf657dfd9ba0c79e391f11f7ace2 + md5: 6adc0202fa7fcf0a5fce8c31ef2ed866 + depends: + - __glibc >=2.17,<3.0.a0 + - libgcc >=14 + - libstdcxx >=14 + - libxml2 + - libxml2-16 >=2.14.6 + - libzlib >=1.3.2,<2.0a0 + - zstd >=1.5.7,<1.6.0a0 + license: Apache-2.0 WITH LLVM-exception + license_family: Apache + size: 44241856 + timestamp: 1778417624650 +- conda: https://conda.anaconda.org/conda-forge/linux-64/liblzma-5.8.3-hb03c661_0.conda + sha256: ec30e52a3c1bf7d0425380a189d209a52baa03f22fb66dd3eb587acaa765bd6d + md5: b88d90cad08e6bc8ad540cb310a761fb + depends: + - __glibc >=2.17,<3.0.a0 + - libgcc >=14 + constrains: + - xz 5.8.3.* + license: 0BSD + size: 113478 + timestamp: 1775825492909 +- conda: https://conda.anaconda.org/conda-forge/linux-64/liblzma-devel-5.8.3-hb03c661_0.conda + sha256: 7858f6a173206bc8a5bdc8e75690483bb66c0dcc3809ac1cb43c561a4723623a + md5: 55c20edec8e90c4703787acaade60808 + depends: + - __glibc >=2.17,<3.0.a0 + - libgcc >=14 + - liblzma 5.8.3 hb03c661_0 + license: 0BSD + size: 491429 + timestamp: 1775825511214 +- conda: https://conda.anaconda.org/conda-forge/linux-64/libnghttp2-1.68.1-h877daf1_0.conda + sha256: 663444d77a42f2265f54fb8b48c5450bfff4388d9c0f8253dd7855f0d993153f + md5: 2a45e7f8af083626f009645a6481f12d + depends: + - __glibc >=2.17,<3.0.a0 + - c-ares >=1.34.6,<2.0a0 + - libev >=4.33,<4.34.0a0 + - libev >=4.33,<5.0a0 + - libgcc >=14 + - libstdcxx >=14 + - libzlib >=1.3.1,<2.0a0 + - openssl >=3.5.5,<4.0a0 + license: MIT + license_family: MIT + size: 663344 + timestamp: 1773854035739 +- conda: https://conda.anaconda.org/conda-forge/linux-64/libsanitizer-14.3.0-h8f1669f_19.conda + sha256: 8766de5423b0a510e2b1bdd1963d0554bdad2119f3e31d8fbd4189af434235ca + md5: 007796e5a595bbc7df4a5e1580d72e1a + depends: + - __glibc >=2.17,<3.0.a0 + - libgcc >=14.3.0 + - libstdcxx >=14.3.0 + license: GPL-3.0-only WITH GCC-exception-3.1 + license_family: GPL + size: 7947790 + timestamp: 1778268494844 +- conda: https://conda.anaconda.org/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://conda.anaconda.org/conda-forge/linux-64/libstdcxx-15.2.0-h934c35e_19.conda + sha256: dff1058c76ec6b8759e41cefa2508162d00e4a5e6721aa68ec3fd10094e702dc + md5: 5794b3bdc38177caf969dabd3af08549 + depends: + - __glibc >=2.17,<3.0.a0 + - libgcc 15.2.0 he0feb66_19 + constrains: + - libstdcxx-ng ==15.2.0=*_19 + license: GPL-3.0-only WITH GCC-exception-3.1 + license_family: GPL + size: 5852044 + timestamp: 1778269036376 +- conda: https://conda.anaconda.org/conda-forge/linux-64/libstdcxx-ng-15.2.0-hdf11a46_19.conda + sha256: 0672b6b6e1791c92e8eccad58081a99d614fcf82bca5841f9dfa3c3e658f83b9 + md5: e5ce228e579726c07255dbf90dc62101 + depends: + - libstdcxx 15.2.0 h934c35e_19 + license: GPL-3.0-only WITH GCC-exception-3.1 + license_family: GPL + size: 27776 + timestamp: 1778269074600 +- conda: https://conda.anaconda.org/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://conda.anaconda.org/conda-forge/linux-64/libxml2-16-2.15.1-ha9997c6_0.conda + sha256: 71436e72a286ef8b57d6f4287626ff91991eb03c7bdbe835280521791efd1434 + md5: e7733bc6785ec009e47a224a71917e84 + 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 + constrains: + - libxml2 2.15.1 + license: MIT + license_family: MIT + size: 556302 + timestamp: 1761015637262 +- conda: https://conda.anaconda.org/conda-forge/linux-64/libxml2-2.13.9-h04c0eec_0.conda + sha256: 5d12e993894cb8e9f209e2e6bef9c90fa2b7a339a1f2ab133014b71db81f5d88 + md5: 35eeb0a2add53b1e50218ed230fa6a02 + 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: 697033 + timestamp: 1761766011241 +- conda: https://conda.anaconda.org/conda-forge/linux-64/libxml2-2.15.1-h26afc86_0.conda + sha256: ec0735ae56c3549149eebd7dc22c0bed91fd50c02eaa77ff418613ddda190aa8 + md5: e512be7dc1f84966d50959e900ca121f + 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 + - libxml2-16 2.15.1 ha9997c6_0 + - libzlib >=1.3.1,<2.0a0 + license: MIT + license_family: MIT + size: 45283 + timestamp: 1761015644057 +- conda: https://conda.anaconda.org/conda-forge/linux-64/libzlib-1.3.2-h25fd6f3_2.conda + sha256: 55044c403570f0dc26e6364de4dc5368e5f3fc7ff103e867c487e2b5ab2bcda9 + md5: d87ff7921124eccd67248aa483c23fec + depends: + - __glibc >=2.17,<3.0.a0 + constrains: + - zlib 1.3.2 *_2 + license: Zlib + license_family: Other + size: 63629 + timestamp: 1774072609062 +- conda: https://conda.anaconda.org/conda-forge/linux-64/llvm-openmp-22.1.5-h4922eb0_1.conda + sha256: dae1fe2195dd1da5a8a565255c738f19c0b71490ddeee5d0fc9c5b037b19107c + md5: f66101d2eb5de2924c10a63bbfa2926e + depends: + - __glibc >=2.17,<3.0.a0 + constrains: + - openmp 22.1.5|22.1.5.* + - intel-openmp <0.0a0 + license: Apache-2.0 WITH LLVM-exception + license_family: APACHE + size: 6128130 + timestamp: 1778447746870 +- conda: https://conda.anaconda.org/conda-forge/linux-64/llvm-tools-15.0.7-ha7bfdaf_5.conda + sha256: 7e5b105eae7860f411b109d2a2650367407292d5bafdbd4f07bfbe8a7fca3093 + md5: 7d18c498a0af892600ca424ec3b7dd1c + depends: + - __glibc >=2.17,<3.0.a0 + - libgcc >=13 + - libllvm15 15.0.7 ha7bfdaf_5 + - libstdcxx >=13 + - libxml2 >=2.13.5,<2.14.0a0 + - libzlib >=1.3.1,<2.0a0 + - zstd >=1.5.6,<1.6.0a0 + constrains: + - llvmdev 15.0.7 + - clang 15.0.7.* + - clang-tools 15.0.7.* + - llvm 15.0.7.* + license: Apache-2.0 WITH LLVM-exception + license_family: Apache + size: 15161354 + timestamp: 1739680335954 +- conda: https://conda.anaconda.org/conda-forge/linux-64/llvm-tools-16.0.6-ha7bfdaf_4.conda + sha256: 425adacdfac8f39d25fcd299cb5a0989af4182354ede6d0b25edad49d9d22581 + md5: 2e5a4ca86b43ef8e54c117f1d76b7de0 + depends: + - __glibc >=2.17,<3.0.a0 + - libgcc >=13 + - libllvm16 16.0.6 ha7bfdaf_4 + - libstdcxx >=13 + - libxml2 >=2.13.5,<2.14.0a0 + - libzlib >=1.3.1,<2.0a0 + - zstd >=1.5.6,<1.6.0a0 + constrains: + - llvmdev 16.0.6 + - clang 16.0.6.* + - clang-tools 16.0.6.* + - llvm 16.0.6.* + license: Apache-2.0 WITH LLVM-exception + license_family: Apache + size: 29846155 + timestamp: 1739806610017 +- conda: https://conda.anaconda.org/conda-forge/linux-64/llvm-tools-17.0.6-ha7bfdaf_3.conda + sha256: 5552099da467a98509206231578541d10c0a5302266e2bb6a1b8aa575d6974bd + md5: 355a7a87ff748d4dc83cc499ceb79c5b + depends: + - __glibc >=2.17,<3.0.a0 + - libgcc >=13 + - libllvm17 17.0.6 ha7bfdaf_3 + - libstdcxx >=13 + - libxml2 >=2.13.5,<2.14.0a0 + - libzlib >=1.3.1,<2.0a0 + - zstd >=1.5.6,<1.6.0a0 + constrains: + - clang-tools 17.0.6 + - llvmdev 17.0.6 + - clang 17.0.6 + - llvm 17.0.6 + license: Apache-2.0 WITH LLVM-exception + license_family: Apache + size: 30761486 + timestamp: 1737805694122 +- conda: https://conda.anaconda.org/conda-forge/linux-64/llvm-tools-18-18.1.8-default_h99862b1_12.conda + sha256: e0472f539cee03ec95f1f042da099ea8be6e98c69d568fc31be29d4e889488d3 + md5: 017269d72788898d2a8c6229417dce0d + depends: + - __glibc >=2.17,<3.0.a0 + - libgcc >=14 + - libllvm18 18.1.8 default_h99862b1_12 + - libstdcxx >=14 + - libxml2 + - libxml2-16 >=2.14.6 + - libzlib >=1.3.1,<2.0a0 + - zstd >=1.5.7,<1.6.0a0 + license: Apache-2.0 WITH LLVM-exception + license_family: Apache + size: 34077495 + timestamp: 1773663963729 +- conda: https://conda.anaconda.org/conda-forge/linux-64/llvm-tools-18.1.8-default_h99862b1_12.conda + sha256: 4328afddd074a1ed82696984c86dc2fb4ebe8c0c592801956f8a2b28a2fdcafa + md5: 86b2429be6b51f567deb98d50ed65623 + depends: + - __glibc >=2.17,<3.0.a0 + - libgcc >=14 + - libllvm18 18.1.8 default_h99862b1_12 + - libstdcxx >=14 + - libxml2 + - libxml2-16 >=2.14.6 + - libzlib >=1.3.1,<2.0a0 + - llvm-tools-18 18.1.8 default_h99862b1_12 + - zstd >=1.5.7,<1.6.0a0 + constrains: + - llvm 18.1.8 + - clang 18.1.8 + - llvmdev 18.1.8 + - clang-tools 18.1.8 + license: Apache-2.0 WITH LLVM-exception + license_family: Apache + size: 94084 + timestamp: 1773664051304 +- conda: https://conda.anaconda.org/conda-forge/linux-64/llvm-tools-19-19.1.7-h3b15d91_2.conda + sha256: 8e432eb9fe310429dbfa6f99678c509d9e677de81de354f2ed89d5a0a75396de + md5: c1908ce1b43123bc068f7226927e1bff + depends: + - __glibc >=2.17,<3.0.a0 + - libgcc >=14 + - libllvm19 19.1.7 hf7376ad_2 + - libstdcxx >=14 + - libzlib >=1.3.1,<2.0a0 + - zstd >=1.5.7,<1.6.0a0 + license: Apache-2.0 WITH LLVM-exception + license_family: Apache + size: 23196756 + timestamp: 1757357268176 +- conda: https://conda.anaconda.org/conda-forge/linux-64/llvm-tools-19.1.7-hb700be7_2.conda + sha256: 6ffcc46246c0f8c0a6cea64333674069838c34e58f4b8bfe33452ed431c6b3bd + md5: f477bd4a351e7158a3b0f342445a3a95 + depends: + - __glibc >=2.17,<3.0.a0 + - libgcc >=14 + - libllvm19 19.1.7 hf7376ad_2 + - libstdcxx >=14 + - llvm-tools-19 19.1.7 h3b15d91_2 + constrains: + - clang 19.1.7 + - clang-tools 19.1.7 + - llvmdev 19.1.7 + - llvm 19.1.7 + license: Apache-2.0 WITH LLVM-exception + license_family: Apache + size: 87601 + timestamp: 1757357321202 +- conda: https://conda.anaconda.org/conda-forge/linux-64/llvm-tools-20-20.1.8-h3b15d91_1.conda + sha256: b0ead2b01a2dbfe2672653764a1ac1a5a21b243dbfb4cfc4b7ae45fc6be671a1 + md5: 1a4ce6138495d4ad3d9a66071573f5d9 + depends: + - __glibc >=2.17,<3.0.a0 + - libgcc >=14 + - libllvm20 20.1.8 hf7376ad_1 + - libstdcxx >=14 + - libzlib >=1.3.1,<2.0a0 + - zstd >=1.5.7,<1.6.0a0 + license: Apache-2.0 WITH LLVM-exception + license_family: Apache + size: 26528257 + timestamp: 1757353803953 +- conda: https://conda.anaconda.org/conda-forge/linux-64/llvm-tools-20.1.8-hb700be7_1.conda + sha256: 153f96ab1ee7d96214a26968c8dc107b96c65ab4d96a302fc602cd84bafc2e0c + md5: 2339a92546214f7ac54557f674c41e99 + depends: + - __glibc >=2.17,<3.0.a0 + - libgcc >=14 + - libllvm20 20.1.8 hf7376ad_1 + - libstdcxx >=14 + - llvm-tools-20 20.1.8 h3b15d91_1 + constrains: + - llvm 20.1.8 + - clang 20.1.8 + - llvmdev 20.1.8 + - clang-tools 20.1.8 + license: Apache-2.0 WITH LLVM-exception + license_family: Apache + size: 87809 + timestamp: 1757353876330 +- conda: https://conda.anaconda.org/conda-forge/linux-64/llvm-tools-21-21.1.8-h3b15d91_0.conda + sha256: c9299569ea3a4eb13830108383db155d46230ecbdab0f46074acb7440169b0d6 + md5: 4c7b24da8391333b3726bcea610d4a1e + depends: + - __glibc >=2.17,<3.0.a0 + - libgcc >=14 + - libllvm21 21.1.8 hf7376ad_0 + - libstdcxx >=14 + - libzlib >=1.3.1,<2.0a0 + - zstd >=1.5.7,<1.6.0a0 + license: Apache-2.0 WITH LLVM-exception + license_family: Apache + size: 26091728 + timestamp: 1765959275427 +- conda: https://conda.anaconda.org/conda-forge/linux-64/llvm-tools-21.1.8-hb700be7_0.conda + sha256: 4b2ec51e9b6e53626d59dcf463345c678a4644f6374763e0bbfbd1207c0b3a27 + md5: 8d4cbc89d996d942e56145c2e846d3aa + depends: + - __glibc >=2.17,<3.0.a0 + - libgcc >=14 + - libllvm21 21.1.8 hf7376ad_0 + - libstdcxx >=14 + - llvm-tools-21 21.1.8 h3b15d91_0 + constrains: + - llvmdev 21.1.8 + - clang 21.1.8 + - clang-tools 21.1.8 + - llvm 21.1.8 + license: Apache-2.0 WITH LLVM-exception + license_family: Apache + size: 88180 + timestamp: 1765959343687 +- conda: https://conda.anaconda.org/conda-forge/linux-64/llvm-tools-22-22.1.5-h3b15d91_1.conda + sha256: a563bfcfe3948334cfd13c8abc3fc6f97d1d96d879e1585cf54cd2e0d874a3c7 + md5: e0f9be2c4085b6da9c70390eaf9c33c5 + depends: + - __glibc >=2.17,<3.0.a0 + - libgcc >=14 + - libllvm22 22.1.5 hf7376ad_1 + - libstdcxx >=14 + - libzlib >=1.3.2,<2.0a0 + - zstd >=1.5.7,<1.6.0a0 + license: Apache-2.0 WITH LLVM-exception + license_family: Apache + size: 25342721 + timestamp: 1778417758494 +- conda: https://conda.anaconda.org/conda-forge/linux-64/llvm-tools-22.1.5-hb700be7_1.conda + sha256: 267d859a7a402cdcac119831e02fa5170377fe6317723eae42b7ca342a983537 + md5: c1e31074f1ce37bbb6e6fc9b28111b5b + depends: + - __glibc >=2.17,<3.0.a0 + - libgcc >=14 + - libllvm22 22.1.5 hf7376ad_1 + - libstdcxx >=14 + - llvm-tools-22 22.1.5 h3b15d91_1 + constrains: + - clang 22.1.5 + - clang-tools 22.1.5 + - llvm 22.1.5 + - llvmdev 22.1.5 + license: Apache-2.0 WITH LLVM-exception + license_family: Apache + size: 52272 + timestamp: 1778417822483 +- conda: https://conda.anaconda.org/conda-forge/linux-64/llvmdev-15.0.7-ha7bfdaf_5.conda + sha256: 856115fa7c1e897a668ff9f021f08ce0d8eeea3a25ec38d9d6f18e0792c0163f + md5: b097716d6cc00ea182cda89efae4f953 + depends: + - __glibc >=2.17,<3.0.a0 + - libgcc >=13 + - libllvm15 15.0.7 ha7bfdaf_5 + - libstdcxx >=13 + - libxml2 >=2.13.5,<2.14.0a0 + - libzlib >=1.3.1,<2.0a0 + - llvm-tools 15.0.7 ha7bfdaf_5 + - zstd >=1.5.6,<1.6.0a0 + constrains: + - clang 15.0.7.* + - clang-tools 15.0.7.* + - llvm 15.0.7.* + - llvm-tools 15.0.7.* + license: Apache-2.0 WITH LLVM-exception + license_family: Apache + size: 51732383 + timestamp: 1739680464008 +- conda: https://conda.anaconda.org/conda-forge/linux-64/llvmdev-16.0.6-ha7bfdaf_4.conda + sha256: 5acfa7781abfaf2c00fc5d869083726ccffe38761cfb2f68eea86339f7f784cf + md5: b45c2f386522e2ab4b14439f3d21c561 + depends: + - __glibc >=2.17,<3.0.a0 + - libgcc >=13 + - libllvm16 16.0.6 ha7bfdaf_4 + - libstdcxx >=13 + - libxml2 >=2.13.5,<2.14.0a0 + - libzlib >=1.3.1,<2.0a0 + - llvm-tools 16.0.6 ha7bfdaf_4 + - zstd >=1.5.6,<1.6.0a0 + constrains: + - clang 16.0.6.* + - clang-tools 16.0.6.* + - llvm 16.0.6.* + - llvm-tools 16.0.6.* + license: Apache-2.0 WITH LLVM-exception + license_family: Apache + size: 54981083 + timestamp: 1739806712278 +- conda: https://conda.anaconda.org/conda-forge/linux-64/llvmdev-17.0.6-ha7bfdaf_3.conda + sha256: 851388c61408c0d3d11d9acd1571ec5cda38db9fcf6819d0df17d78d2a156a9b + md5: 71e37af7e3f882054ea4d1f936719826 + depends: + - __glibc >=2.17,<3.0.a0 + - libgcc >=13 + - libllvm17 17.0.6 ha7bfdaf_3 + - libstdcxx >=13 + - libxml2 >=2.13.5,<2.14.0a0 + - libzlib >=1.3.1,<2.0a0 + - llvm-tools 17.0.6 ha7bfdaf_3 + - zstd >=1.5.6,<1.6.0a0 + constrains: + - llvm-tools 17.0.6 + - clang-tools 17.0.6 + - clang 17.0.6 + - llvm 17.0.6 + license: Apache-2.0 WITH LLVM-exception + license_family: Apache + size: 56114367 + timestamp: 1737805796427 +- conda: https://conda.anaconda.org/conda-forge/linux-64/llvmdev-18.1.8-default_h99862b1_12.conda + sha256: 3d0b9e2d3900843363424087e969dfa237efda22687ce5a198137abac9922d1f + md5: e2161a6952db4e53acc1e5028a4b617f + depends: + - __glibc >=2.17,<3.0.a0 + - libgcc >=14 + - libllvm18 18.1.8 default_h99862b1_12 + - libstdcxx >=14 + - libxml2 + - libxml2-16 >=2.14.6 + - libzlib >=1.3.1,<2.0a0 + - llvm-tools 18.1.8 default_h99862b1_12 + - zstd >=1.5.7,<1.6.0a0 + constrains: + - llvm 18.1.8 + - clang 18.1.8 + - llvm-tools 18.1.8 + - clang-tools 18.1.8 + license: Apache-2.0 WITH LLVM-exception + license_family: Apache + size: 59354968 + timestamp: 1773664080567 +- conda: https://conda.anaconda.org/conda-forge/linux-64/llvmdev-19.1.7-h3b15d91_2.conda + sha256: 947344ff923b12efc392105af4e51845337d286ffb7f8777c1dabe615e04ed87 + md5: fc3e42479fa7fede8d9d03b8c20b7c92 + depends: + - __glibc >=2.17,<3.0.a0 + - libgcc >=14 + - libllvm19 19.1.7 hf7376ad_2 + - libstdcxx >=14 + - libzlib >=1.3.1,<2.0a0 + - llvm-tools 19.1.7 hb700be7_2 + - zstd >=1.5.7,<1.6.0a0 + constrains: + - clang 19.1.7 + - clang-tools 19.1.7 + - llvm-tools 19.1.7 + - llvm 19.1.7 + license: Apache-2.0 WITH LLVM-exception + license_family: Apache + size: 62449019 + timestamp: 1757357342036 +- conda: https://conda.anaconda.org/conda-forge/linux-64/llvmdev-20.1.8-h3b15d91_1.conda + sha256: feb9c3fc4206f8707696d891def9823a88840b63e93d30aea7a6d9a491c5b499 + md5: d7bfd434335f2d97bad9072a07b2bcd4 + depends: + - __glibc >=2.17,<3.0.a0 + - libgcc >=14 + - libllvm20 20.1.8 hf7376ad_1 + - libstdcxx >=14 + - libzlib >=1.3.1,<2.0a0 + - llvm-tools 20.1.8 hb700be7_1 + - zstd >=1.5.7,<1.6.0a0 + constrains: + - llvm-tools 20.1.8 + - llvm 20.1.8 + - clang 20.1.8 + - clang-tools 20.1.8 + license: Apache-2.0 WITH LLVM-exception + license_family: Apache + size: 65295857 + timestamp: 1757353899181 +- conda: https://conda.anaconda.org/conda-forge/linux-64/llvmdev-21.1.8-h3b15d91_0.conda + sha256: 1a925d92250b13794fbb7279525e2c33680a9e3ce0f607d5b7660ae0d7cc5367 + md5: ce671407525f6ca4b25c96ae1e296814 + depends: + - __glibc >=2.17,<3.0.a0 + - libgcc >=14 + - libllvm21 21.1.8 hf7376ad_0 + - libstdcxx >=14 + - libzlib >=1.3.1,<2.0a0 + - llvm-tools 21.1.8 hb700be7_0 + - zstd >=1.5.7,<1.6.0a0 + constrains: + - llvm-tools 21.1.8 + - clang 21.1.8 + - clang-tools 21.1.8 + - llvm 21.1.8 + license: Apache-2.0 WITH LLVM-exception + license_family: Apache + size: 67920535 + timestamp: 1765959372725 +- conda: https://conda.anaconda.org/conda-forge/linux-64/llvmdev-22.1.5-h3b15d91_1.conda + sha256: 0a09bcf583d34ab36725d0393e943b23355e2b33f0f5e0aa16aca3b5aa883933 + md5: 14e75aad9db40a52127772386aff107d + depends: + - __glibc >=2.17,<3.0.a0 + - libgcc >=14 + - libllvm22 22.1.5 hf7376ad_1 + - libstdcxx >=14 + - libzlib >=1.3.2,<2.0a0 + - llvm-tools 22.1.5 hb700be7_1 + - zstd >=1.5.7,<1.6.0a0 + constrains: + - clang 22.1.5 + - clang-tools 22.1.5 + - llvm 22.1.5 + - llvm-tools 22.1.5 + license: Apache-2.0 WITH LLVM-exception + license_family: Apache + size: 62612752 + timestamp: 1778417901177 +- conda: https://conda.anaconda.org/conda-forge/linux-64/ncurses-6.6-hdb14827_0.conda + sha256: fc89f74bbe362fb29fa3c037697a89bec140b346a2469a90f7936d1d7ea4d8a3 + md5: fc21868a1a5aacc937e7a18747acb8a5 + depends: + - __glibc >=2.17,<3.0.a0 + - libgcc >=14 + license: X11 AND BSD-3-Clause + size: 918956 + timestamp: 1777422145199 +- conda: https://conda.anaconda.org/conda-forge/linux-64/ninja-1.13.2-h171cf75_0.conda + sha256: 6f7d59dbec0a7b00bf5d103a4306e8886678b796ff2151b62452d4582b2a53fb + md5: b518e9e92493721281a60fa975bddc65 + depends: + - libstdcxx >=14 + - libgcc >=14 + - __glibc >=2.17,<3.0.a0 + license: Apache-2.0 + license_family: APACHE + size: 186323 + timestamp: 1763688260928 +- conda: https://conda.anaconda.org/conda-forge/linux-64/openssl-3.6.2-h35e630c_0.conda + sha256: c0ef482280e38c71a08ad6d71448194b719630345b0c9c60744a2010e8a8e0cb + md5: da1b85b6a87e141f5140bb9924cecab0 + depends: + - __glibc >=2.17,<3.0.a0 + - ca-certificates + - libgcc >=14 + license: Apache-2.0 + license_family: Apache + size: 3167099 + timestamp: 1775587756857 +- conda: https://conda.anaconda.org/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://conda.anaconda.org/conda-forge/linux-64/xz-5.8.3-ha02ee65_0.conda + sha256: 2553fd3ec0a1020b2ca05ca10b0036a596cb0d4bf3645922fcf69dacce0e6679 + md5: 6a1b6af49a334e4e06b9f103367762bf + depends: + - __glibc >=2.17,<3.0.a0 + - libgcc >=14 + - liblzma 5.8.3 hb03c661_0 + - liblzma-devel 5.8.3 hb03c661_0 + - xz-gpl-tools 5.8.3 ha02ee65_0 + - xz-tools 5.8.3 hb03c661_0 + license: 0BSD AND LGPL-2.1-or-later AND GPL-2.0-or-later + size: 24360 + timestamp: 1775825568523 +- conda: https://conda.anaconda.org/conda-forge/linux-64/xz-gpl-tools-5.8.3-ha02ee65_0.conda + sha256: 8f139666ea18dc8340a44a54056627dd4e89e242e8cd136ab2467d6dc2c192ba + md5: 8f5e2c6726c1339287a3c76a2c138ac7 + depends: + - __glibc >=2.17,<3.0.a0 + - libgcc >=14 + - liblzma 5.8.3 hb03c661_0 + constrains: + - xz 5.8.3.* + license: 0BSD AND LGPL-2.1-or-later AND GPL-2.0-or-later + size: 34213 + timestamp: 1775825548743 +- conda: https://conda.anaconda.org/conda-forge/linux-64/xz-tools-5.8.3-hb03c661_0.conda + sha256: 162ebd76803464b8c8ebc7d45df32edf0ec717b3bf369a437ae3b0254f22dc2e + md5: b62b615caa60812640f24db3a8d0fc87 + depends: + - __glibc >=2.17,<3.0.a0 + - libgcc >=14 + - liblzma 5.8.3 hb03c661_0 + constrains: + - xz 5.8.3.* + license: 0BSD AND LGPL-2.1-or-later + size: 95955 + timestamp: 1775825530484 +- conda: https://conda.anaconda.org/conda-forge/linux-64/zstd-1.5.7-hb78ec9c_6.conda + sha256: 68f0206ca6e98fea941e5717cec780ed2873ffabc0e1ed34428c061e2c6268c7 + md5: 4a13eeac0b5c8e5b8ab496e6c4ddd829 + depends: + - __glibc >=2.17,<3.0.a0 + - libzlib >=1.3.1,<2.0a0 + license: BSD-3-Clause + license_family: BSD + size: 601375 + timestamp: 1764777111296 +- conda: https://conda.anaconda.org/conda-forge/noarch/ca-certificates-2026.4.22-hbd8a1cb_0.conda + sha256: c9dbcc8039a52023660d6d1bbf87594a93dd69c6ac5a2a44323af2c92976728d + md5: e18ad67cf881dcadee8b8d9e2f8e5f73 + depends: + - __unix + license: ISC + size: 131039 + timestamp: 1776865545798 +- conda: https://conda.anaconda.org/conda-forge/noarch/compiler-rt21_linux-64-21.1.8-hffcefe0_1.conda + sha256: 65b0721f97be14265c8329ecb4e78a7e1233d0229878ffca5d15b98d90ba3977 + md5: 54bd44d384ce8d5ab5628a8950392b5a + constrains: + - compiler-rt >=9.0.1 + license: Apache-2.0 WITH LLVM-exception + license_family: APACHE + size: 48977047 + timestamp: 1769057035337 +- conda: https://conda.anaconda.org/conda-forge/noarch/compiler-rt21_osx-64-21.1.8-he0f92a2_1.conda + sha256: dddf4a7bc38f7db8c20a090882fa62839f1845bcd24d3993dd6a26bbbf632534 + md5: 8201e846c2094df05c6785e97f90b304 + constrains: + - compiler-rt >=9.0.1 + license: Apache-2.0 WITH LLVM-exception + license_family: APACHE + size: 10680604 + timestamp: 1769057628944 +- conda: https://conda.anaconda.org/conda-forge/noarch/compiler-rt22_linux-64-22.1.5-hffcefe0_1.conda + sha256: 883cdcc5741870e04a4537617b32996fac28853ef006de127b25c44d5ec7bda4 + md5: a41fafed70aeda94b6bec525a7696d17 + constrains: + - compiler-rt >=9.0.1 + license: Apache-2.0 WITH LLVM-exception + license_family: APACHE + size: 47804643 + timestamp: 1778193418442 +- conda: https://conda.anaconda.org/conda-forge/noarch/compiler-rt22_osx-64-22.1.5-hcf80936_1.conda + sha256: 35f5b1d556215b4ebe6a810de2118d612ce0868e3bf15e69c47672252e057e86 + md5: b0a06100f6fad477e1d6570b7da4236b + constrains: + - compiler-rt >=9.0.1 + license: Apache-2.0 WITH LLVM-exception + license_family: APACHE + size: 10973170 + timestamp: 1778194905655 +- conda: https://conda.anaconda.org/conda-forge/noarch/compiler-rt_linux-64-19.1.7-hffcefe0_1.conda + sha256: 04466a6a7965ca1fa2fb1406ac0d9f2768a4b318220d78e8a404cd60f871e95e + md5: 3be6bac64e70a7cbae39ae3d13245d30 + depends: + - clang 19.1.7.* + constrains: + - compiler-rt 19.1.7 + - clangxx 19.1.7 + license: Apache-2.0 WITH LLVM-exception + license_family: APACHE + size: 47101560 + timestamp: 1757411362885 +- conda: https://conda.anaconda.org/conda-forge/noarch/compiler-rt_linux-64-20.1.8-hffcefe0_1.conda + sha256: 790aa3aea6bf79a9a0ef73c888bb5dc9b6782257727dcc63acd320366ee7f26b + md5: f8c27e527fa2a97c9fca43e367461b7f + depends: + - clang 20.1.8.* + constrains: + - clangxx 20.1.8 + - compiler-rt 20.1.8 + license: Apache-2.0 WITH LLVM-exception + license_family: APACHE + size: 49731196 + timestamp: 1757411421407 +- conda: https://conda.anaconda.org/conda-forge/noarch/compiler-rt_linux-64-21.1.8-ha770c72_1.conda + sha256: ba879743bae391ca774716a8db60c7b36c8c14fdc6f83535602ce303c27b985d + md5: 12fe6c056aec14f14ee8b5d38b8247f0 + depends: + - compiler-rt21_linux-64 21.1.8 hffcefe0_1 + constrains: + - clang 21.1.8 + license: Apache-2.0 WITH LLVM-exception + license_family: APACHE + size: 16197 + timestamp: 1769057142076 +- conda: https://conda.anaconda.org/conda-forge/noarch/compiler-rt_linux-64-22.1.5-ha770c72_1.conda + sha256: 5f77f3c85a131020fe4034fa59ebf9eda2f9bc150c4dbcba109db0364e7af5d5 + md5: 43f7066e889b3f37d533d02ae68bbeff + depends: + - compiler-rt22_linux-64 22.1.5 hffcefe0_1 + constrains: + - clang 22.1.5 + license: Apache-2.0 WITH LLVM-exception + license_family: APACHE + size: 16546 + timestamp: 1778193503167 +- conda: https://conda.anaconda.org/conda-forge/noarch/compiler-rt_osx-64-15.0.7-ha38d28d_2.conda + sha256: 284c749afd3a259e106e6d900ce91ddec637ea4a1f679fce2834d9c0f9a86d0f + md5: e9bea6ec0b203772581e5075d0ef629d + depends: + - clang 15.0.7.* + - clangxx 15.0.7.* + constrains: + - compiler-rt 15.0.7 + license: Apache-2.0 WITH LLVM-exception + license_family: APACHE + size: 11207050 + timestamp: 1701467222939 +- conda: https://conda.anaconda.org/conda-forge/noarch/compiler-rt_osx-64-16.0.6-ha38d28d_2.conda + sha256: 75270bd8e306967f6e1a8c17d14f2dfe76602a5c162088f3ea98034fe3d71e0c + md5: 7a46507edc35c6c8818db0adaf8d787f + depends: + - clang 16.0.6.* + - clangxx 16.0.6.* + constrains: + - compiler-rt 16.0.6 + license: Apache-2.0 WITH LLVM-exception + license_family: APACHE + size: 9895261 + timestamp: 1701467223753 +- conda: https://conda.anaconda.org/conda-forge/noarch/compiler-rt_osx-64-17.0.6-hf2b8a54_2.conda + sha256: bab564aff76e0c55a681f687dffb64282d643aa501c6848789071b1e29fdbce1 + md5: 98e6d83e484e42f6beebba4276e38145 + depends: + - clang 17.0.6.* + - clangxx 17.0.6.* + constrains: + - compiler-rt 17.0.6 + license: Apache-2.0 WITH LLVM-exception + license_family: APACHE + size: 10450866 + timestamp: 1725251223089 +- conda: https://conda.anaconda.org/conda-forge/noarch/compiler-rt_osx-64-18.1.8-h138dee1_2.conda + sha256: 35195a920e3dae8479d1e5295adf8003845ab9682747847a54585c9a2bdc6ad4 + md5: b457ba56dbaaa3e09b6ed2271f9cb1b3 + depends: + - clang 18.1.8.* + constrains: + - clangxx 18.1.8 + - compiler-rt 18.1.8 + license: Apache-2.0 WITH LLVM-exception + license_family: APACHE + size: 10231779 + timestamp: 1757436151261 +- conda: https://conda.anaconda.org/conda-forge/noarch/compiler-rt_osx-64-19.1.7-h138dee1_1.conda + sha256: e6effe89523fc6143819f7a68372b28bf0c176af5b050fe6cf75b62e9f6c6157 + md5: 32deecb68e11352deaa3235b709ddab2 + depends: + - clang 19.1.7.* + constrains: + - compiler-rt 19.1.7 + - clangxx 19.1.7 + license: Apache-2.0 WITH LLVM-exception + license_family: APACHE + size: 10425780 + timestamp: 1757412396490 +- conda: https://conda.anaconda.org/conda-forge/noarch/compiler-rt_osx-64-20.1.8-h138dee1_1.conda + sha256: 0ba19b579574909b75232c7797b85be313a5754bf646075bd5595c415488a8ef + md5: a3fd8937c6d67c0accbac072f5a275d2 + depends: + - clang 20.1.8.* + constrains: + - clangxx 20.1.8 + - compiler-rt 20.1.8 + license: Apache-2.0 WITH LLVM-exception + license_family: APACHE + size: 10803361 + timestamp: 1757412442272 +- conda: https://conda.anaconda.org/conda-forge/noarch/compiler-rt_osx-64-21.1.8-h694c41f_1.conda + sha256: e1a3d3aa7efa3a0e86bd9da4f3c5f2cfc2ae0d8ddc55b5746452f4fcd7cb1b19 + md5: 2d04fc7204569c8f46e06e8ce9ffcc66 + depends: + - compiler-rt21_osx-64 21.1.8 he0f92a2_1 + constrains: + - clang 21.1.8 + license: Apache-2.0 WITH LLVM-exception + license_family: APACHE + size: 16588 + timestamp: 1769057725003 +- conda: https://conda.anaconda.org/conda-forge/noarch/compiler-rt_osx-64-22.1.5-h694c41f_1.conda + sha256: c094ba939da9b77812724e22355692bcb16e8a1960454e36cb9a63b16f2d544e + md5: f9b0cdfd4b1d21f0b76970ecacfb10ce + depends: + - compiler-rt22_osx-64 22.1.5 hcf80936_1 + constrains: + - clang 22.1.5 + license: Apache-2.0 WITH LLVM-exception + license_family: APACHE + size: 16659 + timestamp: 1778194993003 +- conda: https://conda.anaconda.org/conda-forge/noarch/compiler-rt_osx-arm64-15.0.7-h3808999_2.conda + sha256: 12849acff759fbc1d436e0825adfd9184ee85e9592842f551995bd9c75a585f6 + md5: a84759c9fec4a1593ecc2774f94ab747 + depends: + - clang 15.0.7.* + - clangxx 15.0.7.* + constrains: + - compiler-rt 15.0.7 + license: Apache-2.0 WITH LLVM-exception + license_family: APACHE + size: 10701345 + timestamp: 1701467290116 +- conda: https://conda.anaconda.org/conda-forge/noarch/compiler-rt_osx-arm64-16.0.6-h3808999_2.conda + sha256: 61f1a10e6e8ec147f17c5e36cf1c2fe77ac6d1907b05443fa319fd59be20fa33 + md5: 8c7d77d888e1a218cccd9e82b1458ec6 + depends: + - clang 16.0.6.* + - clangxx 16.0.6.* + constrains: + - compiler-rt 16.0.6 + license: Apache-2.0 WITH LLVM-exception + license_family: APACHE + size: 9829914 + timestamp: 1701467293179 +- conda: https://conda.anaconda.org/conda-forge/noarch/compiler-rt_osx-arm64-17.0.6-h832e737_2.conda + sha256: 74d63f7f91a9482262d80490fafd39275121f4cb273f293e7d9fe91934837666 + md5: 58fd1fa30d8b0795f33a7e79893b11cc + depends: + - clang 17.0.6.* + - clangxx 17.0.6.* + constrains: + - compiler-rt 17.0.6 + license: Apache-2.0 WITH LLVM-exception + license_family: APACHE + size: 10369238 + timestamp: 1725251155195 +- conda: https://conda.anaconda.org/conda-forge/noarch/compiler-rt_osx-arm64-18.1.8-he32a8d3_2.conda + sha256: fd0e6d142d38ac54404fb8f8413fae181a2c58e7aca3f6304df58f03ab8df55b + md5: e30e8ab85b13f0cab4c345d7758d525c + depends: + - clang 18.1.8.* + constrains: + - compiler-rt 18.1.8 + - clangxx 18.1.8 + license: Apache-2.0 WITH LLVM-exception + license_family: APACHE + size: 10204065 + timestamp: 1757436348646 +- conda: https://conda.anaconda.org/conda-forge/noarch/compiler-rt_osx-arm64-19.1.7-he32a8d3_1.conda + sha256: 8c32a3db8adf18ed58197e8895ce4f24a83ed63c817512b9a26724753b116f2a + md5: 8d99c82e0f5fed6cc36fcf66a11e03f0 + depends: + - clang 19.1.7.* + constrains: + - compiler-rt 19.1.7 + - clangxx 19.1.7 + license: Apache-2.0 WITH LLVM-exception + license_family: APACHE + size: 10490535 + timestamp: 1757411851093 +- conda: https://conda.anaconda.org/conda-forge/noarch/kernel-headers_linux-64-4.18.0-he073ed8_9.conda + sha256: 41557eeadf641de6aeae49486cef30d02a6912d8da98585d687894afd65b356a + md5: 86d9cba083cd041bfbf242a01a7a1999 + constrains: + - sysroot_linux-64 ==2.28 + license: LGPL-2.0-or-later AND LGPL-2.0-or-later WITH exceptions AND GPL-2.0-or-later + license_family: GPL + size: 1278712 + timestamp: 1765578681495 +- conda: https://conda.anaconda.org/conda-forge/noarch/libcxx-headers-19.1.7-h707e725_2.conda + sha256: 36485e6807e03a4f15a8018ec982457a9de0a1318b4b49a44c5da75849dbe24f + md5: de91b5ce46dc7968b6e311f9add055a2 + depends: + - __unix + constrains: + - libcxx-devel 19.1.7 + license: Apache-2.0 WITH LLVM-exception + license_family: Apache + size: 830747 + timestamp: 1764647922410 +- conda: https://conda.anaconda.org/conda-forge/noarch/libcxx-headers-20.1.8-h707e725_3.conda + sha256: e6bbb58c0fe22ce1e6680a969bdfd05fc7b649c192707534d38c782d3a82bce2 + md5: 3db57f91c60623258287599641e974f7 + depends: + - __unix + constrains: + - libcxx-devel 20.1.8 + license: Apache-2.0 WITH LLVM-exception + license_family: Apache + size: 1282493 + timestamp: 1764631510271 +- conda: https://conda.anaconda.org/conda-forge/noarch/libcxx-headers-21.1.8-h707e725_3.conda + sha256: 35702bbe8e26658df7fd4d31af441c653922356d291d093abfc32bc4b65c7900 + md5: 7daa1a91c6d082f40c55ef41b74692d7 + depends: + - __unix + constrains: + - libcxx-devel 21.1.8 + license: Apache-2.0 WITH LLVM-exception + license_family: Apache + size: 1103738 + timestamp: 1771995481491 +- conda: https://conda.anaconda.org/conda-forge/noarch/libcxx-headers-22.1.5-h707e725_1.conda + sha256: aebe5d9d45bb61b64834e39cd86865ea043149af37fec698b4adff341ef08a74 + md5: ddbf7b15609299629cf5e859c1d33953 + depends: + - __unix + constrains: + - gxx_linux-64 >=14 + - clangxx >=19 + - gxx_osx-64 >=14 + - libcxx-devel 22.1.5 + - gxx_osx-arm64 >=14 + license: Apache-2.0 WITH LLVM-exception + license_family: Apache + size: 1176462 + timestamp: 1778191549544 +- conda: https://conda.anaconda.org/conda-forge/noarch/libgcc-devel_linux-64-14.3.0-hf649bbc_119.conda + sha256: e1815bb11d5abe886979e95889d84310d83d078d36a3567ca67cbf57a3876d88 + md5: 7d517e32d656a8880d98c0e4fc8ddc2c + depends: + - __unix + license: GPL-3.0-only WITH GCC-exception-3.1 + license_family: GPL + size: 3091520 + timestamp: 1778268364856 +- conda: https://conda.anaconda.org/conda-forge/noarch/libstdcxx-devel_linux-64-14.3.0-h9f08a49_119.conda + sha256: 1b4263aa5d8c8c659e8e38b66868f42867347e0c8941513ee77269afc00a5186 + md5: d1a866495b9654ccfef5392b8541dc58 + depends: + - __unix + license: GPL-3.0-only WITH GCC-exception-3.1 + license_family: GPL + size: 20199810 + timestamp: 1778268389428 +- conda: https://conda.anaconda.org/conda-forge/noarch/sdkroot_env_osx-64-26.0-h62b880e_7.conda + sha256: 7e7e2556978bc9bd9628c6e39138c684082320014d708fbca0c9050df98c0968 + md5: 68a978f77c0ba6ca10ce55e188a21857 + license: BSD-3-Clause + license_family: BSD + size: 4948 + timestamp: 1771434185960 +- conda: https://conda.anaconda.org/conda-forge/noarch/sdkroot_env_osx-arm64-26.0-ha3f98da_7.conda + sha256: fabfe031ede99898cb2b0b805f6c0d64fcc24ecdb444de3a83002d8135bf4804 + md5: 5f0ebbfea12d8e5bddff157e271fdb2f + license: BSD-3-Clause + license_family: BSD + size: 4971 + timestamp: 1771434195389 +- conda: https://conda.anaconda.org/conda-forge/noarch/sysroot_linux-64-2.28-h4ee821c_9.conda + sha256: c47299fe37aebb0fcf674b3be588e67e4afb86225be4b0d452c7eb75c086b851 + md5: 13dc3adbc692664cd3beabd216434749 + depends: + - __glibc >=2.28 + - kernel-headers_linux-64 4.18.0 he073ed8_9 + - tzdata + license: LGPL-2.0-or-later AND LGPL-2.0-or-later WITH exceptions AND GPL-2.0-or-later + license_family: GPL + size: 24008591 + timestamp: 1765578833462 +- conda: https://conda.anaconda.org/conda-forge/noarch/tzdata-2025c-hc9c84f9_1.conda + sha256: 1d30098909076af33a35017eed6f2953af1c769e273a0626a04722ac4acaba3c + md5: ad659d0a2b3e47e38d829aa8cad2d610 + license: LicenseRef-Public-Domain + size: 119135 + timestamp: 1767016325805 +- conda: https://conda.anaconda.org/conda-forge/osx-64/binutils-1.0.1-0.tar.bz2 + sha256: bb198bc7df6dcdd2f1344642000669a56585f3a32ea4ce30d330f20c9e7bd364 + md5: 81de342aeec55f3ba88cec426f084c12 + depends: + - cctools + - ld64 + license: BSD + size: 6151 + timestamp: 1549965667543 +- conda: https://conda.anaconda.org/conda-forge/osx-64/boost-cpp-1.85.0-hfcd56d9_4.conda + sha256: 3fb79279a972f125d3266a31196d871415467326a7514b1d8e2ad11ee432fcb2 + md5: aecfdb4c2f8805691f25c7a8b166a447 + depends: + - bzip2 >=1.0.8,<2.0a0 + - icu >=75.1,<76.0a0 + - libboost-devel 1.85.0 h2b186f8_4 + - libzlib >=1.3.1,<2.0a0 + - xz >=5.2.6,<6.0a0 + - zstd >=1.5.6,<1.6.0a0 + license: BSL-1.0 + size: 18323 + timestamp: 1722297553216 +- conda: https://conda.anaconda.org/conda-forge/osx-64/bzip2-1.0.8-h500dc9f_9.conda + sha256: 9f242f13537ef1ce195f93f0cc162965d6cc79da578568d6d8e50f70dd025c42 + md5: 4173ac3b19ec0a4f400b4f782910368b + depends: + - __osx >=10.13 + license: bzip2-1.0.6 + license_family: BSD + size: 133427 + timestamp: 1771350680709 +- conda: https://conda.anaconda.org/conda-forge/osx-64/c-ares-1.34.6-hb5e19a0_0.conda + sha256: 2f5bc0292d595399df0d168355b4e9820affc8036792d6984bd751fdda2bcaea + md5: fc9a153c57c9f070bebaa7eef30a8f17 + depends: + - __osx >=10.13 + license: MIT + license_family: MIT + size: 186122 + timestamp: 1765215100384 +- conda: https://conda.anaconda.org/conda-forge/osx-64/c-compiler-1.10.0-h09a7c41_0.conda + sha256: 6a3f6b72bf5ad154630f79bd600f6ccf0f5c6a4be5297e4831d63016f4220e62 + md5: 7b7c12e4774b83c18612c78073d12adc + depends: + - cctools >=949.0.1 + - clang_osx-64 18.* + - ld64 >=530 + - llvm-openmp + license: BSD-3-Clause + license_family: BSD + size: 6773 + timestamp: 1751115657381 +- conda: https://conda.anaconda.org/conda-forge/osx-64/c-compiler-1.11.0-h7a00415_0.conda + sha256: 2bd1cf3d26789b7e1d04e914ccd169bd618fceed68abf7b6a305266b88dcf861 + md5: 2b23ec416cef348192a5a17737ddee60 + depends: + - cctools >=949.0.1 + - clang_osx-64 19.* + - ld64 >=530 + - llvm-openmp + license: BSD-3-Clause + license_family: BSD + size: 6695 + timestamp: 1753098825695 +- conda: https://conda.anaconda.org/conda-forge/osx-64/c-compiler-1.6.0-h63c33a9_0.conda + sha256: fe43bbe1b7c809b618808123a662333c20417bc98ffa5dc7d6da23c3c8ec236b + md5: d7f3b8d3a85b4e7eded31adb611bb665 + depends: + - cctools >=949.0.1 + - clang_osx-64 15.* + - ld64 >=530 + - llvm-openmp + license: BSD + size: 6250 + timestamp: 1689097835926 +- conda: https://conda.anaconda.org/conda-forge/osx-64/c-compiler-1.7.0-h282daa2_1.conda + sha256: a8e2e2b121e61e3d6a67aa618602815211573e96477ab048176a831ae622bfaf + md5: d27411cb82bc1b76b9f487da6ae97f1d + depends: + - cctools >=949.0.1 + - clang_osx-64 16.* + - ld64 >=530 + - llvm-openmp + license: BSD-3-Clause + license_family: BSD + size: 6396 + timestamp: 1714575615177 +- conda: https://conda.anaconda.org/conda-forge/osx-64/c-compiler-1.8.0-hfc4bf79_1.conda + sha256: b5bff50c0792933c19bdf4c18b77c5aedabce4b01f86d3b68815534f3e9e3640 + md5: d6e3cf55128335736c8d4bb86e73c191 + depends: + - cctools >=949.0.1 + - clang_osx-64 17.* + - ld64 >=530 + - llvm-openmp + license: BSD-3-Clause + license_family: BSD + size: 6210 + timestamp: 1728985474611 +- conda: https://conda.anaconda.org/conda-forge/osx-64/cctools-1010.6-h40f6528_1.conda + sha256: 3e6ab1eb84f55df432af6b1893067c0dfa86e312c04d91824b199c125cf729e1 + md5: 7e7eb6bef28acef1112673443a8d692b + depends: + - cctools_osx-64 1010.6 heaa7f0c_1 + - ld64 951.9 ha02d983_1 + - libllvm16 >=16.0.6,<16.1.0a0 + license: APSL-2.0 + license_family: Other + size: 21588 + timestamp: 1726771695380 +- conda: https://conda.anaconda.org/conda-forge/osx-64/cctools-1010.6-hb1cbab1_3.conda + sha256: 90e542a589b8d1cc0f2fe569d968a8113e42c45af70194651087132468ccd80d + md5: 0b32b71ea0ded61f53ac0988e7162a1c + depends: + - cctools_osx-64 1010.6 h0799949_3 + - ld64 951.9 h0a3eb4e_3 + - libllvm17 >=17.0.6,<17.1.0a0 + license: APSL-2.0 + license_family: Other + size: 21300 + timestamp: 1738621005037 +- conda: https://conda.anaconda.org/conda-forge/osx-64/cctools-1021.4-ha66f10e_0.conda + sha256: 1af7ea0c54e37ca1587c2d4e9c3a5add8dfd9bc4ff929f70a4330328f0c145ac + md5: 37619e89a65bb3688c67d82fd8645afc + depends: + - cctools_osx-64 1021.4 h508880d_0 + - ld64 954.16 h4e51db5_0 + - libllvm18 >=18.1.8,<18.2.0a0 + license: APSL-2.0 + license_family: Other + size: 21521 + timestamp: 1752818999237 +- conda: https://conda.anaconda.org/conda-forge/osx-64/cctools-1030.6.3-llvm19_1_h67a6458_4.conda + sha256: 0563fb193edde8002059e1a7fc32b23b5bd48389d9abdf5e49ff81e7490da722 + md5: 7b4852df7d4ed4e45bcb70c5d4b08cd0 + depends: + - cctools_impl_osx-64 1030.6.3 llvm19_1_h7d82c7c_4 + - ld64 956.6 llvm19_1_hc3792c1_4 + - libllvm19 >=19.1.7,<19.2.0a0 + license: APSL-2.0 + license_family: Other + size: 24262 + timestamp: 1768852850946 +- conda: https://conda.anaconda.org/conda-forge/osx-64/cctools-1030.6.3-llvm20_1_h8f84d09_4.conda + sha256: 7265c22396c12f72d580bdb304dee046927dc4cbf5b042cf46c2be0c326344da + md5: fa04761b51a9890506e9a1b14110c064 + depends: + - cctools_impl_osx-64 1030.6.3 llvm20_1_he6ac7bf_4 + - ld64 956.6 llvm20_1_h2b71b23_4 + - libllvm20 >=20.1.8,<20.2.0a0 + license: APSL-2.0 + license_family: Other + size: 24247 + timestamp: 1768852718486 +- conda: https://conda.anaconda.org/conda-forge/osx-64/cctools-1030.6.3-llvm21_1_he201b2c_4.conda + sha256: b4dc25c7bab333e2626a5c1e92cfcbe0e9085ccd2ae8bf762c3232d77529f91a + md5: e76fb094b00cad515637029a4bcf3e8b + depends: + - cctools_impl_osx-64 1030.6.3 llvm21_1_h38679aa_4 + - ld64 956.6 llvm21_1_h2eed689_4 + - libllvm21 >=21.1.8,<21.2.0a0 + license: APSL-2.0 + license_family: Other + size: 24255 + timestamp: 1768852747139 +- conda: https://conda.anaconda.org/conda-forge/osx-64/cctools-1030.6.3-llvm22_1_h0a1bb1c_4.conda + sha256: e0b732ed52bcfa98f90fe61ef87fc47cb39222351ab2e730c05f262d29621b51 + md5: 257743cb85eb6cb4808f5f1fc18a94c8 + depends: + - cctools_impl_osx-64 1030.6.3 llvm22_1_h8fe25a2_4 + - ld64 956.6 llvm22_1_hc399b6d_4 + - libllvm22 >=22.1.0,<22.2.0a0 + license: APSL-2.0 + license_family: Other + size: 24426 + timestamp: 1772019098551 +- conda: https://conda.anaconda.org/conda-forge/osx-64/cctools-973.0.1-hd9ad811_15.conda + sha256: 6fc0e86e24687cde3476e04f001ac1edf5813c0caa15b72c913b660533428987 + md5: 00374d616829d1e4d2266e571147848a + depends: + - cctools_osx-64 973.0.1 habff3f6_15 + - ld64 609 ha91a046_15 + - libllvm15 >=15.0.7,<15.1.0a0 + license: APSL-2.0 + license_family: Other + size: 21917 + timestamp: 1697075797642 +- conda: https://conda.anaconda.org/conda-forge/osx-64/cctools_impl_osx-64-1030.6.3-llvm19_1_h7d82c7c_4.conda + sha256: 43928e68f59a8e4135d20df702cf97073b07a162979a30258d93f6e44b1220db + md5: bb274e464cf9479e0a6da2cf2e33bc16 + depends: + - __osx >=10.13 + - ld64_osx-64 >=956.6,<956.7.0a0 + - libcxx + - libllvm19 >=19.1.7,<19.2.0a0 + - libzlib >=1.3.1,<2.0a0 + - llvm-tools 19.1.* + - sigtool-codesign + constrains: + - cctools 1030.6.3.* + - clang 19.1.* + - ld64 956.6.* + license: APSL-2.0 + license_family: Other + size: 745672 + timestamp: 1768852809822 +- conda: https://conda.anaconda.org/conda-forge/osx-64/cctools_impl_osx-64-1030.6.3-llvm20_1_he6ac7bf_4.conda + sha256: 57cbbc7e294e2ec89be215d1955fa1c2499ccd59569171d33ddcf9e8ab4c9d3b + md5: c22c6b3e93e65ca72cd5e8a2eca90371 + depends: + - __osx >=10.13 + - ld64_osx-64 >=956.6,<956.7.0a0 + - libcxx + - libllvm20 >=20.1.8,<20.2.0a0 + - libzlib >=1.3.1,<2.0a0 + - llvm-tools 20.1.* + - sigtool-codesign + constrains: + - cctools 1030.6.3.* + - ld64 956.6.* + - clang 20.1.* + license: APSL-2.0 + license_family: Other + size: 745520 + timestamp: 1768852675139 +- conda: https://conda.anaconda.org/conda-forge/osx-64/cctools_impl_osx-64-1030.6.3-llvm21_1_h38679aa_4.conda + sha256: 61414b57cda2ba3a9aee4ef130d2d1f32971283cdf396a66a762133b7f98ddff + md5: 5b725a786263febaa1a85bd10b59300d + depends: + - __osx >=10.13 + - ld64_osx-64 >=956.6,<956.7.0a0 + - libcxx + - libllvm21 >=21.1.8,<21.2.0a0 + - libzlib >=1.3.1,<2.0a0 + - llvm-tools 21.1.* + - sigtool-codesign + constrains: + - clang 21.1.* + - cctools 1030.6.3.* + - ld64 956.6.* + license: APSL-2.0 + license_family: Other + size: 745422 + timestamp: 1768852714605 +- conda: https://conda.anaconda.org/conda-forge/osx-64/cctools_impl_osx-64-1030.6.3-llvm22_1_h8fe25a2_4.conda + sha256: 9e003c254b6c1880e6c8f2d777b20d837db2b7aff161454d857693692fd862dd + md5: 5d0b3b0b085354afc3b53c424e40121b + depends: + - __osx >=11.0 + - ld64_osx-64 >=956.6,<956.7.0a0 + - libcxx + - libllvm22 >=22.1.0,<22.2.0a0 + - libzlib >=1.3.1,<2.0a0 + - llvm-tools 22.1.* + - sigtool-codesign + constrains: + - clang 22.1.* + - cctools 1030.6.3.* + - ld64 956.6.* + license: APSL-2.0 + license_family: Other + size: 744001 + timestamp: 1772019049683 +- conda: https://conda.anaconda.org/conda-forge/osx-64/cctools_osx-64-1010.6-h0799949_3.conda + sha256: d90b7727d27a2c33849922a84fec25c9704e2a60286018d89bbf2dd7f08618ce + md5: bcd7ebdcf20d8996afd6e65cdf53dd2e + depends: + - __osx >=10.13 + - ld64_osx-64 >=951.9,<951.10.0a0 + - libcxx + - libllvm17 >=17.0.6,<17.1.0a0 + - libzlib >=1.3.1,<2.0a0 + - llvm-tools 17.0.* + - sigtool + constrains: + - cctools 1010.6.* + - clang 17.0.* + - ld64 951.9.* + license: APSL-2.0 + license_family: Other + size: 1121596 + timestamp: 1738620968020 +- conda: https://conda.anaconda.org/conda-forge/osx-64/cctools_osx-64-1010.6-heaa7f0c_1.conda + sha256: 2769f7bde9888d100a9997da14aabef345a8ee0850fe2c90e2ca2306e7fe79bd + md5: eaedf7d6a7b93b35381f7a0b4663922a + depends: + - __osx >=10.13 + - ld64_osx-64 >=951.9,<951.10.0a0 + - libcxx + - libllvm16 >=16.0.6,<16.1.0a0 + - libzlib >=1.3.1,<2.0a0 + - llvm-tools 16.0.* + - sigtool + constrains: + - ld64 951.9.* + - cctools 1010.6.* + - clang 16.0.* + license: APSL-2.0 + license_family: Other + size: 1099432 + timestamp: 1726771664399 +- conda: https://conda.anaconda.org/conda-forge/osx-64/cctools_osx-64-1021.4-h508880d_0.conda + sha256: 1fd96dc9abd1789d07e203ffac131edbbe773baeb8fc4038dcaf500f22c20c78 + md5: 4813f891c9cf3901d3c9c091000c6569 + depends: + - __osx >=10.13 + - ld64_osx-64 >=954.16,<954.17.0a0 + - libcxx + - libllvm18 >=18.1.8,<18.2.0a0 + - libzlib >=1.3.1,<2.0a0 + - llvm-tools 18.1.* + - sigtool + constrains: + - cctools 1021.4.* + - clang 18.1.* + - ld64 954.16.* + license: APSL-2.0 + license_family: Other + size: 792335 + timestamp: 1752818967832 +- conda: https://conda.anaconda.org/conda-forge/osx-64/cctools_osx-64-1030.6.3-llvm19_1_h8f0d4bb_4.conda + sha256: 258f7bde2b5f664f60130d0066f5cee96a308d946e95bacc82b44b76c776124a + md5: fdef8a054844f72a107dfd888331f4a7 + depends: + - cctools_impl_osx-64 1030.6.3 llvm19_1_h7d82c7c_4 + - ld64_osx-64 956.6 llvm19_1_hcae3351_4 + constrains: + - cctools 1030.6.3.* + license: APSL-2.0 + license_family: Other + size: 23193 + timestamp: 1768852854819 +- conda: https://conda.anaconda.org/conda-forge/osx-64/cctools_osx-64-1030.6.3-llvm20_1_h8f0d4bb_4.conda + sha256: fa65625529b0946585406775871564ec2b4cd85dafa02b10ae57ce4c38cf72a1 + md5: 648562d804d08de7bba258b9fd839598 + depends: + - cctools_impl_osx-64 1030.6.3 llvm20_1_he6ac7bf_4 + - ld64_osx-64 956.6 llvm20_1_hb7237e5_4 + constrains: + - cctools 1030.6.3.* + license: APSL-2.0 + license_family: Other + size: 23244 + timestamp: 1768852722653 +- conda: https://conda.anaconda.org/conda-forge/osx-64/cctools_osx-64-1030.6.3-llvm21_1_h8f0d4bb_4.conda + sha256: 7bb0c4cd73efba16fd80fcf2cf5b5968bc55cb97d2897fabcb799ffd70cf6149 + md5: 9f01f7163ac5ad98420c2de4a64e63e2 + depends: + - cctools_impl_osx-64 1030.6.3 llvm21_1_h38679aa_4 + - ld64_osx-64 956.6 llvm21_1_h41cbea9_4 + constrains: + - cctools 1030.6.3.* + license: APSL-2.0 + license_family: Other + size: 23248 + timestamp: 1768852750665 +- conda: https://conda.anaconda.org/conda-forge/osx-64/cctools_osx-64-1030.6.3-llvm22_1_h0a1bb1c_4.conda + sha256: e0eefd2d7b4c8434b1b97ddf51780601e4ea5c964bb053775213868412367bbe + md5: d97b4a7d3a90d1cd45ff42ee353efadc + depends: + - cctools_impl_osx-64 1030.6.3 llvm22_1_h8fe25a2_4 + - ld64_osx-64 956.6 llvm22_1_h163eae7_4 + constrains: + - cctools 1030.6.3.* + license: APSL-2.0 + license_family: Other + size: 23441 + timestamp: 1772019105060 +- conda: https://conda.anaconda.org/conda-forge/osx-64/cctools_osx-64-973.0.1-habff3f6_15.conda + sha256: ca00afdafb22d6c363921f1c81b35fabd9b7eefee7e1ea2ad4f0fe920b63d035 + md5: 015a19b3900b9fce20a48551e66f7699 + depends: + - ld64_osx-64 >=609,<610.0a0 + - libcxx + - libllvm15 >=15.0.7,<15.1.0a0 + - libzlib >=1.2.13,<2.0.0a0 + - sigtool + constrains: + - cctools 973.0.1.* + - ld64 609.* + - clang 15.0.* + license: APSL-2.0 + license_family: Other + size: 1116869 + timestamp: 1697075736696 +- conda: https://conda.anaconda.org/conda-forge/osx-64/clang-15-15.0.7-default_h7151d67_5.conda + sha256: 9008b16315ba79e111a0294b3c39f0e1c76c26ceeee903d0a94cc5e04ac428e6 + md5: 26b2b461c106c8bb59fab6a19cc09cd0 + depends: + - libclang-cpp15 15.0.7 default_h7151d67_5 + - libcxx >=16.0.6 + - libllvm15 >=15.0.7,<15.1.0a0 + constrains: + - llvm-tools 15.0.7 + - clangxx 15.0.7 + - clangdev 15.0.7 + - clang-tools 15.0.7 + license: Apache-2.0 WITH LLVM-exception + license_family: Apache + size: 799303 + timestamp: 1711067239423 +- conda: https://conda.anaconda.org/conda-forge/osx-64/clang-15.0.7-hdae98eb_5.conda + sha256: 1dbb1f4094957baf3af77d05b32b305215628f096a34d8e0673708411150870e + md5: fe353fe9ae77675f80e084b54ae93752 + depends: + - clang-15 15.0.7 default_h7151d67_5 + constrains: + - clang-tools 15.0.7.* + - llvm 15.0.7.* + - llvm-tools 15.0.7.* + - llvmdev 15.0.7.* + license: Apache-2.0 WITH LLVM-exception + license_family: Apache + size: 133570 + timestamp: 1711067396346 +- conda: https://conda.anaconda.org/conda-forge/osx-64/clang-16-16.0.6-default_h4651f56_15.conda + sha256: 53fefb4b47993b9cfc1b7d2f85fe66b8a62e312658eaa23f054b2d5e31bb529e + md5: 696148e51e076dea8f4d39b60280f933 + depends: + - __osx >=10.13 + - libclang-cpp16 16.0.6 default_h4651f56_15 + - libcxx >=16.0.6 + - libllvm16 >=16.0.6,<16.1.0a0 + constrains: + - clang-tools 16.0.6 + - clangxx 16.0.6 + - clangdev 16.0.6 + - llvm-tools 16.0.6 + license: Apache-2.0 WITH LLVM-exception + license_family: Apache + size: 762659 + timestamp: 1756166994264 +- conda: https://conda.anaconda.org/conda-forge/osx-64/clang-16.0.6-default_h510d6ca_15.conda + sha256: 377762f985606a4a5104cf7810acf0e0371bca30eef66b99cdfad92dd359f72a + md5: 6a57e5f291f44a7b1360372db400d672 + depends: + - clang-16 16.0.6 default_h4651f56_15 + constrains: + - clang-tools 16.0.6.* + - llvm 16.0.6.* + - llvm-tools 16.0.6.* + - llvmdev 16.0.6.* + license: Apache-2.0 WITH LLVM-exception + license_family: Apache + size: 92070 + timestamp: 1756167200107 +- conda: https://conda.anaconda.org/conda-forge/osx-64/clang-17-17.0.6-default_h3571c67_8.conda + sha256: 2d4dbe76c347b9ae021aaae42496302816f47170ed35f506e13a428752c49ab2 + md5: 6dc3cfb1dbdb85524153193d69e941a2 + depends: + - __osx >=10.13 + - libclang-cpp17 17.0.6 default_h3571c67_8 + - libcxx >=17.0.6 + - libllvm17 >=17.0.6,<17.1.0a0 + constrains: + - clangxx 17.0.6 + - llvm-tools 17.0.6 + - clangdev 17.0.6 + - clang-tools 17.0.6 + license: Apache-2.0 WITH LLVM-exception + license_family: Apache + size: 717592 + timestamp: 1738083788549 +- conda: https://conda.anaconda.org/conda-forge/osx-64/clang-17.0.6-default_h576c50e_8.conda + sha256: 97617af54f08a25ecb90a638035730789c703c221b4e3376e4220064bb80147f + md5: b9b6672f537d05c6fd1d9245e1bf1930 + depends: + - clang-17 17.0.6 default_h3571c67_8 + license: Apache-2.0 WITH LLVM-exception + license_family: Apache + size: 24069 + timestamp: 1738083883698 +- conda: https://conda.anaconda.org/conda-forge/osx-64/clang-18-18.1.8-default_h9399c5b_18.conda + sha256: dffb113c960009675c28de42655046dab50fe82011af47ebbd67c41e3cc53fdb + md5: 2f1990f25bf87428c38f11ccdced6122 + depends: + - __osx >=11.0 + - libclang-cpp18.1 18.1.8 default_h9399c5b_18 + - libcxx >=18.1.8 + - libllvm18 >=18.1.8,<18.2.0a0 + license: Apache-2.0 WITH LLVM-exception + license_family: Apache + size: 830042 + timestamp: 1773506226781 +- conda: https://conda.anaconda.org/conda-forge/osx-64/clang-18.1.8-default_h1323312_18.conda + sha256: 35e2d1c7c966d0cfdcaa6b7144f83ca3afd689cf7ad6a5153ba8f3a6157a9aba + md5: 068e1fba667df2e83e154f0ebf488dfc + depends: + - clang-18 18.1.8 default_h9399c5b_18 + license: Apache-2.0 WITH LLVM-exception + license_family: Apache + size: 93720 + timestamp: 1773506372704 +- conda: https://conda.anaconda.org/conda-forge/osx-64/clang-19-19.1.7-default_h9399c5b_9.conda + sha256: bdc69de3f6fdf17c4a86b5bdf2072ac7baf9b69734ee2f573822b8c46fe64b39 + md5: 664c48272c72fb25f3b6e1031ebc6a3f + depends: + - __osx >=11.0 + - libclang-cpp19.1 19.1.7 default_h9399c5b_9 + - libcxx >=19.1.7 + - libllvm19 >=19.1.7,<19.2.0a0 + license: Apache-2.0 WITH LLVM-exception + license_family: Apache + size: 770717 + timestamp: 1776984724776 +- conda: https://conda.anaconda.org/conda-forge/osx-64/clang-19.1.7-default_h1323312_9.conda + sha256: c4b6b048f5666b12c6a1710181c639240c31763dd9b9d540709cf9e37b8a32db + md5: 3435d8341fc397a5c6a8676abd28e2ee + depends: + - cctools + - clang-19 19.1.7.* default_* + - clang_impl_osx-64 19.1.7 default_ha1a018a_9 + - ld64 + - ld64_osx-64 * llvm19_1_* + license: Apache-2.0 WITH LLVM-exception + license_family: Apache + size: 24913 + timestamp: 1776984881267 +- conda: https://conda.anaconda.org/conda-forge/osx-64/clang-20-20.1.8-default_h9399c5b_15.conda + sha256: 2da6af57e1ed653e40c5f903bfae9ebefc0564c623183bff06daf00742142031 + md5: 4aa51e45d86f88ea21f0a7bdc8004822 + depends: + - __osx >=11.0 + - libclang-cpp20.1 20.1.8 default_h9399c5b_15 + - libcxx >=20.1.8 + - libllvm20 >=20.1.8,<20.2.0a0 + license: Apache-2.0 WITH LLVM-exception + license_family: Apache + size: 842663 + timestamp: 1776985646057 +- conda: https://conda.anaconda.org/conda-forge/osx-64/clang-20.1.8-default_cfg_h93fe8ef_15.conda + sha256: 282a9b8fbf7e8e380d43ec0bc761239597c6baae0bcf6554988d80c86d9303e4 + md5: e234951118079ef69591b49d9ff030fe + depends: + - cctools + - clang-20 20.1.8.* default_* + - clang_impl_osx-64 20.1.8 default_cfg_h91eacd1_15 + - ld64 + - ld64_osx-64 * llvm20_1_* + license: Apache-2.0 WITH LLVM-exception + license_family: Apache + size: 70904 + timestamp: 1776985861544 +- conda: https://conda.anaconda.org/conda-forge/osx-64/clang-21-21.1.8-default_h447f92f_4.conda + sha256: b771c2059305f625f26324066dfcda95acdd2ee827e6ca47b188a2119fc41c81 + md5: f3ea146eab6bb156efc7b63e60cfe0b9 + depends: + - __osx >=10.13 + - compiler-rt21 21.1.8.* + - libclang-cpp21.1 21.1.8 default_hd70426c_4 + - libcxx >=21.1.8 + - libllvm21 >=21.1.8,<21.2.0a0 + license: Apache-2.0 WITH LLVM-exception + license_family: Apache + size: 816651 + timestamp: 1777006134076 +- conda: https://conda.anaconda.org/conda-forge/osx-64/clang-21.1.8-default_cfg_h93fe8ef_4.conda + sha256: 43fd8c6ce23f605aafc38baf47488bda02099cf801040610034c03f22a05f863 + md5: ff591a67b09cb85cc895ac66a09dc1a3 + depends: + - cctools + - clang-21 21.1.8 default_h447f92f_4 + - clang_impl_osx-64 21.1.8 default_he9bf3b8_4 + - ld64 + - ld64_osx-64 * llvm21_1_* + - llvm-openmp >=21.1.8 + - llvm-tools 21.1.8.* + license: Apache-2.0 WITH LLVM-exception + license_family: Apache + size: 28868 + timestamp: 1777006346967 +- conda: https://conda.anaconda.org/conda-forge/osx-64/clang-22-22.1.5-default_h3b8fe2e_1.conda + sha256: 507be37986b4f5e4d7ce0e167d0065f6cf269449f4748243ac749ba206f6adfe + md5: b8d67341091d9467449c775fb12ed114 + depends: + - __osx >=11.0 + - compiler-rt22 22.1.5.* + - libclang-cpp22.1 22.1.5 default_h9399c5b_1 + - libcxx >=22.1.5 + - libllvm22 >=22.1.5,<22.2.0a0 + license: Apache-2.0 WITH LLVM-exception + license_family: Apache + size: 820698 + timestamp: 1778481969997 +- conda: https://conda.anaconda.org/conda-forge/osx-64/clang-22.1.5-default_cfg_h93fe8ef_1.conda + sha256: 54a5b8af63913984d21b0287697c89eee01f5aba9cdb39c25dfa20eea6695745 + md5: e9303305cf510363f2d37a723645eb0b + depends: + - cctools + - clang-22 22.1.5 default_h3b8fe2e_1 + - clang_impl_osx-64 22.1.5 default_he9bf3b8_1 + - ld64 + - ld64_osx-64 * llvm22_1_* + - llvm-openmp >=22.1.5 + - llvm-tools 22.1.5.* + license: Apache-2.0 WITH LLVM-exception + license_family: Apache + size: 28713 + timestamp: 1778482209158 +- conda: https://conda.anaconda.org/conda-forge/osx-64/clang-format-15-15.0.7-default_h7151d67_5.conda + sha256: c6575852cb852854cec11b5b6f358fcc7cffb691e38f069810ddebf95e729cc5 + md5: db20ca9b165f5adc7ea8d6aca9e01fb6 + depends: + - libclang-cpp15 >=15.0.7,<15.1.0a0 + - libcxx >=16.0.6 + - libllvm15 >=15.0.7,<15.1.0a0 + license: Apache-2.0 WITH LLVM-exception + license_family: Apache + size: 170049 + timestamp: 1711067779396 +- conda: https://conda.anaconda.org/conda-forge/osx-64/clang-format-15.0.7-default_h7151d67_5.conda + sha256: c6c4de5f347d8051ca90afa5e03634626b1a878333ecf4ff794de1e623d5599b + md5: 016926c4f07cac9163a906c3bbe279db + depends: + - clang-format-15 15.0.7 default_h7151d67_5 + - libclang-cpp15 >=15.0.7,<15.1.0a0 + - libcxx >=16.0.6 + - libllvm15 >=15.0.7,<15.1.0a0 + license: Apache-2.0 WITH LLVM-exception + license_family: Apache + size: 133795 + timestamp: 1711067897513 +- conda: https://conda.anaconda.org/conda-forge/osx-64/clang-format-16-16.0.6-default_h4651f56_15.conda + sha256: 4881cded9d4551050a04184f380b4bb50d75e4c7868136b4d9f7d96481e8affb + md5: 79ce8c25f88855de6a6acc2c8a31430b + depends: + - __osx >=10.13 + - libclang-cpp16 >=16.0.6,<16.1.0a0 + - libcxx >=16.0.6 + - libllvm16 >=16.0.6,<16.1.0a0 + license: Apache-2.0 WITH LLVM-exception + license_family: Apache + size: 128881 + timestamp: 1756167683330 +- conda: https://conda.anaconda.org/conda-forge/osx-64/clang-format-16.0.6-default_h4651f56_15.conda + sha256: a6d474ca999b1a0fabc34c9e92a68a6c4ef2eaf6c4a86a0881c6c4b14c22884f + md5: 4f39be6579f9ec9afad0b15fec159fc0 + depends: + - __osx >=10.13 + - clang-format-16 16.0.6 default_h4651f56_15 + - libclang-cpp16 >=16.0.6,<16.1.0a0 + - libcxx >=16.0.6 + - libllvm16 >=16.0.6,<16.1.0a0 + license: Apache-2.0 WITH LLVM-exception + license_family: Apache + size: 92323 + timestamp: 1756167820703 +- conda: https://conda.anaconda.org/conda-forge/osx-64/clang-format-17-17.0.6-default_h3571c67_8.conda + sha256: 3dd37056855c850b84811379e27b61fd2030e8cc11453d91e30670d010f840ae + md5: 63fe319b1144bfe3ac3f365152b43a54 + depends: + - __osx >=10.13 + - libclang-cpp17 >=17.0.6,<17.1.0a0 + - libcxx >=17.0.6 + - libllvm17 >=17.0.6,<17.1.0a0 + license: Apache-2.0 WITH LLVM-exception + license_family: Apache + size: 60290 + timestamp: 1738084209756 +- conda: https://conda.anaconda.org/conda-forge/osx-64/clang-format-17.0.6-default_h3571c67_8.conda + sha256: ab346bd7447e32bc29f1264092e19b08b94401934b61c4bab7cec889cb9a9c22 + md5: 05b8708d02d0a4221194252c51846b17 + depends: + - __osx >=10.13 + - clang-format-17 17.0.6 default_h3571c67_8 + - libclang-cpp17 >=17.0.6,<17.1.0a0 + - libcxx >=17.0.6 + - libllvm17 >=17.0.6,<17.1.0a0 + license: Apache-2.0 WITH LLVM-exception + license_family: Apache + size: 24366 + timestamp: 1738084296018 +- conda: https://conda.anaconda.org/conda-forge/osx-64/clang-format-18-18.1.8-default_h9399c5b_18.conda + sha256: 44c298032854a9efcca006cdfdcc10b55485fed2b51a490862c096ba461c54f9 + md5: 7d2b84004d44d65fc060eb9ac0e34991 + depends: + - __osx >=11.0 + - libclang-cpp18.1 >=18.1.8,<18.2.0a0 + - libcxx >=18.1.8 + - libllvm18 >=18.1.8,<18.2.0a0 + license: Apache-2.0 WITH LLVM-exception + license_family: Apache + size: 132399 + timestamp: 1773506747090 +- conda: https://conda.anaconda.org/conda-forge/osx-64/clang-format-18.1.8-default_h9399c5b_18.conda + sha256: cdaa5af9dfaceb0fe79d32724d9ee9538a1862eae188c76cf5a625ca648edc8a + md5: 559ad287bba43c450f4b54323fe930aa + depends: + - __osx >=11.0 + - clang-format-18 18.1.8 default_h9399c5b_18 + - libclang-cpp18.1 >=18.1.8,<18.2.0a0 + - libcxx >=18.1.8 + - libllvm18 >=18.1.8,<18.2.0a0 + license: Apache-2.0 WITH LLVM-exception + license_family: Apache + size: 93804 + timestamp: 1773506848165 +- conda: https://conda.anaconda.org/conda-forge/osx-64/clang-format-19-19.1.7-default_h9399c5b_9.conda + sha256: d01967bedb860651baff5883cbcb0b670a913766bd74dc1bb3eb70d2b5d564d8 + md5: f21f3d26a403e21f7d67c66dbb434a74 + depends: + - __osx >=11.0 + - libclang-cpp19.1 >=19.1.7,<19.2.0a0 + - libcxx >=19.1.7 + - libllvm19 >=19.1.7,<19.2.0a0 + license: Apache-2.0 WITH LLVM-exception + license_family: Apache + size: 63787 + timestamp: 1776984765836 +- conda: https://conda.anaconda.org/conda-forge/osx-64/clang-format-19.1.7-default_h9399c5b_9.conda + sha256: 1955373adfe4e20dc2d3c0671f0d75f1e206fd0a4b58216c2bec58a8f2bf9c12 + md5: 2fe175649f129b544efa4f330492e3c5 + depends: + - __osx >=11.0 + - clang-format-19 19.1.7 default_h9399c5b_9 + - libclang-cpp19.1 >=19.1.7,<19.2.0a0 + - libcxx >=19.1.7 + - libllvm19 >=19.1.7,<19.2.0a0 + license: Apache-2.0 WITH LLVM-exception + license_family: Apache + size: 25137 + timestamp: 1776984852644 +- conda: https://conda.anaconda.org/conda-forge/osx-64/clang-format-20-20.1.8-default_h9399c5b_15.conda + sha256: 88b01a21b4e30beff155a77967ddbfee1e521db02c4981290bfe3b4a0d2ea05d + md5: a1b91f6cf89cae3aba9bd29f28ee0027 + depends: + - __osx >=11.0 + - libclang-cpp20.1 >=20.1.8,<20.2.0a0 + - libcxx >=20.1.8 + - libllvm20 >=20.1.8,<20.2.0a0 + license: Apache-2.0 WITH LLVM-exception + license_family: Apache + size: 109969 + timestamp: 1776985733877 +- conda: https://conda.anaconda.org/conda-forge/osx-64/clang-format-20.1.8-default_h9399c5b_15.conda + sha256: 5d2bb575e3321fa0f0203737053d8e178b17a8cbc59b7594ca95787013c8749e + md5: fb785cabe11daaa7202cb043745a9ded + depends: + - __osx >=11.0 + - clang-format-20 20.1.8 default_h9399c5b_15 + - libclang-cpp20.1 >=20.1.8,<20.2.0a0 + - libcxx >=20.1.8 + - libllvm20 >=20.1.8,<20.2.0a0 + license: Apache-2.0 WITH LLVM-exception + license_family: Apache + size: 71040 + timestamp: 1776985818025 +- conda: https://conda.anaconda.org/conda-forge/osx-64/clang-format-21-21.1.8-default_hd70426c_4.conda + sha256: 3ae8415a29cb4d35e18118b05907426cdb22bfbb5fd32a1d78c0f980ef69ccd1 + md5: 4bd77bdfc65eec43909b83f8c9081cd3 + depends: + - __osx >=10.13 + - libclang-cpp21.1 >=21.1.8,<21.2.0a0 + - libcxx >=21.1.8 + - libllvm21 >=21.1.8,<21.2.0a0 + license: Apache-2.0 WITH LLVM-exception + license_family: Apache + size: 67817 + timestamp: 1777006752501 +- conda: https://conda.anaconda.org/conda-forge/osx-64/clang-format-21.1.8-default_hd70426c_4.conda + sha256: 1e907daa686e3393055f822633b327406a0c28a72fc080f7157c25b49c4bbec8 + md5: 6ad00abc3bec640095201e8a5a35765f + depends: + - __osx >=10.13 + - clang-format-21 21.1.8 default_hd70426c_4 + - libclang-cpp21.1 >=21.1.8,<21.2.0a0 + - libcxx >=21.1.8 + - libllvm21 >=21.1.8,<21.2.0a0 + license: Apache-2.0 WITH LLVM-exception + license_family: Apache + size: 28764 + timestamp: 1777006854136 +- conda: https://conda.anaconda.org/conda-forge/osx-64/clang-format-22-22.1.5-default_h9399c5b_1.conda + sha256: 8c7c2e1d1a57c5944b1698d06bb42c68c689b65d9999ea7dc50afcbe7e7a2014 + md5: 62a45b219ccf2388c230826dfa026569 + depends: + - __osx >=11.0 + - libclang-cpp22.1 >=22.1.5,<22.2.0a0 + - libcxx >=22.1.5 + - libllvm22 >=22.1.5,<22.2.0a0 + license: Apache-2.0 WITH LLVM-exception + license_family: Apache + size: 65366 + timestamp: 1778483214746 +- conda: https://conda.anaconda.org/conda-forge/osx-64/clang-format-22.1.5-default_h9399c5b_1.conda + sha256: 2dd3b6a94b8b5f386e7c27252c3d45dbc957f111212eac2550ac95d15772e3dd + md5: 86bef752fa0c1a686254326309974461 + depends: + - __osx >=11.0 + - clang-format-22 22.1.5 default_h9399c5b_1 + - libclang-cpp22.1 >=22.1.5,<22.2.0a0 + - libcxx >=22.1.5 + - libllvm22 >=22.1.5,<22.2.0a0 + license: Apache-2.0 WITH LLVM-exception + license_family: Apache + size: 28526 + timestamp: 1778483416844 +- conda: https://conda.anaconda.org/conda-forge/osx-64/clang-scan-deps-22.1.5-default_h9399c5b_1.conda + sha256: ac1b62a5a0dabf12a986b429ee16ceeaed76b9f035586c94a3dbe76564ea888b + md5: 4e44e29212bc0129e645c40820f01558 + depends: + - __osx >=11.0 + - libclang-cpp22.1 >=22.1.5,<22.2.0a0 + - libclang13 >=22.1.5 + - libcxx >=22.1.5 + - libllvm22 >=22.1.5,<22.2.0a0 + license: Apache-2.0 WITH LLVM-exception + license_family: Apache + size: 109796 + timestamp: 1778482893079 +- conda: https://conda.anaconda.org/conda-forge/osx-64/clang-tools-15.0.7-default_h7151d67_5.conda + sha256: 890c8fd869295bc75ba97473d0424b9b5ba35c7e463a714e37d00552643077d8 + md5: 9c961a4cfc3799fb1fd1bd8b896f3755 + depends: + - clang-format 15.0.7 default_h7151d67_5 + - libclang-cpp15 >=15.0.7,<15.1.0a0 + - libclang13 >=15.0.7 + - libcxx >=16.0.6 + - libllvm15 >=15.0.7,<15.1.0a0 + constrains: + - clangdev 15.0.7 + - clang 15.0.7.* + - llvm 15.0.7.* + - llvm-tools 15.0.7.* + - llvmdev 15.0.7.* + license: Apache-2.0 WITH LLVM-exception + license_family: Apache + size: 16969811 + timestamp: 1711068027777 +- conda: https://conda.anaconda.org/conda-forge/osx-64/clang-tools-16.0.6-default_h4651f56_15.conda + sha256: 324e12f7d311d584d28098e048bf3610c7a12eea96ddc0d55616025c214d0fd8 + md5: 006fd8afef42dd85907aca61970d553a + depends: + - __osx >=10.13 + - clang-format 16.0.6 default_h4651f56_15 + - libclang-cpp16 >=16.0.6,<16.1.0a0 + - libclang13 >=16.0.6 + - libcxx >=16.0.6 + - libllvm16 >=16.0.6,<16.1.0a0 + - libxml2 >=2.13.8,<2.14.0a0 + constrains: + - clangdev 16.0.6 + - clang 16.0.6.* + - llvm 16.0.6.* + - llvm-tools 16.0.6.* + - llvmdev 16.0.6.* + license: Apache-2.0 WITH LLVM-exception + license_family: Apache + size: 17932186 + timestamp: 1756168027313 +- conda: https://conda.anaconda.org/conda-forge/osx-64/clang-tools-17.0.6-default_h3571c67_8.conda + sha256: df5b81c524b38ad8f39c64ad8ac48c2a782514181e473f804bb55e190604e04d + md5: 8240b79b4eef403641ea339e5a057575 + depends: + - __osx >=10.13 + - clang-format 17.0.6 default_h3571c67_8 + - libclang-cpp17 >=17.0.6,<17.1.0a0 + - libclang13 >=17.0.6 + - libcxx >=17.0.6 + - libllvm17 >=17.0.6,<17.1.0a0 + - libxml2 >=2.13.5,<2.14.0a0 + constrains: + - clangdev 17.0.6 + license: Apache-2.0 WITH LLVM-exception + license_family: Apache + size: 18940871 + timestamp: 1738085041960 +- conda: https://conda.anaconda.org/conda-forge/osx-64/clang-tools-18.1.8-default_h9399c5b_18.conda + sha256: d82e1eff11f8952ea9346b5e0b4c71442576946bbf20f573cc809ca6c3dc097a + md5: 6195ca34ed09ce9cfbaa48f6cdb5d10b + depends: + - __osx >=11.0 + - clang-format 18.1.8 default_h9399c5b_18 + - libclang-cpp18.1 >=18.1.8,<18.2.0a0 + - libclang13 >=18.1.8 + - libcxx >=18.1.8 + - libllvm18 >=18.1.8,<18.2.0a0 + - libxml2 + - libxml2-16 >=2.14.6 + constrains: + - clangdev 18.1.8 + license: Apache-2.0 WITH LLVM-exception + license_family: Apache + size: 20031122 + timestamp: 1773506981888 +- conda: https://conda.anaconda.org/conda-forge/osx-64/clang-tools-19.1.7-default_h2be20cb_9.conda + sha256: 281901e7a524c031917e147402f15048c765a16381fca83ca9c02a9bfa0a736a + md5: 8d5057fbd8ceecf9ef7ab02ed5caedeb + depends: + - __osx >=11.0 + - clang-format 19.1.7 default_h9399c5b_9 + - libclang-cpp19.1 >=19.1.7,<19.2.0a0 + - libclang13 >=19.1.7 + - libcxx >=19.1.7 + - libllvm19 >=19.1.7,<19.2.0a0 + - libxml2 + - libxml2-16 >=2.14.6 + constrains: + - clangdev 19.1.7 + license: Apache-2.0 WITH LLVM-exception + license_family: Apache + size: 15671542 + timestamp: 1776984945718 +- conda: https://conda.anaconda.org/conda-forge/osx-64/clang-tools-20.1.8-default_h2be20cb_15.conda + sha256: bd88b9d6399d47a6b4bc6cf4100af56353abab3239b365569b5f5c4e97f6c305 + md5: 68a124163d1d9c28a52f8c969de4e821 + depends: + - __osx >=11.0 + - clang-format 20.1.8 default_h9399c5b_15 + - libclang-cpp20.1 >=20.1.8,<20.2.0a0 + - libclang13 >=20.1.8 + - libcxx >=20.1.8 + - libllvm20 >=20.1.8,<20.2.0a0 + - libxml2 + - libxml2-16 >=2.14.6 + constrains: + - clangdev 20.1.8 + license: Apache-2.0 WITH LLVM-exception + license_family: Apache + size: 15606328 + timestamp: 1776985938668 +- conda: https://conda.anaconda.org/conda-forge/osx-64/clang-tools-21.1.8-default_hd70426c_4.conda + sha256: 2310f69966e8fd71d3db45f56e223c75e80692e681db888212452525ea1d1a7a + md5: e082a51cf917103e4c6409d3c3bf79cf + depends: + - __osx >=10.13 + - clang-format 21.1.8 default_hd70426c_4 + - libclang-cpp21.1 >=21.1.8,<21.2.0a0 + - libclang13 >=21.1.8 + - libcxx >=21.1.8 + - libllvm21 >=21.1.8,<21.2.0a0 + - libxml2 + - libxml2-16 >=2.14.6 + constrains: + - clangdev 21.1.8 + license: Apache-2.0 WITH LLVM-exception + license_family: Apache + size: 16011008 + timestamp: 1777006990838 +- conda: https://conda.anaconda.org/conda-forge/osx-64/clang-tools-22.1.5-default_h9399c5b_1.conda + sha256: c07fe9f8860055fa92281ccc5ca622f8de90ce9ebc5dcc76be00de87360e4324 + md5: 75939d118f1a4d10b5af79a2e73d2ee5 + depends: + - __osx >=11.0 + - clang-format 22.1.5 default_h9399c5b_1 + - clang-scan-deps 22.1.5 default_h9399c5b_1 + - libclang-cpp22.1 >=22.1.5,<22.2.0a0 + - libclang13 >=22.1.5 + - libcxx >=22.1.5 + - libllvm22 >=22.1.5,<22.2.0a0 + - libxml2 + - libxml2-16 >=2.14.6 + constrains: + - clangdev 22.1.5 + license: Apache-2.0 WITH LLVM-exception + license_family: Apache + size: 7586032 + timestamp: 1778483672952 +- conda: https://conda.anaconda.org/conda-forge/osx-64/clang_impl_osx-64-15.0.7-h03d6864_8.conda + sha256: 19e4975079ea01db7a1b2f74bb722e5daa19ac405465b8566197df0d2658a84c + md5: 7cc98f90637f99acd45cfc41350ba924 + depends: + - cctools_osx-64 + - clang 15.0.7.* + - compiler-rt 15.0.7.* + - ld64_osx-64 + - llvm-tools 15.0.7.* + license: BSD-3-Clause + license_family: BSD + size: 17610 + timestamp: 1704364124677 +- conda: https://conda.anaconda.org/conda-forge/osx-64/clang_impl_osx-64-16.0.6-h8787910_19.conda + sha256: 7c8146bb69ddf42af2e30d83ad357985732052eccfbaf279d433349e0c1324de + md5: 64155ef139280e8c181dad866dea2980 + depends: + - cctools_osx-64 + - clang 16.0.6.* + - compiler-rt 16.0.6.* + - ld64_osx-64 + - llvm-tools 16.0.6.* + license: BSD-3-Clause + license_family: BSD + size: 17589 + timestamp: 1723069343993 +- conda: https://conda.anaconda.org/conda-forge/osx-64/clang_impl_osx-64-17.0.6-h1af8efd_23.conda + sha256: 2b8df6446dc59a8f6be800891f29fe3b5ec404a98dcd47b6a78e3f379b9079f7 + md5: 90132dd643d402883e4fbd8f0527e152 + depends: + - cctools_osx-64 + - clang 17.0.6.* + - compiler-rt 17.0.6.* + - ld64_osx-64 + - llvm-tools 17.0.6.* + license: BSD-3-Clause + license_family: BSD + size: 17880 + timestamp: 1731984936767 +- conda: https://conda.anaconda.org/conda-forge/osx-64/clang_impl_osx-64-18.1.8-h6a44ed1_25.conda + sha256: fffb43ba2a04e6b25484840818628397be320f4ff0e5efcce8167f9d06216a94 + md5: bfc995f8ab9e8c22ebf365844da3383d + depends: + - cctools_osx-64 + - clang 18.1.8.* + - compiler-rt 18.1.8.* + - ld64_osx-64 + - llvm-tools 18.1.8.* + license: BSD-3-Clause + license_family: BSD + size: 18256 + timestamp: 1748575659622 +- conda: https://conda.anaconda.org/conda-forge/osx-64/clang_impl_osx-64-19.1.7-default_ha1a018a_9.conda + sha256: dcf0d1bd251ac9c48875d38cd9434edf9833d7d23a26fc3b1f33c18181441c09 + md5: 72a199c17b7f87cad5e965a3c0352f9b + depends: + - cctools_impl_osx-64 + - clang-19 19.1.7.* default_* + - compiler-rt 19.1.7.* + - compiler-rt_osx-64 + - ld64_osx-64 * llvm19_1_* + - llvm-openmp >=19.1.7 + - llvm-tools 19.1.7.* + license: Apache-2.0 WITH LLVM-exception + license_family: Apache + size: 24878 + timestamp: 1776984866319 +- conda: https://conda.anaconda.org/conda-forge/osx-64/clang_impl_osx-64-20.1.8-default_cfg_h91eacd1_15.conda + sha256: a103253615aaac9dafa27b9bcd55b9a5b7e6fd35ea17dacbeb8cf409822bb120 + md5: 33ca7edf770a87175f4adb80f04a8599 + depends: + - cctools_impl_osx-64 + - clang-20 20.1.8.* default_* + - compiler-rt 20.1.8.* + - compiler-rt_osx-64 + - ld64_osx-64 * llvm20_1_* + - llvm-openmp >=20.1.8 + - llvm-tools 20.1.8.* + license: Apache-2.0 WITH LLVM-exception + license_family: Apache + size: 71213 + timestamp: 1776985833883 +- conda: https://conda.anaconda.org/conda-forge/osx-64/clang_impl_osx-64-21.1.8-default_he9bf3b8_4.conda + sha256: 5abaa380850eff2aa45e3dcbb163f2f43ee2c88a7bcf0b603f8889d498a4f52f + md5: 21cf853b0e7eec62b7d448917c79cb26 + depends: + - cctools_impl_osx-64 + - clang-21 21.1.8 default_h447f92f_4 + - compiler-rt 21.1.8.* + - compiler-rt_osx-64 21.1.8.* + - ld64_osx-64 * llvm21_1_* + license: Apache-2.0 WITH LLVM-exception + license_family: Apache + size: 28292 + timestamp: 1777006316046 +- conda: https://conda.anaconda.org/conda-forge/osx-64/clang_impl_osx-64-22.1.5-default_he9bf3b8_1.conda + sha256: 17319caa07bc78871344b4a34afc605e6fd903b3e9537b632fab8e3a15f371b9 + md5: 900f1528587d56afe1c4086410e249c1 + depends: + - cctools_impl_osx-64 + - clang-22 22.1.5 default_h3b8fe2e_1 + - compiler-rt 22.1.5.* + - compiler-rt_osx-64 + - ld64_osx-64 * llvm22_1_* + license: Apache-2.0 WITH LLVM-exception + license_family: Apache + size: 28215 + timestamp: 1778482151998 +- conda: https://conda.anaconda.org/conda-forge/osx-64/clang_osx-64-15.0.7-hb91bd55_8.conda + sha256: e3b8d536a56e320534dbd0ae471428b285db5b8526ca1733134f51ce18ee0289 + md5: 7b00a963efb5030717883d9e408c81c8 + depends: + - clang_impl_osx-64 15.0.7 h03d6864_8 + license: BSD-3-Clause + license_family: BSD + size: 20798 + timestamp: 1704364136928 +- conda: https://conda.anaconda.org/conda-forge/osx-64/clang_osx-64-16.0.6-hb91bd55_19.conda + sha256: d38be1dc9476fdc60dfbd428df0fb3e284ee9101e7eeaa1764b54b11bab54105 + md5: 760ecbc6f4b6cecbe440b0080626286f + depends: + - clang_impl_osx-64 16.0.6 h8787910_19 + license: BSD-3-Clause + license_family: BSD + size: 20580 + timestamp: 1723069348997 +- conda: https://conda.anaconda.org/conda-forge/osx-64/clang_osx-64-17.0.6-h7e5c614_23.conda + sha256: 3d17b28357a97780ed6bb32caac7fb2df170540e07e1a233f0f8b18b7c1fc641 + md5: 615b86de1eb0162b7fa77bb8cbf57f1d + depends: + - clang_impl_osx-64 17.0.6 h1af8efd_23 + license: BSD-3-Clause + license_family: BSD + size: 21169 + timestamp: 1731984940250 +- conda: https://conda.anaconda.org/conda-forge/osx-64/clang_osx-64-18.1.8-h7e5c614_25.conda + sha256: 7f6aea0def866f1664b3ddf730d91e1b94da734b585c3e49cd51d3c4c66a1a49 + md5: 1fea06d9ced6b87fe63384443bc2efaf + depends: + - clang_impl_osx-64 18.1.8 h6a44ed1_25 + license: BSD-3-Clause + license_family: BSD + size: 21534 + timestamp: 1748575663505 +- conda: https://conda.anaconda.org/conda-forge/osx-64/clang_osx-64-19.1.7-h8a78ed7_31.conda + sha256: aa12658e55300efcdc34010312ee62d350464ae0ae8c30d1f7340153c9baa5aa + md5: faf4b6245c4287a4f13e793ca2826842 + depends: + - cctools_osx-64 + - clang 19.* + - clang_impl_osx-64 19.1.7.* + - sdkroot_env_osx-64 + license: BSD-3-Clause + license_family: BSD + size: 21157 + timestamp: 1769482965411 +- conda: https://conda.anaconda.org/conda-forge/osx-64/clang_osx-64-20.1.8-hfe02d3c_31.conda + sha256: c40143878bb73d055d8c3115c0947ef4b784282cec09b78e028df395b0a434ac + md5: 4a59b5a64dfe0f1679dc02331f12eea9 + depends: + - cctools_osx-64 + - clang_impl_osx-64 20.1.8.* + - sdkroot_env_osx-64 + license: BSD-3-Clause + license_family: BSD + size: 21055 + timestamp: 1769482937427 +- conda: https://conda.anaconda.org/conda-forge/osx-64/clang_osx-64-21.1.8-h64238a7_31.conda + sha256: 7b527d90c759c819b042ee52f445877bc4a4bab3f47bd884d36e161540046aa6 + md5: 5295151e781a52625e574a16c73d30c4 + depends: + - cctools_osx-64 + - clang_impl_osx-64 21.1.8.* + - sdkroot_env_osx-64 + license: BSD-3-Clause + license_family: BSD + size: 21055 + timestamp: 1769482828648 +- conda: https://conda.anaconda.org/conda-forge/osx-64/clang_osx-64-22.1.5-h0037788_31.conda + sha256: 1854076fc4c8354b02e0cd9ecbbbc6658f0add80e0c462e845694cbe5ccfd855 + md5: 819fdd9c98622b0b7326c5b02a58032c + depends: + - cctools_osx-64 + - clang_impl_osx-64 22.1.5.* + - sdkroot_env_osx-64 + license: BSD-3-Clause + license_family: BSD + size: 21096 + timestamp: 1778479585704 +- conda: https://conda.anaconda.org/conda-forge/osx-64/clangdev-15.0.7-default_h7151d67_5.conda + sha256: 5f72b26c736c4c98b095ed6d815a399a2f8b5885fb072ba8e7df9f5ba89466e7 + md5: e9bc76b30515385f15aaba682e07e8b8 + depends: + - clang 15.0.7 hdae98eb_5 + - clang-tools 15.0.7 default_h7151d67_5 + - clangxx 15.0.7 default_h7151d67_5 + - libclang 15.0.7 default_h7151d67_5 + - libclang-cpp 15.0.7 default_h7151d67_5 + - libcxx >=16.0.6 + - llvmdev 15.0.7 + license: Apache-2.0 WITH LLVM-exception + license_family: Apache + size: 23305738 + timestamp: 1711068180556 +- conda: https://conda.anaconda.org/conda-forge/osx-64/clangdev-16.0.6-default_h4651f56_15.conda + sha256: 52c0c98fe31864b0a25b7f4d1e2d8788c3dab4b74f6d5cc86fcc71f65cae567b + md5: 80139f5786e3f1bad3a6233519818d3c + depends: + - __osx >=10.13 + - clang 16.0.6 default_h510d6ca_15 + - clang-tools 16.0.6 default_h4651f56_15 + - clangxx 16.0.6 default_h1b9e3cd_15 + - libclang 16.0.6 default_h4651f56_15 + - libclang-cpp 16.0.6 default_h4651f56_15 + - libcxx >=16.0.6 + - llvmdev 16.0.6 + license: Apache-2.0 WITH LLVM-exception + license_family: Apache + size: 24102335 + timestamp: 1756168232018 +- conda: https://conda.anaconda.org/conda-forge/osx-64/clangdev-17.0.6-default_h3571c67_8.conda + sha256: 7669ccb596e4847b16fd0275faab5e06d2c79b02237df55405ad2c9ce48e696f + md5: 90680b8a427b794108bfcc1c23bd418e + depends: + - __osx >=10.13 + - clang 17.0.6 default_h576c50e_8 + - clang-tools 17.0.6 default_h3571c67_8 + - clangxx 17.0.6 default_heb2e8d1_8 + - libclang 17.0.6 default_h3571c67_8 + - libclang-cpp 17.0.6 default_h3571c67_8 + - libcxx >=17.0.6 + - llvmdev 17.0.6 + license: Apache-2.0 WITH LLVM-exception + license_family: Apache + size: 25306702 + timestamp: 1738085193592 +- conda: https://conda.anaconda.org/conda-forge/osx-64/clangdev-18.1.8-default_h9399c5b_18.conda + sha256: 4deab0b022f51452f95493095877fb9cd3a3103f9b2b394f735c582e29bfde98 + md5: 79c4e385b4dd0768b4815b6ca3d77d9a + depends: + - __osx >=11.0 + - clang 18.1.8 default_h1323312_18 + - clang-tools 18.1.8 default_h9399c5b_18 + - clangxx 18.1.8 default_h4cf342a_18 + - libclang 18.1.8 default_h9399c5b_18 + - libclang-cpp 18.1.8 default_h9399c5b_18 + - libcxx >=18.1.8 + - llvmdev 18.1.8.* + license: Apache-2.0 WITH LLVM-exception + license_family: Apache + size: 26345961 + timestamp: 1773507139143 +- conda: https://conda.anaconda.org/conda-forge/osx-64/clangdev-19.1.7-default_h9399c5b_9.conda + sha256: 112b69aca40ab08a56cddd39ab273dbe44a9146e90167b79e797847e8ae570b4 + md5: 446ae681b7d41d4063b24b87c32a66ee + depends: + - __osx >=11.0 + - clang 19.1.7 default_h1323312_9 + - clang-tools 19.1.7 default_h2be20cb_9 + - clangxx 19.1.7 default_h9089c59_9 + - libclang 19.1.7 default_h9399c5b_9 + - libclang-cpp 19.1.7 default_h9399c5b_9 + - libcxx >=19.1.7 + - llvmdev 19.1.7.* + license: Apache-2.0 WITH LLVM-exception + license_family: Apache + size: 27849755 + timestamp: 1776985054380 +- conda: https://conda.anaconda.org/conda-forge/osx-64/clangdev-20.1.8-default_h9399c5b_15.conda + sha256: b9403eda3d3d37c10fd3fe9a8e4f736231a58f5d7429b2444b2b96acb57ebf8d + md5: 3efe97d451969c0a4419860dad78a80c + depends: + - __osx >=11.0 + - clang 20.1.8 default_*_15 + - clang-tools 20.1.8 default_h2be20cb_15 + - clangxx 20.1.8 default_*_15 + - libclang 20.1.8 default_h9399c5b_15 + - libclang-cpp 20.1.8 default_h9399c5b_15 + - libcxx >=20.1.8 + - llvmdev 20.1.8.* + license: Apache-2.0 WITH LLVM-exception + license_family: Apache + size: 28118618 + timestamp: 1776986080542 +- conda: https://conda.anaconda.org/conda-forge/osx-64/clangdev-21.1.8-default_hd70426c_4.conda + sha256: 4d610e6ca87928cc212b0537e8823a46769c4ed9d9549f9fa87770959c7a2a00 + md5: 1093745fd65fcc8dba14c5acfe4acaba + depends: + - __osx >=10.13 + - clang 21.1.8 *_4 + - clang-tools 21.1.8 default_hd70426c_4 + - clangxx 21.1.8 *_4 + - libclang 21.1.8 default_hd70426c_4 + - libclang-cpp 21.1.8 default_hd70426c_4 + - libcxx >=21.1.8 + - llvmdev 21.1.8.* + license: Apache-2.0 WITH LLVM-exception + license_family: Apache + size: 28292439 + timestamp: 1777007127480 +- conda: https://conda.anaconda.org/conda-forge/osx-64/clangdev-22.1.5-default_h9399c5b_1.conda + sha256: 7397b8bab7fd5feeef8d65942d137bdd5f60f459d91fd488589f9de72c6100e1 + md5: d905559343755b2d3d187794eaef5c91 + depends: + - __osx >=11.0 + - clang 22.1.5 *_1 + - clang-tools 22.1.5 default_h9399c5b_1 + - clangxx 22.1.5 *_1 + - libclang 22.1.5 default_h9399c5b_1 + - libclang-cpp 22.1.5 default_h9399c5b_1 + - libcxx >=22.1.5 + - llvmdev 22.1.5.* + license: Apache-2.0 WITH LLVM-exception + license_family: Apache + size: 29237502 + timestamp: 1778483916354 +- conda: https://conda.anaconda.org/conda-forge/osx-64/clangxx-15.0.7-default_h7151d67_5.conda + sha256: b202c18273677f6614dea721680644b12a890afd18293aa14c948dfe79510750 + md5: 7339a849693f35d2d6aebac06484d11a + depends: + - clang 15.0.7 hdae98eb_5 + license: Apache-2.0 WITH LLVM-exception + license_family: Apache + size: 133696 + timestamp: 1711067436395 +- conda: https://conda.anaconda.org/conda-forge/osx-64/clangxx-16.0.6-default_h1b9e3cd_15.conda + sha256: 945d52e908b9a52b3a290eedcf7a7865f80334f2cc1dacc7a2809f5189388086 + md5: 75da7c70527c5330f3a88ea8138d0303 + depends: + - clang 16.0.6 default_h510d6ca_15 + - libcxx-devel 16.0.6.* + constrains: + - libcxx-devel 16.0.6 + license: Apache-2.0 WITH LLVM-exception + license_family: Apache + size: 92193 + timestamp: 1756167234819 +- conda: https://conda.anaconda.org/conda-forge/osx-64/clangxx-17.0.6-default_heb2e8d1_8.conda + sha256: fa4e096a8d0218c854073677b25b64edadce453c939ed5514a88992c134255b6 + md5: 6327ac6f78fe528361b28dcdad37326e + depends: + - clang 17.0.6 default_h576c50e_8 + - libcxx-devel 17.0.6.* + license: Apache-2.0 WITH LLVM-exception + license_family: Apache + size: 24138 + timestamp: 1738083901200 +- conda: https://conda.anaconda.org/conda-forge/osx-64/clangxx-18.1.8-default_h4cf342a_18.conda + sha256: d8216d750926fafc77d3d2a965778564a85398c891830f600157b27cff215351 + md5: febed6ad2a31944713582a704c435ffe + depends: + - clang 18.1.8 default_h1323312_18 + - libcxx-devel 18.1.8.* + license: Apache-2.0 WITH LLVM-exception + license_family: Apache + size: 93712 + timestamp: 1773506400760 +- conda: https://conda.anaconda.org/conda-forge/osx-64/clangxx-19.1.7-default_h9089c59_9.conda + sha256: 667214e74fe71858640e1d94f0ca0fe37e2e6e8dd0ddbcc373695adfa1185bf7 + md5: 875ce008f7b606030e29b3b9f34df10c + depends: + - clang 19.1.7 default_h1323312_9 + - clangxx_impl_osx-64 19.1.7.* default_* + - libcxx-devel 19.1.* + license: Apache-2.0 WITH LLVM-exception + license_family: Apache + size: 24855 + timestamp: 1776985026294 +- conda: https://conda.anaconda.org/conda-forge/osx-64/clangxx-20.1.8-default_cfg_h41ee372_15.conda + sha256: ffaad09b6da48f19ce69467d2fd1dd595b607de17356a0c6d27f184f5d0b9c2c + md5: e8010ed5367529897888fdfff0b3117e + depends: + - clang 20.1.8 default_cfg_h93fe8ef_15 + - clangxx_impl_osx-64 20.1.8.* default_* + - libcxx-devel 20.1.* + license: Apache-2.0 WITH LLVM-exception + license_family: Apache + size: 70778 + timestamp: 1776986039753 +- conda: https://conda.anaconda.org/conda-forge/osx-64/clangxx-21.1.8-default_cfg_hd45ce8b_4.conda + sha256: 687341a4866b452de82d2bfc067f7ea3fa504ab09486dc7c43157ce51d5dbdda + md5: 630072cfe7d754969ffad5a7beed5c58 + depends: + - clang 21.1.8 default_cfg_h93fe8ef_4 + - clangxx_impl_osx-64 21.1.8 default_he9bf3b8_4 + - libcxx-devel 21.1.* + license: Apache-2.0 WITH LLVM-exception + license_family: Apache + size: 28596 + timestamp: 1777006414248 +- conda: https://conda.anaconda.org/conda-forge/osx-64/clangxx-22.1.5-default_cfg_hbf36760_1.conda + sha256: 1542421184c0aca15fd3ac033773f0f27bc34b3f60fad0265481fcb0afa461c7 + md5: 5e41d43e8c8eb0cbc524ff1892ec51fa + depends: + - clang 22.1.5 default_cfg_h93fe8ef_1 + - clangxx_impl_osx-64 22.1.5 default_he9bf3b8_1 + - libcxx-devel 22.1.* + license: Apache-2.0 WITH LLVM-exception + license_family: Apache + size: 28361 + timestamp: 1778482994176 +- conda: https://conda.anaconda.org/conda-forge/osx-64/clangxx_impl_osx-64-15.0.7-h2133e9c_8.conda + sha256: 97d6f1395c795984743ebb74eb28cd51088bc4523953b6f8153e8e5995f05744 + md5: f126858ed497b0fd1461a73479eba536 + depends: + - clang_osx-64 15.0.7 hb91bd55_8 + - clangxx 15.0.7.* + - libcxx >=14 + - libllvm15 >=15.0.7,<15.1.0a0 + license: BSD-3-Clause + license_family: BSD + size: 17738 + timestamp: 1704365418744 +- conda: https://conda.anaconda.org/conda-forge/osx-64/clangxx_impl_osx-64-16.0.6-h6d92fbe_19.conda + sha256: c99c773d76a93066f1e78d368f934cd904b4f39a3939bf1d5a5cf26e3b812dbc + md5: 9ffa16e2bd7eb5b8b1a0d19185710cd3 + depends: + - clang_osx-64 16.0.6 hb91bd55_19 + - clangxx 16.0.6.* + - libcxx >=16 + - libllvm16 >=16.0.6,<16.1.0a0 + license: BSD-3-Clause + license_family: BSD + size: 17642 + timestamp: 1723069387016 +- conda: https://conda.anaconda.org/conda-forge/osx-64/clangxx_impl_osx-64-17.0.6-hc3430b7_23.conda + sha256: 32d450b4aa7c74758b6a0f51f7e7037638e8b5b871f85879f1a74227564ddf69 + md5: b724718bfe53f93e782fe944ec58029e + depends: + - clang_osx-64 17.0.6 h7e5c614_23 + - clangxx 17.0.6.* + - libcxx >=17 + - libllvm17 >=17.0.6,<17.1.0a0 + license: BSD-3-Clause + license_family: BSD + size: 17925 + timestamp: 1731984956864 +- conda: https://conda.anaconda.org/conda-forge/osx-64/clangxx_impl_osx-64-18.1.8-h4b7810f_25.conda + sha256: 1b2ee79318f37b356d36cbcfc46ff8a0a4e1d8e5fdaed1e5dbc5a2b58cacbad7 + md5: c03c94381d9ffbec45c98b800e7d3e86 + depends: + - clang_osx-64 18.1.8 h7e5c614_25 + - clangxx 18.1.8.* + - libcxx >=18 + - libllvm18 >=18.1.8,<18.2.0a0 + license: BSD-3-Clause + license_family: BSD + size: 18390 + timestamp: 1748575690740 +- conda: https://conda.anaconda.org/conda-forge/osx-64/clangxx_impl_osx-64-19.1.7-default_ha1a018a_9.conda + sha256: 7b1cb2b97c9c4af22d44c1175b9d99a73cab0c2588b38b2fc25e4350f6c959f3 + md5: a3f63cb2e69da3700555541b67b864b9 + depends: + - clang-19 19.1.7.* default_* + - clang_impl_osx-64 19.1.7 default_ha1a018a_9 + - libcxx-devel 19.1.* + license: Apache-2.0 WITH LLVM-exception + license_family: Apache + size: 24811 + timestamp: 1776985012470 +- conda: https://conda.anaconda.org/conda-forge/osx-64/clangxx_impl_osx-64-20.1.8-default_cfg_h91eacd1_15.conda + sha256: fea482f16604d5957d14fed8290cf068d5af9bf75f35979235edbcc15f679261 + md5: 76e86b572a3281598ce817d44aef5c33 + depends: + - clang-20 20.1.8.* default_* + - clang_impl_osx-64 20.1.8 default_cfg_h91eacd1_15 + - libcxx-devel 20.1.* + license: Apache-2.0 WITH LLVM-exception + license_family: Apache + size: 70994 + timestamp: 1776986009804 +- conda: https://conda.anaconda.org/conda-forge/osx-64/clangxx_impl_osx-64-21.1.8-default_he9bf3b8_4.conda + sha256: 7f49480dc27293c417419ff91735d7d3575322eb7988ca1b406578944cea6bf8 + md5: 11811b13c7fefb2547d9a99a701ac0af + depends: + - clang-21 21.1.8 default_h447f92f_4 + - clang_impl_osx-64 21.1.8 default_he9bf3b8_4 + - libcxx-devel 21.1.* + license: Apache-2.0 WITH LLVM-exception + license_family: Apache + size: 28227 + timestamp: 1777006372150 +- conda: https://conda.anaconda.org/conda-forge/osx-64/clangxx_impl_osx-64-22.1.5-default_he9bf3b8_1.conda + sha256: b3cbf252f9f6c605da2860528769e397641bad52a875e9667b20d95723d3a1ab + md5: dfee8c62a56504180b90c2d22e50dfd4 + depends: + - clang-22 22.1.5 default_h3b8fe2e_1 + - clang-scan-deps 22.1.5 default_h9399c5b_1 + - clang_impl_osx-64 22.1.5 default_he9bf3b8_1 + - libcxx-devel 22.1.* + license: Apache-2.0 WITH LLVM-exception + license_family: Apache + size: 28197 + timestamp: 1778482928116 +- conda: https://conda.anaconda.org/conda-forge/osx-64/clangxx_osx-64-15.0.7-hb91bd55_8.conda + sha256: 2bd192a39b618fc275eecc01ed6cfdf1e235339609f5b7213ea70260c3e45f87 + md5: 2989c631a596c7efa679333978c5d15b + depends: + - clang_osx-64 15.0.7 hb91bd55_8 + - clangxx_impl_osx-64 15.0.7 h2133e9c_8 + license: BSD-3-Clause + license_family: BSD + size: 19584 + timestamp: 1704365432995 +- conda: https://conda.anaconda.org/conda-forge/osx-64/clangxx_osx-64-16.0.6-hb91bd55_19.conda + sha256: 8c2cf371561f8de565aa721520d34e14ff9cf9b7e3a868879ec2f99760c433cc + md5: 81d40fad4c14cc7a893f2e274647c7a4 + depends: + - clang_osx-64 16.0.6 hb91bd55_19 + - clangxx_impl_osx-64 16.0.6 h6d92fbe_19 + license: BSD-3-Clause + license_family: BSD + size: 19289 + timestamp: 1723069392162 +- conda: https://conda.anaconda.org/conda-forge/osx-64/clangxx_osx-64-17.0.6-h7e5c614_23.conda + sha256: 08e758458bc99394b108ed051636149f9bc8fafcf059758ac3d406194273d1c0 + md5: 78039b25bfcffb920407522839555289 + depends: + - clang_osx-64 17.0.6 h7e5c614_23 + - clangxx_impl_osx-64 17.0.6 hc3430b7_23 + license: BSD-3-Clause + license_family: BSD + size: 19559 + timestamp: 1731984961996 +- conda: https://conda.anaconda.org/conda-forge/osx-64/clangxx_osx-64-18.1.8-h7e5c614_25.conda + sha256: 1a1a31eae8b491104d33d422b57578f041d34afafb4da0a7355ef16fd5174090 + md5: 2e5c84e93a3519d77a0d8d9b3ea664fd + depends: + - clang_osx-64 18.1.8 h7e5c614_25 + - clangxx_impl_osx-64 18.1.8 h4b7810f_25 + license: BSD-3-Clause + license_family: BSD + size: 19947 + timestamp: 1748575697030 +- conda: https://conda.anaconda.org/conda-forge/osx-64/clangxx_osx-64-19.1.7-h8a78ed7_31.conda + sha256: 308df8233f2a7a258e6441fb02553a1b5a54afe5e93d63b016dd9c0f1d28d5ab + md5: c3b46b5d6cd2a6d1f12b870b2c69aed4 + depends: + - cctools_osx-64 + - clang_osx-64 19.1.7 h8a78ed7_31 + - clangxx 19.* + - clangxx_impl_osx-64 19.1.7.* + - sdkroot_env_osx-64 + license: BSD-3-Clause + license_family: BSD + size: 19974 + timestamp: 1769482973715 +- conda: https://conda.anaconda.org/conda-forge/osx-64/clangxx_osx-64-20.1.8-hfe02d3c_31.conda + sha256: 7597177b97d05d85aaeba8d4213e5eac501ce32b46c1488b1d7abbbe8aac42e9 + md5: e3c3d7aa64d2fb77792d53e8fb59cf9e + depends: + - cctools_osx-64 + - clang_osx-64 20.1.8 hfe02d3c_31 + - clangxx_impl_osx-64 20.1.8.* + - sdkroot_env_osx-64 + license: BSD-3-Clause + license_family: BSD + size: 19864 + timestamp: 1769482946027 +- conda: https://conda.anaconda.org/conda-forge/osx-64/clangxx_osx-64-21.1.8-h64238a7_31.conda + sha256: 7455b6774d1006762599596cee8c3bf516b758ac5ccdc81a2906de868afc9030 + md5: 443742f2cc7af03babc5c318a103df9b + depends: + - cctools_osx-64 + - clang_osx-64 21.1.8 h64238a7_31 + - clangxx_impl_osx-64 21.1.8.* + - sdkroot_env_osx-64 + license: BSD-3-Clause + license_family: BSD + size: 19863 + timestamp: 1769482834668 +- conda: https://conda.anaconda.org/conda-forge/osx-64/clangxx_osx-64-22.1.5-h0037788_31.conda + sha256: eda703a2386c840bb7f22d03f6942ad1c4305b7c9532fedae21305ee30895dbc + md5: a95e1d9fc34279a4075839335fd7df83 + depends: + - cctools_osx-64 + - clang_osx-64 22.1.5 h0037788_31 + - clangxx_impl_osx-64 22.1.5.* + - sdkroot_env_osx-64 + license: BSD-3-Clause + license_family: BSD + size: 19967 + timestamp: 1778479591489 +- conda: https://conda.anaconda.org/conda-forge/osx-64/cmake-4.3.2-h2426fb6_0.conda + sha256: fd4718b3cef0bd1f145cf6ac35c9195fc4b60a0ccc998d30d52dd64286b5d349 + md5: af3b43d39946130af7a3a31c9bb47d00 + depends: + - __osx >=11.0 + - bzip2 >=1.0.8,<2.0a0 + - libcurl >=8.19.0,<9.0a0 + - libcxx >=19 + - libexpat >=2.7.5,<3.0a0 + - liblzma >=5.8.3,<6.0a0 + - libuv >=1.51.0,<2.0a0 + - libzlib >=1.3.2,<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: 19496411 + timestamp: 1776801235617 +- conda: https://conda.anaconda.org/conda-forge/osx-64/compiler-rt-15.0.7-ha38d28d_2.conda + sha256: e7c60ed1075d02c9947ddcb3267c4d34a4739582deda31761154bc20c9086337 + md5: dd44eb15e139f269aec690d2ad80ceb4 + depends: + - clang 15.0.7.* + - clangxx 15.0.7.* + - compiler-rt_osx-64 15.0.7.* + license: Apache-2.0 WITH LLVM-exception + license_family: APACHE + size: 92831 + timestamp: 1701467271118 +- conda: https://conda.anaconda.org/conda-forge/osx-64/compiler-rt-16.0.6-ha38d28d_2.conda + sha256: de0e2c94d9a04f60ec9aedde863d6c1fad3f261bdb63ec8adc70e2d9ecdb07bb + md5: 3b9e8c5c63b8e86234f499490acd85c2 + depends: + - clang 16.0.6.* + - clangxx 16.0.6.* + - compiler-rt_osx-64 16.0.6.* + license: Apache-2.0 WITH LLVM-exception + license_family: APACHE + size: 94198 + timestamp: 1701467261175 +- conda: https://conda.anaconda.org/conda-forge/osx-64/compiler-rt-17.0.6-h1020d70_2.conda + sha256: 463107bc5ac7ebe925cded4412fb7158bd2c1a2b062a4a2e691aab8b1ff6ccf3 + md5: be4cb4531d4cee9df94bf752455d68de + depends: + - __osx >=10.13 + - clang 17.0.6.* + - clangxx 17.0.6.* + - compiler-rt_osx-64 17.0.6.* + license: Apache-2.0 WITH LLVM-exception + license_family: APACHE + size: 94907 + timestamp: 1725251294237 +- conda: https://conda.anaconda.org/conda-forge/osx-64/compiler-rt-18.1.8-he914875_2.conda + sha256: b3d23e4e53cf22c110d3816f3faa83dc0eb9842a7c3a98e4307977b7b6576bd8 + md5: 56e9de1d62975db80c58b00dd620c158 + depends: + - __osx >=10.13 + - clang 18.1.8.* + - compiler-rt_osx-64 18.1.8.* + license: Apache-2.0 WITH LLVM-exception + license_family: APACHE + size: 96219 + timestamp: 1757436225599 +- conda: https://conda.anaconda.org/conda-forge/osx-64/compiler-rt-19.1.7-he914875_1.conda + sha256: 28e5f0a6293acba68ebc54694a2fc40b1897202735e8e8cbaaa0e975ba7b235b + md5: e6b9e71e5cb08f9ed0185d31d33a074b + depends: + - __osx >=10.13 + - clang 19.1.7.* + - compiler-rt_osx-64 19.1.7.* + license: Apache-2.0 WITH LLVM-exception + license_family: APACHE + size: 96722 + timestamp: 1757412473400 +- conda: https://conda.anaconda.org/conda-forge/osx-64/compiler-rt-20.1.8-he914875_1.conda + sha256: 936a0574e42301e80b28c916d6d04c4c190d3f9f55d4f79b40010cdb80303659 + md5: c1c2d447387aa28c3c47af20e577efc5 + depends: + - __osx >=10.13 + - clang 20.1.8.* + - compiler-rt_osx-64 20.1.8.* + license: Apache-2.0 WITH LLVM-exception + license_family: APACHE + size: 98501 + timestamp: 1757412567261 +- conda: https://conda.anaconda.org/conda-forge/osx-64/compiler-rt-21.1.8-h694c41f_1.conda + sha256: abf5ec8eb51093b365d76c4c9e7b97b96350316e98f7d49da827e778fdcc548d + md5: 747f859a7e16ea779689e3f8d5977e4f + depends: + - compiler-rt21 21.1.8 he914875_1 + - libcompiler-rt 21.1.8 he914875_1 + constrains: + - clang 21.1.8 + license: Apache-2.0 WITH LLVM-exception + license_family: APACHE + size: 16471 + timestamp: 1769057726043 +- conda: https://conda.anaconda.org/conda-forge/osx-64/compiler-rt-22.1.5-h694c41f_1.conda + sha256: bd1b70a7469e771376b2045445a14f555805c34cfd9e38e0ef4edcec34a72a02 + md5: a343d2e123a5145103d3f9182c7a4f76 + depends: + - compiler-rt22 22.1.5 h1637cdf_1 + - libcompiler-rt 22.1.5 h1637cdf_1 + constrains: + - clang 22.1.5 + license: Apache-2.0 WITH LLVM-exception + license_family: APACHE + size: 16522 + timestamp: 1778194994864 +- conda: https://conda.anaconda.org/conda-forge/osx-64/compiler-rt21-21.1.8-he914875_1.conda + sha256: 350ee43237521754332648a2b936b9a068ab71ebb800186ce3c2494c272c7b24 + md5: 74f298f730eb0aaed0da04b2c0ab0100 + depends: + - __osx >=10.13 + - compiler-rt21_osx-64 21.1.8.* + license: Apache-2.0 WITH LLVM-exception + license_family: APACHE + size: 98549 + timestamp: 1769057723561 +- conda: https://conda.anaconda.org/conda-forge/osx-64/compiler-rt22-22.1.5-h1637cdf_1.conda + sha256: 2bd338dff6d2f7a089b5f3d569d1d7193b1a97da841f86c51820de25d6e59fcc + md5: 11fa30c82000ee5b3a0c9de68f2ee14a + depends: + - __osx >=11.0 + - compiler-rt22_osx-64 22.1.5.* + license: Apache-2.0 WITH LLVM-exception + license_family: APACHE + size: 99227 + timestamp: 1778194990435 +- conda: https://conda.anaconda.org/conda-forge/osx-64/coreutils-9.5-h10d778d_0.conda + sha256: 7a29ae82cf1c455b4956c8311ae97832460c3585f0d8789fd82161dd2a20d1fd + md5: 8332c7ae324c9fc4b22cc3d84a0582e8 + license: GPL-3.0-or-later + license_family: GPL + size: 1374585 + timestamp: 1711655512907 +- conda: https://conda.anaconda.org/conda-forge/osx-64/cxx-compiler-1.0.1-h04f5b5a_0.tar.bz2 + sha256: 3585e3ce4be4e0406bba6cad971acac8bc71d07e83c421f2fb0378fe0a25a0cd + md5: db2cff0cc2d413ac1a5e5759d5143d80 + depends: + - binutils 1.0.1 0 + - clangxx_osx-64 + - libcxx >=4.0.1 + license: BSD + size: 4472 + timestamp: 1549965747048 +- conda: https://conda.anaconda.org/conda-forge/osx-64/cxx-compiler-1.10.0-h20888b2_0.conda + sha256: 15f6ea7258555b2e34d147d378f4e8e08343ca3e71a18bd98b89a3dbc43142a2 + md5: b3a935ade707c54ebbea5f8a7c6f4549 + depends: + - c-compiler 1.10.0 h09a7c41_0 + - clangxx_osx-64 18.* + license: BSD-3-Clause + license_family: BSD + size: 6785 + timestamp: 1751115659099 +- conda: https://conda.anaconda.org/conda-forge/osx-64/cxx-compiler-1.11.0-h307afc9_0.conda + sha256: d6976f8d8b51486072abfe1e76a733688380dcbd1a8e993a43d59b80f7288478 + md5: 463bb03bb27f9edc167fb3be224efe96 + depends: + - c-compiler 1.11.0 h7a00415_0 + - clangxx_osx-64 19.* + license: BSD-3-Clause + license_family: BSD + size: 6732 + timestamp: 1753098827160 +- conda: https://conda.anaconda.org/conda-forge/osx-64/cxx-compiler-1.6.0-h1c7c39f_0.conda + sha256: dc0860c05ef3083192b8ff4ac8242403f05a550cc42c7709ec8c9f4eaa88e993 + md5: 9adaf7c9d4e1e15e70a8dd46befbbab2 + depends: + - c-compiler 1.6.0 h63c33a9_0 + - clangxx_osx-64 15.* + license: BSD + size: 6258 + timestamp: 1689097854160 +- conda: https://conda.anaconda.org/conda-forge/osx-64/cxx-compiler-1.7.0-h7728843_1.conda + sha256: 844b0894552468685c6a9f7eaab3837461e1ebea5c3880d8de616c83b618f044 + md5: e04cb15a20553b973dd068c2dc81d682 + depends: + - c-compiler 1.7.0 h282daa2_1 + - clangxx_osx-64 16.* + license: BSD-3-Clause + license_family: BSD + size: 6394 + timestamp: 1714575621870 +- conda: https://conda.anaconda.org/conda-forge/osx-64/cxx-compiler-1.8.0-h385f146_1.conda + sha256: bbb8097e20601a1c78b3ad4aba165dbfe9a61f27e0b42475ba6177222825adad + md5: b72f72f89de328cc907bcdf88b85447d + depends: + - c-compiler 1.8.0 hfc4bf79_1 + - clangxx_osx-64 17.* + license: BSD-3-Clause + license_family: BSD + size: 6235 + timestamp: 1728985479382 +- conda: https://conda.anaconda.org/conda-forge/osx-64/icu-75.1-h120a0e1_0.conda + sha256: 2e64307532f482a0929412976c8450c719d558ba20c0962832132fd0d07ba7a7 + md5: d68d48a3060eb5abdc1cdc8e2a3a5966 + depends: + - __osx >=10.13 + license: MIT + license_family: MIT + size: 11761697 + timestamp: 1720853679409 +- conda: https://conda.anaconda.org/conda-forge/osx-64/krb5-1.22.2-h207b36a_0.conda + sha256: df009385e8262c234c0dae9016540b86dad3d299f0d9366d08e327e8e7731634 + md5: e66e2c52d2fdddcf314ad750fb4ebb4a + depends: + - __osx >=10.13 + - libcxx >=19 + - libedit >=3.1.20250104,<3.2.0a0 + - libedit >=3.1.20250104,<4.0a0 + - openssl >=3.5.5,<4.0a0 + license: MIT + license_family: MIT + size: 1193620 + timestamp: 1769770267475 +- conda: https://conda.anaconda.org/conda-forge/osx-64/ld64-609-ha91a046_15.conda + sha256: 5c13ce2916f592adb29301dfbbcfe773437744f2890881615210b041b6276fc2 + md5: 3c27099076bcf8fdde53785efb46dbf1 + depends: + - ld64_osx-64 609 h0fd476b_15 + - libllvm15 >=15.0.7,<15.1.0a0 + constrains: + - cctools 973.0.1.* + - cctools_osx-64 973.0.1.* + license: APSL-2.0 + license_family: Other + size: 19091 + timestamp: 1697075759131 +- conda: https://conda.anaconda.org/conda-forge/osx-64/ld64-951.9-h0a3eb4e_3.conda + sha256: 29dc82cb8091825569775317147ba6fb51c4fa92a87284dd8d23c6f0bb088e28 + md5: a25f36a723e572be4146c11843462c49 + depends: + - ld64_osx-64 951.9 hb154072_3 + - libllvm17 >=17.0.6,<17.1.0a0 + constrains: + - cctools_osx-64 1010.6.* + - cctools 1010.6.* + license: APSL-2.0 + license_family: Other + size: 18584 + timestamp: 1738620987558 +- conda: https://conda.anaconda.org/conda-forge/osx-64/ld64-951.9-ha02d983_1.conda + sha256: 4a27102c8451ce30b3c2d90722826e8bd02e9bb3b92cd5afaa08c65bbe6447f5 + md5: 8991ffc3c5c410692d8740de4cb92849 + depends: + - ld64_osx-64 951.9 h3516399_1 + - libllvm16 >=16.0.6,<16.1.0a0 + constrains: + - cctools 1010.6.* + - cctools_osx-64 1010.6.* + license: APSL-2.0 + license_family: Other + size: 18850 + timestamp: 1726771680769 +- conda: https://conda.anaconda.org/conda-forge/osx-64/ld64-954.16-h4e51db5_0.conda + sha256: c03cbac3550460fbf685dccd8df486ce0680abfd609ccec0407a852b9a055e0b + md5: 98b4c4a0eb19523f11219ea5cc21c17b + depends: + - ld64_osx-64 954.16 h28b3ac7_0 + - libllvm18 >=18.1.8,<18.2.0a0 + constrains: + - cctools 1021.4.* + - cctools_osx-64 1021.4.* + license: APSL-2.0 + license_family: Other + size: 18815 + timestamp: 1752818984788 +- conda: https://conda.anaconda.org/conda-forge/osx-64/ld64-956.6-llvm19_1_hc3792c1_4.conda + sha256: 6f821c4c6a19722162ef2905c45e0f8034544dab70bb86c647fb4e022a9c27b4 + md5: 4d51a4b9f959c1fac780645b9d480a82 + depends: + - ld64_osx-64 956.6 llvm19_1_hcae3351_4 + - libllvm19 >=19.1.7,<19.2.0a0 + constrains: + - cctools 1030.6.3.* + - cctools_osx-64 1030.6.3.* + license: APSL-2.0 + license_family: Other + size: 21560 + timestamp: 1768852832804 +- conda: https://conda.anaconda.org/conda-forge/osx-64/ld64-956.6-llvm20_1_h2b71b23_4.conda + sha256: 7e163285fb13393abf04107b2fab0f809f643dd20e5eca922049ce5ee850e146 + md5: e0d290abd3879e0b8b7070a1ae6ddcf5 + depends: + - ld64_osx-64 956.6 llvm20_1_hb7237e5_4 + - libllvm20 >=20.1.8,<20.2.0a0 + constrains: + - cctools 1030.6.3.* + - cctools_osx-64 1030.6.3.* + license: APSL-2.0 + license_family: Other + size: 21548 + timestamp: 1768852698535 +- conda: https://conda.anaconda.org/conda-forge/osx-64/ld64-956.6-llvm21_1_h2eed689_4.conda + sha256: 6d38d89fafe6e9e582071f7b143feee7e7194f7744a2081aaec660e66eb883d5 + md5: 64f4409859e18b20b46d9dbd6162d8c1 + depends: + - ld64_osx-64 956.6 llvm21_1_h41cbea9_4 + - libllvm21 >=21.1.8,<21.2.0a0 + constrains: + - cctools_osx-64 1030.6.3.* + - cctools 1030.6.3.* + license: APSL-2.0 + license_family: Other + size: 21561 + timestamp: 1768852732397 +- conda: https://conda.anaconda.org/conda-forge/osx-64/ld64-956.6-llvm22_1_hc399b6d_4.conda + sha256: a4ac125329e14d407ecb2c074412a0af6f78256989db82d83c4a02e93912c88e + md5: 3d56483ae79e9c75e32e913e94b520da + depends: + - ld64_osx-64 956.6 llvm22_1_h163eae7_4 + - libllvm22 >=22.1.0,<22.2.0a0 + constrains: + - cctools 1030.6.3.* + - cctools_osx-64 1030.6.3.* + license: APSL-2.0 + license_family: Other + size: 21781 + timestamp: 1772019075404 +- conda: https://conda.anaconda.org/conda-forge/osx-64/ld64_osx-64-609-h0fd476b_15.conda + sha256: 6d793058554a46ffd4a059bf3bd33741856bfcbdaeab8e11cc1dc2df1137f7f0 + md5: f98d11f8e568521e1e3f88cbe5a4d53c + depends: + - libcxx + - libllvm15 >=15.0.7,<15.1.0a0 + - sigtool + - tapi >=1100.0.11,<1101.0a0 + constrains: + - cctools 973.0.1.* + - ld 609.* + - clang >=15.0.7,<16.0a0 + - cctools_osx-64 973.0.1.* + license: APSL-2.0 + license_family: Other + size: 1062203 + timestamp: 1697075547194 +- conda: https://conda.anaconda.org/conda-forge/osx-64/ld64_osx-64-951.9-h3516399_1.conda + sha256: 03417d5a379bf8e7b2ac99000d9af836cae53b843e02de7cea066c4ddd88767c + md5: 4656f00ccd13a49804387450302c4f45 + depends: + - __osx >=10.13 + - libcxx + - libllvm16 >=16.0.6,<16.1.0a0 + - sigtool + - tapi >=1300.6.5,<1301.0a0 + constrains: + - clang >=16.0.6,<17.0a0 + - cctools 1010.6.* + - cctools_osx-64 1010.6.* + - ld 951.9.* + license: APSL-2.0 + license_family: Other + size: 1088101 + timestamp: 1726771578888 +- conda: https://conda.anaconda.org/conda-forge/osx-64/ld64_osx-64-951.9-hb154072_3.conda + sha256: 5481cd440e4866359d66bc871b78f66fb8af41bd0ece5a7f96dc780554648d17 + md5: 65b21b3287de264b294f23bdff930056 + depends: + - __osx >=10.13 + - libcxx + - libllvm17 >=17.0.6,<17.1.0a0 + - sigtool + - tapi >=1300.6.5,<1301.0a0 + constrains: + - cctools_osx-64 1010.6.* + - cctools 1010.6.* + - ld 951.9.* + - clang >=17.0.6,<18.0a0 + license: APSL-2.0 + license_family: Other + size: 1100078 + timestamp: 1738620902557 +- conda: https://conda.anaconda.org/conda-forge/osx-64/ld64_osx-64-954.16-h28b3ac7_0.conda + sha256: 9ec626913646076c7514f294f46191b27e43fd87da24e98577078651a9b425f0 + md5: e198e41dada835a065079e4c70905974 + depends: + - __osx >=10.13 + - libcxx + - libllvm18 >=18.1.8,<18.2.0a0 + - sigtool + - tapi >=1300.6.5,<1301.0a0 + constrains: + - cctools 1021.4.* + - ld 954.16.* + - clang >=18.1.8,<19.0a0 + - cctools_osx-64 1021.4.* + license: APSL-2.0 + license_family: Other + size: 1100874 + timestamp: 1752818929757 +- conda: https://conda.anaconda.org/conda-forge/osx-64/ld64_osx-64-956.6-llvm19_1_hcae3351_4.conda + sha256: 2ae4c885ea34bc976232fbfb8129a2a3f0a79b0f42a8f7437e06d571d1b6760c + md5: 2329a96b45c853dd22af9d11762f9057 + depends: + - __osx >=10.13 + - libcxx + - libllvm19 >=19.1.7,<19.2.0a0 + - sigtool-codesign + - tapi >=1600.0.11.8,<1601.0a0 + constrains: + - cctools 1030.6.3.* + - clang 19.1.* + - cctools_impl_osx-64 1030.6.3.* + - ld64 956.6.* + license: APSL-2.0 + license_family: Other + size: 1110678 + timestamp: 1768852747927 +- conda: https://conda.anaconda.org/conda-forge/osx-64/ld64_osx-64-956.6-llvm20_1_hb7237e5_4.conda + sha256: c697e45f359f23d13ecc678c971fe51ab4ed1dc12458ad77683ce87d9633317d + md5: 92ba1cd5702193deb2d25536e9dd9246 + depends: + - __osx >=10.13 + - libcxx + - libllvm20 >=20.1.8,<20.2.0a0 + - sigtool-codesign + - tapi >=1600.0.11.8,<1601.0a0 + constrains: + - cctools 1030.6.3.* + - ld64 956.6.* + - cctools_impl_osx-64 1030.6.3.* + - clang 20.1.* + license: APSL-2.0 + license_family: Other + size: 1116524 + timestamp: 1768852608416 +- conda: https://conda.anaconda.org/conda-forge/osx-64/ld64_osx-64-956.6-llvm21_1_h41cbea9_4.conda + sha256: a9c248ddf4d62201742cdeb13cc0fa886f8b8f23b20818f083a07c3b0639b578 + md5: 244a0b8c454bd007cc0b5259deca614c + depends: + - __osx >=10.13 + - libcxx + - libllvm21 >=21.1.8,<21.2.0a0 + - sigtool-codesign + - tapi >=1600.0.11.8,<1601.0a0 + constrains: + - clang 21.1.* + - cctools_impl_osx-64 1030.6.3.* + - cctools 1030.6.3.* + - ld64 956.6.* + license: APSL-2.0 + license_family: Other + size: 1112604 + timestamp: 1768852661931 +- conda: https://conda.anaconda.org/conda-forge/osx-64/ld64_osx-64-956.6-llvm22_1_h163eae7_4.conda + sha256: e49272192003e0e30edd6877197db3c220bb374a78d5b255d18c7a029cd33c1e + md5: 9e6646598daf11bd8ebc60d690162ebd + depends: + - __osx >=11.0 + - libcxx + - libllvm22 >=22.1.0,<22.2.0a0 + - sigtool-codesign + - tapi >=1600.0.11.8,<1601.0a0 + constrains: + - clang 22.1.* + - cctools 1030.6.3.* + - cctools_impl_osx-64 1030.6.3.* + - ld64 956.6.* + license: APSL-2.0 + license_family: Other + size: 1110951 + timestamp: 1772018988810 +- conda: https://conda.anaconda.org/conda-forge/osx-64/libboost-1.85.0-hcca3243_4.conda + sha256: a924f84611c4c5bd3f20aa12fa58c0618e98ce635f55ef7dc08420f4c843d509 + md5: 1fe98bdb347e35cfcb44e9ea86ae25de + depends: + - __osx >=10.13 + - bzip2 >=1.0.8,<2.0a0 + - icu >=75.1,<76.0a0 + - libcxx >=16 + - libzlib >=1.3.1,<2.0a0 + - xz >=5.2.6,<6.0a0 + - zstd >=1.5.6,<1.6.0a0 + constrains: + - boost-cpp =1.85.0 + license: BSL-1.0 + size: 2094881 + timestamp: 1722297382329 +- conda: https://conda.anaconda.org/conda-forge/osx-64/libboost-devel-1.85.0-h2b186f8_4.conda + sha256: a149385a85435e6462646b1cdde338f38ab278609d524a184e18124fd4565e68 + md5: 1ada4308e448d9847a0b87a7dd8ec08a + depends: + - libboost 1.85.0 hcca3243_4 + - libboost-headers 1.85.0 h694c41f_4 + constrains: + - boost-cpp =1.85.0 + license: BSL-1.0 + size: 42009 + timestamp: 1722297531327 +- conda: https://conda.anaconda.org/conda-forge/osx-64/libboost-headers-1.85.0-h694c41f_4.conda + sha256: 5320a7e48bd04889c85048a47a9ad41dda8d28762b06b55768c59263f30f49d0 + md5: 2629207b8c878b1d25042b8cd8d98e75 + constrains: + - boost-cpp =1.85.0 + license: BSL-1.0 + size: 14131273 + timestamp: 1722297410169 +- conda: https://conda.anaconda.org/conda-forge/osx-64/libclang-15.0.7-default_h7151d67_5.conda + sha256: ea3c840b7e931228007f1dc21c1cfe8e3e833990da9e92fff9c23c98d035b89a + md5: 2e7eb31c1431630f111be17f7f0cb948 + depends: + - libclang13 15.0.7 default_h0edc4dd_5 + - libcxx >=16.0.6 + - libllvm15 >=15.0.7,<15.1.0a0 + license: Apache-2.0 WITH LLVM-exception + license_family: Apache + size: 133819 + timestamp: 1711067667338 +- conda: https://conda.anaconda.org/conda-forge/osx-64/libclang-16.0.6-default_h4651f56_15.conda + sha256: 2bf978fdcffefae6ef3849134150b00ff9a51aed4990236eb016033aeb6e500a + md5: dde61cdbb060399a7b0c6bae704d74d0 + depends: + - __osx >=10.13 + - libclang13 16.0.6 default_ha4b2958_15 + - libcxx >=16.0.6 + - libllvm16 >=16.0.6,<16.1.0a0 + license: Apache-2.0 WITH LLVM-exception + license_family: Apache + size: 92303 + timestamp: 1756167540062 +- conda: https://conda.anaconda.org/conda-forge/osx-64/libclang-17.0.6-default_h3571c67_8.conda + sha256: b92194646c43dd9f54c3fe00bc4de3f8046e2d88cc4483085dd61e8f510d2837 + md5: 06e9e4949dbb2e2ad03e61d2af4b128f + depends: + - __osx >=10.13 + - libclang13 17.0.6 default_hf2b7afa_8 + - libcxx >=17.0.6 + - libllvm17 >=17.0.6,<17.1.0a0 + license: Apache-2.0 WITH LLVM-exception + license_family: Apache + size: 24343 + timestamp: 1738084098375 +- conda: https://conda.anaconda.org/conda-forge/osx-64/libclang-18.1.8-default_h9399c5b_18.conda + sha256: cacd5d2b124d703206f6bdd8e3721e0b3e8a4ef8e25058ab485c787979d84017 + md5: 4eff7f08985729e9d0a9bdcb171dd28d + depends: + - __osx >=11.0 + - libclang13 18.1.8 default_h2429e1b_18 + - libcxx >=18.1.8 + - libllvm18 >=18.1.8,<18.2.0a0 + license: Apache-2.0 WITH LLVM-exception + license_family: Apache + size: 93716 + timestamp: 1773506634803 +- conda: https://conda.anaconda.org/conda-forge/osx-64/libclang-19.1.7-default_h9399c5b_9.conda + sha256: 5f3b0bf919bf72a7753d6da3061985777dedbc5236858ba9d072ac3c80f033fe + md5: 60e1ad493b2c626e6495c7e01eb09d34 + depends: + - __osx >=11.0 + - libclang13 19.1.7 default_h2429e1b_9 + - libcxx >=19.1.7 + - libllvm19 >=19.1.7,<19.2.0a0 + license: Apache-2.0 WITH LLVM-exception + license_family: Apache + size: 25118 + timestamp: 1776984793780 +- conda: https://conda.anaconda.org/conda-forge/osx-64/libclang-20.1.8-default_h9399c5b_15.conda + sha256: be9e245f555e0d31ddf3f962a49d271b600ce425c867e44bdc9b197b51b1c1df + md5: aa0d0c63cff0d60cbe0a394d8212cdc0 + depends: + - __osx >=11.0 + - libclang13 20.1.8 default_h2429e1b_15 + - libcxx >=20.1.8 + - libllvm20 >=20.1.8,<20.2.0a0 + license: Apache-2.0 WITH LLVM-exception + license_family: Apache + size: 71019 + timestamp: 1776985760497 +- conda: https://conda.anaconda.org/conda-forge/osx-64/libclang-21.1.8-default_hd70426c_4.conda + sha256: 77802ca842612b375109c25fbdbe8ffa64235b5d1041f7457301b7238cb16da5 + md5: c15796578f918f54dc691423ffe58f88 + depends: + - __osx >=10.13 + - libclang13 21.1.8 default_h5e75a71_4 + - libcxx >=21.1.8 + - libllvm21 >=21.1.8,<21.2.0a0 + license: Apache-2.0 WITH LLVM-exception + license_family: Apache + size: 28685 + timestamp: 1777006646038 +- conda: https://conda.anaconda.org/conda-forge/osx-64/libclang-22.1.5-default_h9399c5b_1.conda + sha256: af523bf681a09244772f1b415b812e92a02800520296d63febf1fe509e794220 + md5: f6fa031ca8cb46d7122649e69692bd99 + depends: + - __osx >=11.0 + - libclang13 22.1.5 default_h2429e1b_1 + - libcxx >=22.1.5 + - libllvm22 >=22.1.5,<22.2.0a0 + license: Apache-2.0 WITH LLVM-exception + license_family: Apache + size: 28487 + timestamp: 1778482646940 +- conda: https://conda.anaconda.org/conda-forge/osx-64/libclang-cpp-15.0.7-default_h7151d67_5.conda + sha256: f09017ff751f5da40074ee7c0442df39c00b7da056a3b7848bcfd32b6d0f321f + md5: b2802fb79afe44624b28d9da523039ce + depends: + - libclang-cpp15 15.0.7 default_h7151d67_5 + - libcxx >=16.0.6 + - libllvm15 >=15.0.7,<15.1.0a0 + license: Apache-2.0 WITH LLVM-exception + license_family: Apache + size: 133830 + timestamp: 1711067354312 +- conda: https://conda.anaconda.org/conda-forge/osx-64/libclang-cpp-16.0.6-default_h4651f56_15.conda + sha256: ca9389a75cff5969caf5f9ebcb9abfb4166c305919bcf8bed1157749250f0aa2 + md5: 4fc1bb57033f5d5ea518696a442549ff + depends: + - __osx >=10.13 + - libclang-cpp16 16.0.6 default_h4651f56_15 + - libcxx >=16.0.6 + - libllvm16 >=16.0.6,<16.1.0a0 + license: Apache-2.0 WITH LLVM-exception + license_family: Apache + size: 92290 + timestamp: 1756167157815 +- conda: https://conda.anaconda.org/conda-forge/osx-64/libclang-cpp-17.0.6-default_h3571c67_8.conda + sha256: a9b7e5614903ab9ff1d3575683b594d4de926646c52947e5ba11e80dc080fc39 + md5: 770b219d8164d3cac14bcded7d823224 + depends: + - __osx >=10.13 + - libclang-cpp17 17.0.6 default_h3571c67_8 + - libcxx >=17.0.6 + - libllvm17 >=17.0.6,<17.1.0a0 + license: Apache-2.0 WITH LLVM-exception + license_family: Apache + size: 24355 + timestamp: 1738083867168 +- conda: https://conda.anaconda.org/conda-forge/osx-64/libclang-cpp-18.1.8-default_h9399c5b_18.conda + sha256: 34d9ae074447f019703da7c5cc915e0950707fdf6c68e5bf245c4cd407e8fcb6 + md5: 5607595d9f33fcbaee5bf8a817b0b0f8 + depends: + - __osx >=11.0 + - libclang-cpp18.1 18.1.8 default_h9399c5b_18 + - libcxx >=18.1.8 + - libllvm18 >=18.1.8,<18.2.0a0 + license: Apache-2.0 WITH LLVM-exception + license_family: Apache + size: 93795 + timestamp: 1773506340971 +- conda: https://conda.anaconda.org/conda-forge/osx-64/libclang-cpp-19.1.7-default_h9399c5b_9.conda + sha256: 97738fd00db8d5d97db1a8d7ab57758ea5b0025fa49a80d30c33bd42146ec952 + md5: 1e1330bf7db8c1e3701b81f04cdd3bcb + depends: + - __osx >=11.0 + - libclang-cpp19.1 19.1.7 default_h9399c5b_9 + - libcxx >=19.1.7 + - libllvm19 >=19.1.7,<19.2.0a0 + license: Apache-2.0 WITH LLVM-exception + license_family: Apache + size: 25119 + timestamp: 1776984821402 +- conda: https://conda.anaconda.org/conda-forge/osx-64/libclang-cpp-20.1.8-default_h9399c5b_15.conda + sha256: b326e34d1a9de7b9cad826f90620ab420afa958d916bba206467515e547be91a + md5: 006059d329fd452d4772bc19dc76c83b + depends: + - __osx >=11.0 + - libclang-cpp20.1 20.1.8 default_h9399c5b_15 + - libcxx >=20.1.8 + - libllvm20 >=20.1.8,<20.2.0a0 + license: Apache-2.0 WITH LLVM-exception + license_family: Apache + size: 71027 + timestamp: 1776985784937 +- conda: https://conda.anaconda.org/conda-forge/osx-64/libclang-cpp-21.1.8-default_hd70426c_4.conda + sha256: 0be15c2ad0c5c18cdb644cecd511a9a57204353981dab1393370417d083162b5 + md5: ac824d0bc9095ac2ed9f4bf9ebfb8fdd + depends: + - __osx >=10.13 + - libclang-cpp21.1 21.1.8 default_hd70426c_4 + - libcxx >=21.1.8 + - libllvm21 >=21.1.8,<21.2.0a0 + license: Apache-2.0 WITH LLVM-exception + license_family: Apache + size: 28565 + timestamp: 1777006249433 +- conda: https://conda.anaconda.org/conda-forge/osx-64/libclang-cpp-22.1.5-default_h9399c5b_1.conda + sha256: fcd3a041a2d8f8ede43083f0e5ce206b5e31da1360e79209795c87665affb64c + md5: 265a16eceed80fa9a81b2cddc812d04d + depends: + - __osx >=11.0 + - libclang-cpp22.1 22.1.5 default_h9399c5b_1 + - libcxx >=22.1.5 + - libllvm22 >=22.1.5,<22.2.0a0 + license: Apache-2.0 WITH LLVM-exception + license_family: Apache + size: 28385 + timestamp: 1778482127952 +- conda: https://conda.anaconda.org/conda-forge/osx-64/libclang-cpp15-15.0.7-default_h7151d67_5.conda + sha256: 0389c856f8524615e29980ed15ad39cdca6bbd01de35ddf5f6550392db943838 + md5: ec9151310badcf29fa53ae554273e269 + depends: + - libcxx >=16.0.6 + - libllvm15 >=15.0.7,<15.1.0a0 + license: Apache-2.0 WITH LLVM-exception + license_family: Apache + size: 12345888 + timestamp: 1711067079759 +- conda: https://conda.anaconda.org/conda-forge/osx-64/libclang-cpp16-16.0.6-default_h4651f56_15.conda + sha256: 04f882afadb3af2e373efb5f542e8ff6b3aaea8326bf85b7445b9c727d1e0135 + md5: 5d3cb1a184771445034f2113ba543827 + depends: + - __osx >=10.13 + - libcxx >=16.0.6 + - libllvm16 >=16.0.6,<16.1.0a0 + license: Apache-2.0 WITH LLVM-exception + license_family: Apache + size: 12759044 + timestamp: 1756166818220 +- conda: https://conda.anaconda.org/conda-forge/osx-64/libclang-cpp17-17.0.6-default_h3571c67_8.conda + sha256: a20a69f4b971ae33d80a14903dd6b654ff05ee56f4c3fda4a7415ac6df38aea5 + md5: 448cfb783b49dd497c41c75e570e220c + depends: + - __osx >=10.13 + - libcxx >=17.0.6 + - libllvm17 >=17.0.6,<17.1.0a0 + license: Apache-2.0 WITH LLVM-exception + license_family: Apache + size: 13320234 + timestamp: 1738083437720 +- conda: https://conda.anaconda.org/conda-forge/osx-64/libclang-cpp18.1-18.1.8-default_h9399c5b_18.conda + sha256: da56ace15fb8b90db4fce6aaea7a64664bc0b0c621b8618be380800af61348b8 + md5: 7b376da12657aec0ef20c54c75894120 + depends: + - __osx >=11.0 + - libcxx >=18.1.8 + - libllvm18 >=18.1.8,<18.2.0a0 + license: Apache-2.0 WITH LLVM-exception + license_family: Apache + size: 14084660 + timestamp: 1773506068792 +- conda: https://conda.anaconda.org/conda-forge/osx-64/libclang-cpp19.1-19.1.7-default_h9399c5b_9.conda + sha256: 05845abab074f2fe17f2abe7d96eef967b3fa6552799399a00331995f6e5ffa2 + md5: 9382ae02bf45b4f8bd1e0fb0e5ee936c + 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: 14856061 + timestamp: 1776984570408 +- conda: https://conda.anaconda.org/conda-forge/osx-64/libclang-cpp20.1-20.1.8-default_h9399c5b_15.conda + sha256: a34dde7ba9b102bd2a8363afc79689ea439270ce6c155d81a542b5ebefd2121b + md5: 74899a896a3865600b4f111dd70bca5d + 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: 14724920 + timestamp: 1776985477298 +- conda: https://conda.anaconda.org/conda-forge/osx-64/libclang-cpp21.1-21.1.8-default_hd70426c_4.conda + sha256: b562f4e4ed75bb2d96e6491cc9f434f76a10b160ef790a0d6f1ea7982950ffe3 + md5: 079727a79a718f8a25fa2a5cc2fe126d + depends: + - __osx >=10.13 + - libcxx >=21.1.8 + - libllvm21 >=21.1.8,<21.2.0a0 + license: Apache-2.0 WITH LLVM-exception + license_family: Apache + size: 14459016 + timestamp: 1777005969533 +- conda: https://conda.anaconda.org/conda-forge/osx-64/libclang-cpp22.1-22.1.5-default_h9399c5b_1.conda + sha256: 50dd61958de6f89b2b79936cca4f4fc7ae6c19ebe0411e7d1562af1fe6f704ae + md5: 63f3d19f6e520153f6377ad1ca45080b + depends: + - __osx >=11.0 + - libcxx >=22.1.5 + - libllvm22 >=22.1.5,<22.2.0a0 + license: Apache-2.0 WITH LLVM-exception + license_family: Apache + size: 15010974 + timestamp: 1778481700126 +- conda: https://conda.anaconda.org/conda-forge/osx-64/libclang13-15.0.7-default_h0edc4dd_5.conda + sha256: fec1ff1ae4a49f96eefeae9dd14ea8d9e591fc29995861ad49e92104ae6bb8e6 + md5: 3bfcf640ab0956a9db86335e917100e3 + depends: + - libcxx >=16.0.6 + - libllvm15 >=15.0.7,<15.1.0a0 + license: Apache-2.0 WITH LLVM-exception + license_family: Apache + size: 6952364 + timestamp: 1711067548768 +- conda: https://conda.anaconda.org/conda-forge/osx-64/libclang13-16.0.6-default_ha4b2958_15.conda + sha256: 2724daa8772e779a52374672d42bb1eb1ba5b0b5fb8d51a4da4bfdfe25108e0a + md5: fd4225423cbecac2b354c2242d014311 + depends: + - __osx >=10.13 + - libcxx >=16.0.6 + - libllvm16 >=16.0.6,<16.1.0a0 + license: Apache-2.0 WITH LLVM-exception + license_family: Apache + size: 7424942 + timestamp: 1756167380138 +- conda: https://conda.anaconda.org/conda-forge/osx-64/libclang13-17.0.6-default_hf2b7afa_8.conda + sha256: 36314e9cea7218dcee4ce6f8900cb02810094445c5610331d66260cad16408f6 + md5: 16ea3de4cecfbdfe801cf0163f3552eb + depends: + - __osx >=10.13 + - libcxx >=17.0.6 + - libllvm17 >=17.0.6,<17.1.0a0 + license: Apache-2.0 WITH LLVM-exception + license_family: Apache + size: 7781316 + timestamp: 1738083989716 +- conda: https://conda.anaconda.org/conda-forge/osx-64/libclang13-18.1.8-default_h2429e1b_18.conda + sha256: 2af6f725d3c92fdaf146cc2deb7fdee10f62ebd97dc2ec4357b7f58db3bc0c81 + md5: d98b17af1e60b86e74973c008bf5283b + depends: + - __osx >=11.0 + - libcxx >=18.1.8 + - libllvm18 >=18.1.8,<18.2.0a0 + license: Apache-2.0 WITH LLVM-exception + license_family: Apache + size: 8424579 + timestamp: 1773506507190 +- conda: https://conda.anaconda.org/conda-forge/osx-64/libclang13-19.1.7-default_h2429e1b_9.conda + sha256: 32a84b71eda3893d170a0478b718a6ba90258ddc99a2707ffb04e68091d7bb50 + md5: f8f3f8ba642fea1d9e4dca0cdb72da34 + 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: 8915981 + timestamp: 1776984662667 +- conda: https://conda.anaconda.org/conda-forge/osx-64/libclang13-20.1.8-default_h2429e1b_15.conda + sha256: c65c424b9255558a462160625d6d55d6245aa981775f8947252bd3d6d9d1b021 + md5: 46660ba25f816ec6e724bb59ac71e862 + 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: 8906348 + timestamp: 1776985583432 +- conda: https://conda.anaconda.org/conda-forge/osx-64/libclang13-21.1.8-default_h5e75a71_4.conda + sha256: 294557f6519e7e0c63c2c02b33956e9a4444770bd2f122c980f241a894bb666f + md5: a9b91bb5799f6ca8094c79f8faa29787 + depends: + - __osx >=10.13 + - libcxx >=21.1.8 + - libllvm21 >=21.1.8,<21.2.0a0 + license: Apache-2.0 WITH LLVM-exception + license_family: Apache + size: 9010293 + timestamp: 1777006525995 +- conda: https://conda.anaconda.org/conda-forge/osx-64/libclang13-22.1.5-default_h2429e1b_1.conda + sha256: 56c12f6e81026c71719d42943125a34e397ac92c45aad574935d40605e1b9134 + md5: 5851a3f36d0426ae542a7bdb80321a5a + depends: + - __osx >=11.0 + - libcxx >=22.1.5 + - libllvm22 >=22.1.5,<22.2.0a0 + license: Apache-2.0 WITH LLVM-exception + license_family: Apache + size: 9461652 + timestamp: 1778482410626 +- conda: https://conda.anaconda.org/conda-forge/osx-64/libcompiler-rt-21.1.8-he914875_1.conda + sha256: 79380375b0575558911b2a033626ce67068571dd370f83b9adae5abb2c4a0e5d + md5: 6ceaf1b1d198eb2bc8b61c650c7d70f3 + depends: + - __osx >=10.13 + constrains: + - compiler-rt >=9.0.1 + license: Apache-2.0 WITH LLVM-exception + license_family: APACHE + size: 1329678 + timestamp: 1769057700380 +- conda: https://conda.anaconda.org/conda-forge/osx-64/libcompiler-rt-22.1.5-h1637cdf_1.conda + sha256: 6ae33ecd79302ece4718ad5b2b3297cea716ee063e3c50616e1b95b712f4fee6 + md5: 8835313a85a2e8631d5029ee1b0ac79f + depends: + - __osx >=11.0 + constrains: + - compiler-rt >=9.0.1 + license: Apache-2.0 WITH LLVM-exception + license_family: APACHE + size: 1368554 + timestamp: 1778194969800 +- conda: https://conda.anaconda.org/conda-forge/osx-64/libcurl-8.20.0-h8f0b9e4_0.conda + sha256: 5d3d8a82ca43347e96f1d79048921f3a7c25e32514bc7feb53ed2a040dcca54d + md5: 4a0085ccf90dc514f0fc0909a874045e + depends: + - __osx >=11.0 + - krb5 >=1.22.2,<1.23.0a0 + - libnghttp2 >=1.68.1,<2.0a0 + - libssh2 >=1.11.1,<2.0a0 + - libzlib >=1.3.2,<2.0a0 + - openssl >=3.5.6,<4.0a0 + - zstd >=1.5.7,<1.6.0a0 + license: curl + license_family: MIT + size: 419676 + timestamp: 1777462238769 +- conda: https://conda.anaconda.org/conda-forge/osx-64/libcxx-22.1.5-h19cb2f5_1.conda + sha256: 8f3d495df4427d9285ae25a51d32123ca251c32abebcef020fddb8ac1f200894 + md5: 56fa8b3e43d26c97da88aea4e958f616 + depends: + - __osx >=11.0 + license: Apache-2.0 WITH LLVM-exception + license_family: Apache + size: 567420 + timestamp: 1778192020253 +- conda: https://conda.anaconda.org/conda-forge/osx-64/libcxx-devel-16.0.6-h8f8a49f_2.conda + sha256: 1c1c6f6f4eca07be3f03929c59c2dd077da3c676fbf5e92c0df3bad2a4f069ab + md5: 677580dee2d1412311d9dd9bf6bfa6b7 + depends: + - libcxx >=16.0.6 + license: Apache-2.0 WITH LLVM-exception + license_family: Apache + size: 716532 + timestamp: 1725067685814 +- conda: https://conda.anaconda.org/conda-forge/osx-64/libcxx-devel-17.0.6-h8f8a49f_6.conda + sha256: 3b23efafbf36b8d30bbd2f421e189ef4eb805ac29e65249c174391c23afd665b + md5: faa013d493ffd2d5f2d2fc6df5f98f2e + depends: + - libcxx >=17.0.6 + license: Apache-2.0 WITH LLVM-exception + license_family: Apache + size: 822480 + timestamp: 1725403649896 +- conda: https://conda.anaconda.org/conda-forge/osx-64/libcxx-devel-18.1.8-h7c275be_8.conda + sha256: cb3cce2b312aa1fb7391672807001bbab4d6e2deb16d912caecf6219f58ee1f4 + md5: a9513c41f070a9e2d5c370ba5d6c0c00 + depends: + - libcxx >=18.1.8 + license: Apache-2.0 WITH LLVM-exception + license_family: Apache + size: 794361 + timestamp: 1742451346844 +- conda: https://conda.anaconda.org/conda-forge/osx-64/libcxx-devel-19.1.7-h7c275be_2.conda + sha256: 760af3509e723d8ee5a9baa7f923a213a758b3a09e41ffdaf10f3a474898ab3f + md5: 52031c3ab8857ea8bcc96fe6f1b6d778 + depends: + - libcxx >=19.1.7 + - libcxx-headers >=19.1.7,<19.1.8.0a0 + license: Apache-2.0 WITH LLVM-exception + license_family: Apache + size: 23069 + timestamp: 1764648572536 +- conda: https://conda.anaconda.org/conda-forge/osx-64/libcxx-devel-20.1.8-h7c275be_3.conda + sha256: 1883788a6cb2d879a0c88fb33f6a680c3249491087878610e77f33ee202b3b2c + md5: 4c8e572b874e3f80d145d4faa46cf81b + depends: + - libcxx >=20.1.8 + - libcxx-headers >=20.1.8,<20.1.9.0a0 + license: Apache-2.0 WITH LLVM-exception + license_family: Apache + size: 21865 + timestamp: 1764635936721 +- conda: https://conda.anaconda.org/conda-forge/osx-64/libcxx-devel-21.1.8-h7c275be_3.conda + sha256: b138a152d319cb83025e7d720c81980c5da9ee313a58c9b2b60e977c2ef495eb + md5: 390be8c770b530a4e66f56bd25eeec4d + depends: + - libcxx >=21.1.8 + - libcxx-headers >=21.1.8,<21.1.9.0a0 + license: Apache-2.0 WITH LLVM-exception + license_family: Apache + size: 22101 + timestamp: 1771995612000 +- conda: https://conda.anaconda.org/conda-forge/osx-64/libcxx-devel-22.1.5-h7c275be_1.conda + sha256: 2d0f2105073b1e60696549597cff4a8dfa8d7cb543e547a9b51d196ec1bbb20c + md5: a9542bea7d4002788a6c917121a5787e + depends: + - libcxx >=22.1.5 + - libcxx-headers >=22.1.5,<22.1.6.0a0 + license: Apache-2.0 WITH LLVM-exception + license_family: Apache + size: 22140 + timestamp: 1778192053168 +- conda: https://conda.anaconda.org/conda-forge/osx-64/libedit-3.1.20250104-pl5321ha958ccf_0.conda + sha256: 6cc49785940a99e6a6b8c6edbb15f44c2dd6c789d9c283e5ee7bdfedd50b4cd6 + md5: 1f4ed31220402fcddc083b4bff406868 + depends: + - ncurses + - __osx >=10.13 + - ncurses >=6.5,<7.0a0 + license: BSD-2-Clause + license_family: BSD + size: 115563 + timestamp: 1738479554273 +- conda: https://conda.anaconda.org/conda-forge/osx-64/libev-4.33-h10d778d_2.conda + sha256: 0d238488564a7992942aa165ff994eca540f687753b4f0998b29b4e4d030ff43 + md5: 899db79329439820b7e8f8de41bca902 + license: BSD-2-Clause + license_family: BSD + size: 106663 + timestamp: 1702146352558 +- conda: https://conda.anaconda.org/conda-forge/osx-64/libexpat-2.8.0-hcc62823_0.conda + sha256: 5ebcc413d0a75da926a8b9b681d7d12c9562993991ba49c90a9881c4a59bdc11 + md5: d2e01f78c1daaeb4d2aa870125ebcd7e + depends: + - __osx >=11.0 + constrains: + - expat 2.8.0.* + license: MIT + license_family: MIT + size: 75242 + timestamp: 1777846416221 +- conda: https://conda.anaconda.org/conda-forge/osx-64/libiconv-1.18-h57a12c2_2.conda + sha256: a1c8cecdf9966921e13f0ae921309a1f415dfbd2b791f2117cf7e8f5e61a48b6 + md5: 210a85a1119f97ea7887188d176db135 + depends: + - __osx >=10.13 + license: LGPL-2.1-only + size: 737846 + timestamp: 1754908900138 +- conda: https://conda.anaconda.org/conda-forge/osx-64/libllvm15-15.0.7-hc29ff6c_5.conda + sha256: 0e1ebc432627c18cff4f49096c681f63a3f0c4626a42f3fc483c3751d316e662 + md5: 526506b4e6846e8e95fc704b9f7a7171 + depends: + - __osx >=10.13 + - 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: 23861511 + timestamp: 1739672679349 +- conda: https://conda.anaconda.org/conda-forge/osx-64/libllvm16-16.0.6-hbedff68_3.conda + sha256: ad848dc0bb02b1dbe54324ee5700b050a2e5f63c095f5229b2de58249a3e268e + md5: 8fd56c0adc07a37f93bd44aa61a97c90 + depends: + - libcxx >=16 + - libxml2 >=2.12.1,<2.14.0a0 + - libzlib >=1.2.13,<2.0.0a0 + - zstd >=1.5.5,<1.6.0a0 + license: Apache-2.0 WITH LLVM-exception + license_family: Apache + size: 25196932 + timestamp: 1701379796962 +- conda: https://conda.anaconda.org/conda-forge/osx-64/libllvm17-17.0.6-hbedff68_1.conda + sha256: 605460ecc4ccc04163d0b06c99693864e5bcba7a9f014a5263c9856195282265 + md5: fcd38f0553a99fa279fb66a5bfc2fb28 + depends: + - libcxx >=16 + - libxml2 >=2.12.1,<2.14.0a0 + - libzlib >=1.2.13,<2.0.0a0 + - zstd >=1.5.5,<1.6.0a0 + license: Apache-2.0 WITH LLVM-exception + license_family: Apache + size: 26306756 + timestamp: 1701378823527 +- conda: https://conda.anaconda.org/conda-forge/osx-64/libllvm18-18.1.8-default_h9399c5b_12.conda + sha256: 973d4051b67b68d8a5b9d919d60986ee58967e121200176166f45972ef73de87 + md5: 9daaadc06dfd7575ffbcbac47bf66f95 + depends: + - __osx >=11.0 + - libcxx >=19 + - libxml2 + - libxml2-16 >=2.14.6 + - libzlib >=1.3.1,<2.0a0 + - zstd >=1.5.7,<1.6.0a0 + license: Apache-2.0 WITH LLVM-exception + license_family: Apache + size: 27747231 + timestamp: 1773653536463 +- conda: https://conda.anaconda.org/conda-forge/osx-64/libllvm19-19.1.7-h56e7563_2.conda + sha256: 375a634873b7441d5101e6e2a9d3a42fec51be392306a03a2fa12ae8edecec1a + md5: 05a54b479099676e75f80ad0ddd38eff + depends: + - __osx >=10.13 + - libcxx >=19 + - libxml2 + - libxml2-16 >=2.14.5 + - libzlib >=1.3.1,<2.0a0 + - zstd >=1.5.7,<1.6.0a0 + license: Apache-2.0 WITH LLVM-exception + license_family: Apache + size: 28801374 + timestamp: 1757354631264 +- conda: https://conda.anaconda.org/conda-forge/osx-64/libllvm20-20.1.8-h56e7563_1.conda + sha256: d61976b0938af6025de5907486f6c4686c6192e9842d9fc9873eb7f50815e17d + md5: 862eed3ed84906f3387d15ac20075a0d + depends: + - __osx >=10.13 + - libcxx >=19 + - libxml2 + - libxml2-16 >=2.14.5 + - libzlib >=1.3.1,<2.0a0 + - zstd >=1.5.7,<1.6.0a0 + license: Apache-2.0 WITH LLVM-exception + license_family: Apache + size: 30758108 + timestamp: 1757354844443 +- conda: https://conda.anaconda.org/conda-forge/osx-64/libllvm21-21.1.8-h56e7563_0.conda + sha256: b98962b93624f52399aa748cc66dea7d6aae0a20db6decadc979db151928d214 + md5: 8f26c2dbe4213a12b6595f4b941ac9cb + depends: + - __osx >=10.13 + - libcxx >=19 + - libxml2 + - libxml2-16 >=2.14.6 + - libzlib >=1.3.1,<2.0a0 + - zstd >=1.5.7,<1.6.0a0 + license: Apache-2.0 WITH LLVM-exception + license_family: Apache + size: 31433093 + timestamp: 1765929081793 +- conda: https://conda.anaconda.org/conda-forge/osx-64/libllvm22-22.1.5-hab754da_1.conda + sha256: 2c89fa10baef69c47539aca47e87056c83288ad1295db94b1bef8d114447cc71 + md5: a676d7e0432a0b3eee978781f6ab26a6 + depends: + - __osx >=11.0 + - libcxx >=19 + - libxml2 + - libxml2-16 >=2.14.6 + - libzlib >=1.3.2,<2.0a0 + - zstd >=1.5.7,<1.6.0a0 + license: Apache-2.0 WITH LLVM-exception + license_family: Apache + size: 31839823 + timestamp: 1778420752326 +- conda: https://conda.anaconda.org/conda-forge/osx-64/liblzma-5.8.3-hbb4bfdb_0.conda + sha256: d9e2006051529aec5578c6efeb13bb6a7200a014b2d5a77a579e83a8049d5f3c + md5: becdfbfe7049fa248e52aa37a9df09e2 + depends: + - __osx >=11.0 + constrains: + - xz 5.8.3.* + license: 0BSD + size: 105724 + timestamp: 1775826029494 +- conda: https://conda.anaconda.org/conda-forge/osx-64/liblzma-devel-5.8.3-hbb4bfdb_0.conda + sha256: 05f845d7f29691f8410665297a4fd168261aaa2710993e9e21effd66365c080d + md5: a59a33afff299f2d95fdabbd1214f4f1 + depends: + - __osx >=11.0 + - liblzma 5.8.3 hbb4bfdb_0 + license: 0BSD + size: 118185 + timestamp: 1775826064340 +- conda: https://conda.anaconda.org/conda-forge/osx-64/libnghttp2-1.68.1-h70048d4_0.conda + sha256: 899551e16aac9dfb85bfc2fd98b655f4d1b7fea45720ec04ccb93d95b4d24798 + md5: dba4c95e2fe24adcae4b77ebf33559ae + depends: + - __osx >=11.0 + - c-ares >=1.34.6,<2.0a0 + - libcxx >=19 + - libev >=4.33,<4.34.0a0 + - libev >=4.33,<5.0a0 + - libzlib >=1.3.1,<2.0a0 + - openssl >=3.5.5,<4.0a0 + license: MIT + license_family: MIT + size: 606749 + timestamp: 1773854765508 +- conda: https://conda.anaconda.org/conda-forge/osx-64/libsigtool-0.1.3-hc0f2934_0.conda + sha256: f87b743d5ab11c1a8ddd800dd9357fc0fabe47686068232ddc1d1eed0d7321ec + md5: 3576aba85ce5e9ab15aa0ea376ab864b + depends: + - __osx >=10.13 + - openssl >=3.5.4,<4.0a0 + license: MIT + license_family: MIT + size: 38085 + timestamp: 1767044977731 +- conda: https://conda.anaconda.org/conda-forge/osx-64/libssh2-1.11.1-hed3591d_0.conda + sha256: 00654ba9e5f73aa1f75c1f69db34a19029e970a4aeb0fa8615934d8e9c369c3c + md5: a6cb15db1c2dc4d3a5f6cf3772e09e81 + depends: + - __osx >=10.13 + - libzlib >=1.3.1,<2.0a0 + - openssl >=3.5.0,<4.0a0 + license: BSD-3-Clause + license_family: BSD + size: 284216 + timestamp: 1745608575796 +- conda: https://conda.anaconda.org/conda-forge/osx-64/libuv-1.51.0-h58003a5_1.conda + sha256: d90dd0eee6f195a5bd14edab4c5b33be3635b674b0b6c010fb942b956aa2254c + md5: fbfc6cf607ae1e1e498734e256561dc3 + depends: + - __osx >=10.13 + license: MIT + license_family: MIT + size: 422612 + timestamp: 1753948458902 +- conda: https://conda.anaconda.org/conda-forge/osx-64/libxml2-16-2.15.1-ha1d9b0f_0.conda + sha256: e23c5ac1da7b9b65bd18bf32b68717cd9da0387941178cb4d8cc5513eb69a0a9 + md5: 453807a4b94005e7148f89f9327eb1b7 + depends: + - __osx >=10.13 + - icu >=75.1,<76.0a0 + - libiconv >=1.18,<2.0a0 + - liblzma >=5.8.1,<6.0a0 + - libzlib >=1.3.1,<2.0a0 + constrains: + - libxml2 2.15.1 + license: MIT + license_family: MIT + size: 494318 + timestamp: 1761015899881 +- conda: https://conda.anaconda.org/conda-forge/osx-64/libxml2-2.13.9-he1bc88e_0.conda + sha256: 151e653e72b9de48bdeb54ae0664b490d679d724e618649997530a582a67a5fb + md5: af41ebf4621373c4eeeda69cc703f19c + depends: + - __osx >=10.13 + - 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: 609937 + timestamp: 1761766325697 +- conda: https://conda.anaconda.org/conda-forge/osx-64/libxml2-2.15.1-h7b7ecba_0.conda + sha256: ddf87bf05955d7870a41ca6f0e9fbd7b896b5a26ec1a98cd990883ac0b4f99bb + md5: e7ed73b34f9d43d80b7e80eba9bce9f3 + depends: + - __osx >=10.13 + - icu >=75.1,<76.0a0 + - libiconv >=1.18,<2.0a0 + - liblzma >=5.8.1,<6.0a0 + - libxml2-16 2.15.1 ha1d9b0f_0 + - libzlib >=1.3.1,<2.0a0 + license: MIT + license_family: MIT + size: 39985 + timestamp: 1761015935429 +- conda: https://conda.anaconda.org/conda-forge/osx-64/libzlib-1.3.2-hbb4bfdb_2.conda + sha256: 4c6da089952b2d70150c74234679d6f7ac04f4a98f9432dec724968f912691e7 + md5: 30439ff30578e504ee5e0b390afc8c65 + depends: + - __osx >=11.0 + constrains: + - zlib 1.3.2 *_2 + license: Zlib + license_family: Other + size: 59000 + timestamp: 1774073052242 +- conda: https://conda.anaconda.org/conda-forge/osx-64/llvm-openmp-22.1.5-h0d3cbff_1.conda + sha256: aeb3719ccd1102005388a134896bef4a4060f9368612637b94f065b1e1f6213b + md5: d801d0ce2eab00dbb0178b196d0ce754 + depends: + - __osx >=11.0 + constrains: + - openmp 22.1.5|22.1.5.* + - intel-openmp <0.0a0 + license: Apache-2.0 WITH LLVM-exception + license_family: APACHE + size: 311468 + timestamp: 1778448112705 +- conda: https://conda.anaconda.org/conda-forge/osx-64/llvm-tools-15.0.7-hc29ff6c_5.conda + sha256: 0056026c0a3da90ca93da61dea9bfa1a6a03791a1aed1eb4c42d03c43ff19385 + md5: c88f4fcfbcfd78ef22889b33d8660830 + depends: + - __osx >=10.13 + - libllvm15 15.0.7 hc29ff6c_5 + - libxml2 >=2.13.5,<2.14.0a0 + - libzlib >=1.3.1,<2.0a0 + - zstd >=1.5.6,<1.6.0a0 + constrains: + - llvmdev 15.0.7 + - clang 15.0.7.* + - clang-tools 15.0.7.* + - llvm 15.0.7.* + license: Apache-2.0 WITH LLVM-exception + license_family: Apache + size: 11357877 + timestamp: 1739673018286 +- conda: https://conda.anaconda.org/conda-forge/osx-64/llvm-tools-16.0.6-hbedff68_3.conda + sha256: dff3ca83c6945f020ee6d3c62ddb3ed175ae8a357be3689a8836bcfe25ad9882 + md5: e9356b0807462e8f84c1384a8da539a5 + depends: + - libllvm16 16.0.6 hbedff68_3 + - libxml2 >=2.12.1,<2.14.0a0 + - libzlib >=1.2.13,<2.0.0a0 + - zstd >=1.5.5,<1.6.0a0 + constrains: + - llvmdev 16.0.6 + - clang 16.0.6.* + - clang-tools 16.0.6.* + - llvm 16.0.6.* + license: Apache-2.0 WITH LLVM-exception + license_family: Apache + size: 22221159 + timestamp: 1701379965425 +- conda: https://conda.anaconda.org/conda-forge/osx-64/llvm-tools-17.0.6-hbedff68_1.conda + sha256: 2380e9ac72aba8ef351ec13c9d5b1b233057c70bf4b9b3cea0b3f5bfb5a4e211 + md5: 4260f86b3dd201ad7ea758d783cd5613 + depends: + - libllvm17 17.0.6 hbedff68_1 + - libxml2 >=2.12.1,<2.14.0a0 + - libzlib >=1.2.13,<2.0.0a0 + - zstd >=1.5.5,<1.6.0a0 + constrains: + - llvm 17.0.6 + - clang 17.0.6 + - clang-tools 17.0.6 + - llvmdev 17.0.6 + license: Apache-2.0 WITH LLVM-exception + license_family: Apache + size: 23219165 + timestamp: 1701378990823 +- conda: https://conda.anaconda.org/conda-forge/osx-64/llvm-tools-18-18.1.8-default_h9399c5b_12.conda + sha256: 48b04f84e3c64c78cd0e7b9f1644892e1107a0da40776df022292406a8362563 + md5: 6a8c4ecae9e12e7df9649ad80a0b3de0 + depends: + - __osx >=11.0 + - libllvm18 18.1.8 default_h9399c5b_12 + - libxml2 + - libxml2-16 >=2.14.6 + - libzlib >=1.3.1,<2.0a0 + - zstd >=1.5.7,<1.6.0a0 + license: Apache-2.0 WITH LLVM-exception + license_family: Apache + size: 25309210 + timestamp: 1773653852200 +- conda: https://conda.anaconda.org/conda-forge/osx-64/llvm-tools-18.1.8-default_h9399c5b_12.conda + sha256: 27f6f6002307ba422a63aecf0be8ec15aafe5bc498b11eb0589d99351be94286 + md5: 68cf502cefbc8c69942951da11c88678 + depends: + - __osx >=11.0 + - libllvm18 18.1.8 default_h9399c5b_12 + - libxml2 + - libxml2-16 >=2.14.6 + - libzlib >=1.3.1,<2.0a0 + - llvm-tools-18 18.1.8 default_h9399c5b_12 + - zstd >=1.5.7,<1.6.0a0 + constrains: + - clang-tools 18.1.8 + - llvm 18.1.8 + - clang 18.1.8 + - llvmdev 18.1.8 + license: Apache-2.0 WITH LLVM-exception + license_family: Apache + size: 94109 + timestamp: 1773654015945 +- conda: https://conda.anaconda.org/conda-forge/osx-64/llvm-tools-19-19.1.7-h879f4bc_2.conda + sha256: fd281acb243323087ce672139f03a1b35ceb0e864a3b4e8113b9c23ca1f83bf0 + md5: bf644c6f69854656aa02d1520175840e + depends: + - __osx >=10.13 + - libcxx >=19 + - libllvm19 19.1.7 h56e7563_2 + - libzlib >=1.3.1,<2.0a0 + - zstd >=1.5.7,<1.6.0a0 + license: Apache-2.0 WITH LLVM-exception + license_family: Apache + size: 17198870 + timestamp: 1757354915882 +- conda: https://conda.anaconda.org/conda-forge/osx-64/llvm-tools-19.1.7-hb0207f0_2.conda + sha256: 8d042ee522bc9eb12c061f5f7e53052aeb4f13e576e624c8bebaf493725b95a0 + md5: 0f79b23c03d80f22ce4fe0022d12f6d2 + depends: + - __osx >=10.13 + - libllvm19 19.1.7 h56e7563_2 + - llvm-tools-19 19.1.7 h879f4bc_2 + constrains: + - llvmdev 19.1.7 + - llvm 19.1.7 + - clang 19.1.7 + - clang-tools 19.1.7 + license: Apache-2.0 WITH LLVM-exception + license_family: Apache + size: 87962 + timestamp: 1757355027273 +- conda: https://conda.anaconda.org/conda-forge/osx-64/llvm-tools-20-20.1.8-h879f4bc_1.conda + sha256: d490ca39a2d04ad1c728479d2bcd4bd91b68290e57f34ad6e8dc1378489a86c9 + md5: f00cecf59f10a5d94d94c9715544fd94 + depends: + - __osx >=10.13 + - libcxx >=19 + - libllvm20 20.1.8 h56e7563_1 + - libzlib >=1.3.1,<2.0a0 + - zstd >=1.5.7,<1.6.0a0 + license: Apache-2.0 WITH LLVM-exception + license_family: Apache + size: 19469937 + timestamp: 1757355100117 +- conda: https://conda.anaconda.org/conda-forge/osx-64/llvm-tools-20.1.8-hb0207f0_1.conda + sha256: d184e4ff0b57021f3c8299fb0ad8d6136b1d7d5d8b917a4fdaf6f6c1c368a187 + md5: 1502d96cd1247d250409bd75fb4f6a98 + depends: + - __osx >=10.13 + - libllvm20 20.1.8 h56e7563_1 + - llvm-tools-20 20.1.8 h879f4bc_1 + constrains: + - clang-tools 20.1.8 + - llvm 20.1.8 + - llvmdev 20.1.8 + - clang 20.1.8 + license: Apache-2.0 WITH LLVM-exception + license_family: Apache + size: 87857 + timestamp: 1757355204148 +- conda: https://conda.anaconda.org/conda-forge/osx-64/llvm-tools-21-21.1.8-h879f4bc_0.conda + sha256: 42baccb4336c153575ffcea12517842218928b383a380124091d27c5262898ca + md5: 54783743c3996a0fe092577d8f55ed73 + depends: + - __osx >=10.13 + - libcxx >=19 + - libllvm21 21.1.8 h56e7563_0 + - libzlib >=1.3.1,<2.0a0 + - zstd >=1.5.7,<1.6.0a0 + license: Apache-2.0 WITH LLVM-exception + license_family: Apache + size: 19434071 + timestamp: 1765929294274 +- conda: https://conda.anaconda.org/conda-forge/osx-64/llvm-tools-21.1.8-hb0207f0_0.conda + sha256: 9c8be4c0429137ed3ed71f0d85119485acddd3ff0490cc49b2248de455539a07 + md5: bcedaa34b99dfa3f7d57e0a1d6a073f7 + depends: + - __osx >=10.13 + - libllvm21 21.1.8 h56e7563_0 + - llvm-tools-21 21.1.8 h879f4bc_0 + constrains: + - llvmdev 21.1.8 + - clang 21.1.8 + - llvm 21.1.8 + - clang-tools 21.1.8 + license: Apache-2.0 WITH LLVM-exception + license_family: Apache + size: 88690 + timestamp: 1765929375539 +- conda: https://conda.anaconda.org/conda-forge/osx-64/llvm-tools-22-22.1.5-hc181bea_1.conda + sha256: de4bcd3ccd77ceb4d4dcddf4e9543114df501a27e33222b447bc784402ac50b0 + md5: 340c3a684dc51ae3b116ff15f36dcaa9 + depends: + - __osx >=11.0 + - libcxx >=19 + - libllvm22 22.1.5 hab754da_1 + - libzlib >=1.3.2,<2.0a0 + - zstd >=1.5.7,<1.6.0a0 + license: Apache-2.0 WITH LLVM-exception + license_family: Apache + size: 18976497 + timestamp: 1778421007873 +- conda: https://conda.anaconda.org/conda-forge/osx-64/llvm-tools-22.1.5-h1637cdf_1.conda + sha256: f563db43cdae8c49a22e1f4cc7bf458c5bd65d1190ed11771a7e244aec1859be + md5: 767f09c50c6c317d395919080cfbe48f + depends: + - __osx >=11.0 + - libllvm22 22.1.5 hab754da_1 + - llvm-tools-22 22.1.5 hc181bea_1 + constrains: + - clang 22.1.5 + - llvmdev 22.1.5 + - clang-tools 22.1.5 + - llvm 22.1.5 + license: Apache-2.0 WITH LLVM-exception + license_family: Apache + size: 52085 + timestamp: 1778421103663 +- conda: https://conda.anaconda.org/conda-forge/osx-64/llvmdev-15.0.7-hc29ff6c_5.conda + sha256: 9ad9fa0f577e99351292863f37e38db2516bdfa3f7fb1fc9761507b5ba5e7dc6 + md5: 7aa2b604f21456531e4ba83c2e48753b + depends: + - __osx >=10.13 + - libcxx >=18 + - libllvm15 15.0.7 hc29ff6c_5 + - libxml2 >=2.13.5,<2.14.0a0 + - libzlib >=1.3.1,<2.0a0 + - llvm-tools 15.0.7 hc29ff6c_5 + - zstd >=1.5.6,<1.6.0a0 + constrains: + - clang 15.0.7.* + - clang-tools 15.0.7.* + - llvm 15.0.7.* + - llvm-tools 15.0.7.* + license: Apache-2.0 WITH LLVM-exception + license_family: Apache + size: 38263688 + timestamp: 1739673247010 +- conda: https://conda.anaconda.org/conda-forge/osx-64/llvmdev-16.0.6-hbedff68_3.conda + sha256: 807d57edfca47f1f6ab04f02f25b4eeaf33a2b8c49cd5ec8639380757248cb67 + md5: d11d250a318eeb8558e6f59fcaa4126a + depends: + - libcxx >=16 + - libllvm16 16.0.6 hbedff68_3 + - libxml2 >=2.12.1,<2.14.0a0 + - libzlib >=1.2.13,<2.0.0a0 + - llvm-tools 16.0.6 hbedff68_3 + - zstd >=1.5.5,<1.6.0a0 + constrains: + - clang 16.0.6.* + - clang-tools 16.0.6.* + - llvm 16.0.6.* + - llvm-tools 16.0.6.* + license: Apache-2.0 WITH LLVM-exception + license_family: Apache + size: 40206066 + timestamp: 1701380086223 +- conda: https://conda.anaconda.org/conda-forge/osx-64/llvmdev-17.0.6-hbedff68_1.conda + sha256: 6ff1775f6181e598c9fed233e9967141c9d4ea3b614538502bf6a1afb7b1bff2 + md5: a64882ae8efaf6598c89079ce4268081 + depends: + - libcxx >=16 + - libllvm17 17.0.6 hbedff68_1 + - libxml2 >=2.12.1,<2.14.0a0 + - libzlib >=1.2.13,<2.0.0a0 + - llvm-tools 17.0.6 hbedff68_1 + - zstd >=1.5.5,<1.6.0a0 + constrains: + - llvm-tools 17.0.6 + - llvm 17.0.6 + - clang-tools 17.0.6 + - clang 17.0.6 + license: Apache-2.0 WITH LLVM-exception + license_family: Apache + size: 42139817 + timestamp: 1701379107459 +- conda: https://conda.anaconda.org/conda-forge/osx-64/llvmdev-18.1.8-default_h9399c5b_12.conda + sha256: a6cb3f7e9b522fe2fb9861fc832df217fab6b7badb3062c90a5a9df22df01e1b + md5: de767ef034cbaf74352a44a67b050452 + depends: + - __osx >=11.0 + - libcxx >=19 + - libllvm18 18.1.8 default_h9399c5b_12 + - libxml2 + - libxml2-16 >=2.14.6 + - libzlib >=1.3.1,<2.0a0 + - llvm-tools 18.1.8 default_h9399c5b_12 + - zstd >=1.5.7,<1.6.0a0 + constrains: + - llvm-tools 18.1.8 + - clang-tools 18.1.8 + - llvm 18.1.8 + - clang 18.1.8 + license: Apache-2.0 WITH LLVM-exception + license_family: Apache + size: 44763633 + timestamp: 1773654112965 +- conda: https://conda.anaconda.org/conda-forge/osx-64/llvmdev-19.1.7-h879f4bc_2.conda + sha256: 9c55852f03549ed2adc26df84e9db0d7c9eb0b8bdff834a9db671346d3790894 + md5: 3c3e5a6347c2d88f2b9e1b5b84bc53eb + depends: + - __osx >=10.13 + - libcxx >=19 + - libllvm19 19.1.7 h56e7563_2 + - libzlib >=1.3.1,<2.0a0 + - llvm-tools 19.1.7 hb0207f0_2 + - zstd >=1.5.7,<1.6.0a0 + constrains: + - llvm-tools 19.1.7 + - llvm 19.1.7 + - clang 19.1.7 + - clang-tools 19.1.7 + license: Apache-2.0 WITH LLVM-exception + license_family: Apache + size: 46621073 + timestamp: 1757355103995 +- conda: https://conda.anaconda.org/conda-forge/osx-64/llvmdev-20.1.8-h879f4bc_1.conda + sha256: 7a5a5664b8a47f20d13922b3214c13a3e27eda997d32fb61fe03eebf61d1c1f0 + md5: bff63e1ea36426c3bf0331361339bcd9 + depends: + - __osx >=10.13 + - libcxx >=19 + - libllvm20 20.1.8 h56e7563_1 + - libzlib >=1.3.1,<2.0a0 + - llvm-tools 20.1.8 hb0207f0_1 + - zstd >=1.5.7,<1.6.0a0 + constrains: + - clang-tools 20.1.8 + - llvm 20.1.8 + - llvm-tools 20.1.8 + - clang 20.1.8 + license: Apache-2.0 WITH LLVM-exception + license_family: Apache + size: 49510084 + timestamp: 1757355265376 +- conda: https://conda.anaconda.org/conda-forge/osx-64/llvmdev-21.1.8-h879f4bc_0.conda + sha256: e6480aeb7aa2939366a430fe00867a3f3fff47a28c8fc41be5b9fdb6403dd168 + md5: 22c007258b4850dc094cf000344f422c + depends: + - __osx >=10.13 + - libcxx >=19 + - libllvm21 21.1.8 h56e7563_0 + - libzlib >=1.3.1,<2.0a0 + - llvm-tools 21.1.8 hb0207f0_0 + - zstd >=1.5.7,<1.6.0a0 + constrains: + - llvm-tools 21.1.8 + - clang 21.1.8 + - llvm 21.1.8 + - clang-tools 21.1.8 + license: Apache-2.0 WITH LLVM-exception + license_family: Apache + size: 51208522 + timestamp: 1765929447945 +- conda: https://conda.anaconda.org/conda-forge/osx-64/llvmdev-22.1.5-hc181bea_1.conda + sha256: 75d9837c0ef66d1518be5da4f78bc0525a69160658ffe48500d0579d67df49ff + md5: f4a7d6e7e6af942f970cf09500b358bf + depends: + - __osx >=11.0 + - libcxx >=19 + - libllvm22 22.1.5 hab754da_1 + - libzlib >=1.3.2,<2.0a0 + - llvm-tools 22.1.5 h1637cdf_1 + - zstd >=1.5.7,<1.6.0a0 + constrains: + - clang 22.1.5 + - clang-tools 22.1.5 + - llvm-tools 22.1.5 + - llvm 22.1.5 + license: Apache-2.0 WITH LLVM-exception + license_family: Apache + size: 45639287 + timestamp: 1778421163260 +- conda: https://conda.anaconda.org/conda-forge/osx-64/ncurses-6.6-hcc0dc9a_0.conda + sha256: f5f7e006ff4271305ab4cc08eedd855c67a571793c3d18aff73f645f088a8cae + md5: 31b8740cf1b2588d4e61c81191004061 + depends: + - __osx >=11.0 + license: X11 AND BSD-3-Clause + size: 831711 + timestamp: 1777423052277 +- conda: https://conda.anaconda.org/conda-forge/osx-64/ninja-1.13.2-hfc0b2d5_0.conda + sha256: 1646832e3c2389595569ab9a6234c119a4dedf6f4e55532a8bf07edab7f8037d + md5: afda563484aa0017278866707807a335 + depends: + - libcxx >=19 + - __osx >=10.13 + license: Apache-2.0 + license_family: APACHE + size: 178071 + timestamp: 1763688235442 +- conda: https://conda.anaconda.org/conda-forge/osx-64/openssl-3.6.2-hc881268_0.conda + sha256: 334fd49ea31b99114f5afb1ec44555dc8c90640648302a4f8f838ee345d1ec50 + md5: 5cf0ece4375c73d7a5765e83565a69c7 + depends: + - __osx >=11.0 + - ca-certificates + license: Apache-2.0 + license_family: Apache + size: 2776564 + timestamp: 1775589970694 +- conda: https://conda.anaconda.org/conda-forge/osx-64/rhash-1.4.6-h6e16a3a_1.conda + sha256: 65c946fc5a9bb71772a7ac9bad64ff08ac07f7d5311306c2dcc1647157b96706 + md5: d0fcaaeff83dd4b6fb035c2f36df198b + depends: + - __osx >=10.13 + license: MIT + license_family: MIT + size: 185180 + timestamp: 1748644989546 +- conda: https://conda.anaconda.org/conda-forge/osx-64/sigtool-0.1.3-hc0f2934_0.conda + sha256: 626bfe67b926107f84ec538e6d079552ea33bd169af3267bcdae37fae38a6cf5 + md5: 35241a0e86f03ddcff771a9a2070188d + depends: + - __osx >=10.13 + - libsigtool 0.1.3 hc0f2934_0 + - openssl >=3.5.4,<4.0a0 + - sigtool-codesign 0.1.3 hc0f2934_0 + license: MIT + license_family: MIT + size: 125857 + timestamp: 1767045035127 +- conda: https://conda.anaconda.org/conda-forge/osx-64/sigtool-codesign-0.1.3-hc0f2934_0.conda + sha256: b89d89d0b62e0a84093205607d071932cca228d4d6982a5b073eec7e765b146d + md5: 1261fc730f1d8af7eeea8a0024b23493 + depends: + - __osx >=10.13 + - libsigtool 0.1.3 hc0f2934_0 + - openssl >=3.5.4,<4.0a0 + license: MIT + license_family: MIT + size: 123083 + timestamp: 1767045007433 +- conda: https://conda.anaconda.org/conda-forge/osx-64/tapi-1100.0.11-h9ce4665_0.tar.bz2 + sha256: 34b18ce8d1518b67e333ca1d3af733c3976ecbdf3a36b727f9b4dedddcc588fa + md5: f9ff42ccf809a21ba6f8607f8de36108 + depends: + - libcxx >=10.0.0.a0 + license: NCSA + license_family: MIT + size: 201044 + timestamp: 1602664232074 +- conda: https://conda.anaconda.org/conda-forge/osx-64/tapi-1300.6.5-h390ca13_0.conda + sha256: f97372a1c75b749298cb990405a690527e8004ff97e452ed2c59e4bc6a35d132 + md5: c6ee25eb54accb3f1c8fc39203acfaf1 + depends: + - __osx >=10.13 + - libcxx >=17.0.0.a0 + - ncurses >=6.5,<7.0a0 + license: NCSA + license_family: MIT + size: 221236 + timestamp: 1725491044729 +- conda: https://conda.anaconda.org/conda-forge/osx-64/tapi-1600.0.11.8-h8d8e812_2.conda + sha256: 0e814730160c8e214eadd7905e3659d8f52af86fd37d85fd287060748948a2b8 + md5: 524528dee57e42d77b1af677137de5a5 + depends: + - libcxx >=19.0.0.a0 + - __osx >=10.13 + - ncurses >=6.5,<7.0a0 + license: NCSA + size: 213790 + timestamp: 1775657389876 +- conda: https://conda.anaconda.org/conda-forge/osx-64/xz-5.8.3-h6a5a847_0.conda + sha256: ba5ad03c1c99c0bc62b92fb4630a33839e07b41f1b64c2d224f63a36b6ac1c00 + md5: 65aa14eb080715ecf13b15e5d85acde2 + depends: + - __osx >=11.0 + - liblzma 5.8.3 hbb4bfdb_0 + - liblzma-devel 5.8.3 hbb4bfdb_0 + - xz-gpl-tools 5.8.3 h6a5a847_0 + - xz-tools 5.8.3 hbb4bfdb_0 + license: 0BSD AND LGPL-2.1-or-later AND GPL-2.0-or-later + size: 24261 + timestamp: 1775826189380 +- conda: https://conda.anaconda.org/conda-forge/osx-64/xz-gpl-tools-5.8.3-h6a5a847_0.conda + sha256: e9bbba55933e2d962f65b689796561e9b687c36fb388b42eba5c0c561c6fe574 + md5: f2d1a60e16eb0da1cac4f9d0129957da + depends: + - __osx >=11.0 + - liblzma 5.8.3 hbb4bfdb_0 + constrains: + - xz 5.8.3.* + license: 0BSD AND LGPL-2.1-or-later AND GPL-2.0-or-later + size: 34168 + timestamp: 1775826151739 +- conda: https://conda.anaconda.org/conda-forge/osx-64/xz-tools-5.8.3-hbb4bfdb_0.conda + sha256: 57fc818b986bf86c5dec503047d5ba2f97bf76f2de225a3e6fea0c87c6e973dd + md5: 0a8d7aa810e8bef50429295f485fb14c + depends: + - __osx >=11.0 + - liblzma 5.8.3 hbb4bfdb_0 + constrains: + - xz 5.8.3.* + license: 0BSD AND LGPL-2.1-or-later + size: 86264 + timestamp: 1775826113228 +- conda: https://conda.anaconda.org/conda-forge/osx-64/zstd-1.5.7-h3eecb57_6.conda + sha256: 47101a4055a70a4876ffc87b750ab2287b67eca793f21c8224be5e1ee6394d3f + md5: 727109b184d680772e3122f40136d5ca + depends: + - __osx >=10.13 + - libzlib >=1.3.1,<2.0a0 + license: BSD-3-Clause + license_family: BSD + size: 528148 + timestamp: 1764777156963 +- conda: https://conda.anaconda.org/conda-forge/osx-arm64/boost-cpp-1.85.0-h103c1d6_4.conda + sha256: e65bff8c74e9b89f9532a6537dfef3277671e3c871156971a5f31c5b30147175 + md5: 54f6fcb42c59ca82c97627abb352486c + depends: + - bzip2 >=1.0.8,<2.0a0 + - icu >=75.1,<76.0a0 + - libboost-devel 1.85.0 hf450f58_4 + - libzlib >=1.3.1,<2.0a0 + - xz >=5.2.6,<6.0a0 + - zstd >=1.5.6,<1.6.0a0 + license: BSL-1.0 + size: 18337 + timestamp: 1722291453087 +- conda: https://conda.anaconda.org/conda-forge/osx-arm64/bzip2-1.0.8-hd037594_9.conda + sha256: 540fe54be35fac0c17feefbdc3e29725cce05d7367ffedfaaa1bdda234b019df + md5: 620b85a3f45526a8bc4d23fd78fc22f0 + depends: + - __osx >=11.0 + license: bzip2-1.0.6 + license_family: BSD + size: 124834 + timestamp: 1771350416561 +- conda: https://conda.anaconda.org/conda-forge/osx-arm64/c-ares-1.34.6-hc919400_0.conda + sha256: 2995f2aed4e53725e5efbc28199b46bf311c3cab2648fc4f10c2227d6d5fa196 + md5: bcb3cba70cf1eec964a03b4ba7775f01 + depends: + - __osx >=11.0 + license: MIT + license_family: MIT + size: 180327 + timestamp: 1765215064054 +- conda: https://conda.anaconda.org/conda-forge/osx-arm64/c-compiler-1.10.0-hdf49b6b_0.conda + sha256: efc71f2ae5901bea633c67468b3aa774b6bcf46c9433e1ab5d640e3faf1680b9 + md5: 7ca1bdcc45db75f54ed7b3ac969ed888 + depends: + - cctools >=949.0.1 + - clang_osx-arm64 18.* + - ld64 >=530 + - llvm-openmp + license: BSD-3-Clause + license_family: BSD + size: 6758 + timestamp: 1751115540465 +- conda: https://conda.anaconda.org/conda-forge/osx-arm64/c-compiler-1.11.0-h61f9b84_0.conda + sha256: b51bd1551cfdf41500f732b4bd1e4e70fb1e74557165804a648f32fa9c671eec + md5: 148516e0c9edf4e9331a4d53ae806a9b + depends: + - cctools >=949.0.1 + - clang_osx-arm64 19.* + - ld64 >=530 + - llvm-openmp + license: BSD-3-Clause + license_family: BSD + size: 6697 + timestamp: 1753098737760 +- conda: https://conda.anaconda.org/conda-forge/osx-arm64/c-compiler-1.6.0-hd291e01_0.conda + sha256: f2e837668ff628ef8b5d54fffbfe9596cdd3820f7c5a3fc5ad48b259ff99a501 + md5: 7d58fb216ad601b545826449d8d4c34e + depends: + - cctools >=949.0.1 + - clang_osx-arm64 15.* + - ld64 >=530 + - llvm-openmp + license: BSD + size: 6269 + timestamp: 1689097851052 +- conda: https://conda.anaconda.org/conda-forge/osx-arm64/c-compiler-1.7.0-h6aa9301_1.conda + sha256: dcff26a7e70681945955b6267306e6436b77bf83b34fa0fc81e3c96960c7a1db + md5: c12b8656251acd221948e4970e8539d1 + depends: + - cctools >=949.0.1 + - clang_osx-arm64 16.* + - ld64 >=530 + - llvm-openmp + license: BSD-3-Clause + license_family: BSD + size: 6411 + timestamp: 1714575604618 +- conda: https://conda.anaconda.org/conda-forge/osx-arm64/c-compiler-1.8.0-hf48404e_1.conda + sha256: 64245f90755c314f61d48b38fc7b82270b709f88204789895f7c4b2b84204992 + md5: 429476dcb80c4f9087cd8ac1fa2183d1 + depends: + - cctools >=949.0.1 + - clang_osx-arm64 17.* + - ld64 >=530 + - llvm-openmp + license: BSD-3-Clause + license_family: BSD + size: 6220 + timestamp: 1728985386241 +- conda: https://conda.anaconda.org/conda-forge/osx-arm64/cctools-1010.6-h4faf515_1.conda + sha256: e0a69226e1f70b79f41c471c86fd0c450cc4fd5ec3343cd7689eb1c016babc70 + md5: d200afcb0b601ad89c79212b9a124347 + depends: + - cctools_osx-arm64 1010.6 h4f2c9d0_1 + - ld64 951.9 h634c8be_1 + - libllvm16 >=16.0.6,<16.1.0a0 + license: APSL-2.0 + license_family: Other + size: 21621 + timestamp: 1726771337947 +- conda: https://conda.anaconda.org/conda-forge/osx-arm64/cctools-1010.6-hebed331_3.conda + sha256: 2070bd19954a73017cceb0c1f340bb864412cc28540dd1a5c80a7c90420619d4 + md5: eb1ce43148d39f14ce34fc5cf9f272df + depends: + - cctools_osx-arm64 1010.6 h318dc9b_3 + - ld64 951.9 h39a299f_3 + - libllvm17 >=17.0.6,<17.1.0a0 + license: APSL-2.0 + license_family: Other + size: 21359 + timestamp: 1738621104684 +- conda: https://conda.anaconda.org/conda-forge/osx-arm64/cctools-1021.4-hb4fb6a3_0.conda + sha256: 5492bfbb871086056daa5e7992f5845e317e09a882d1fe5fb94b3b2766462abc + md5: 0db10a7dbc9494ca7a918b762722f41b + depends: + - cctools_osx-arm64 1021.4 h12580ec_0 + - ld64 954.16 h4c6efb1_0 + - libllvm18 >=18.1.8,<18.2.0a0 + license: APSL-2.0 + license_family: Other + size: 21511 + timestamp: 1752819117398 +- conda: https://conda.anaconda.org/conda-forge/osx-arm64/cctools-1030.6.3-llvm19_1_hd01ab73_4.conda + sha256: 4f408036b5175be0d2c7940250d00dae5ea7a71d194a1ffb35881fb9df6211fc + md5: caf7c8e48827c2ad0c402716159fe0a2 + depends: + - cctools_impl_osx-arm64 1030.6.3 llvm19_1_he8a363d_4 + - ld64 956.6 llvm19_1_he86490a_4 + - libllvm19 >=19.1.7,<19.2.0a0 + license: APSL-2.0 + license_family: Other + size: 24313 + timestamp: 1768852906882 +- conda: https://conda.anaconda.org/conda-forge/osx-arm64/cctools-973.0.1-hd1ac623_15.conda + sha256: 19355c566c376acba7beed4c6f68a2c09fa1b5bbbbcacc6375c2fcb90faf6063 + md5: bea60d4b6c7112c9d906cd8380498c99 + depends: + - cctools_osx-arm64 973.0.1 h2a25c60_15 + - ld64 609 h89fa09d_15 + - libllvm15 >=15.0.7,<15.1.0a0 + license: APSL-2.0 + license_family: Other + size: 21948 + timestamp: 1697075946023 +- conda: https://conda.anaconda.org/conda-forge/osx-arm64/cctools_impl_osx-arm64-1030.6.3-llvm19_1_he8a363d_4.conda + sha256: c444442e0c01de92a75b58718a100f2e272649658d4f3dd915bbfc2316b25638 + md5: 76c651b923e048f3f3e0ecb22c966f70 + depends: + - __osx >=11.0 + - ld64_osx-arm64 >=956.6,<956.7.0a0 + - libcxx + - libllvm19 >=19.1.7,<19.2.0a0 + - libzlib >=1.3.1,<2.0a0 + - llvm-tools 19.1.* + - sigtool-codesign + constrains: + - ld64 956.6.* + - cctools 1030.6.3.* + - clang 19.1.* + license: APSL-2.0 + license_family: Other + size: 749918 + timestamp: 1768852866532 +- conda: https://conda.anaconda.org/conda-forge/osx-arm64/cctools_osx-arm64-1010.6-h318dc9b_3.conda + sha256: 7411f655080d6ccd23ac2f4510e02580dbcbf0663c29ffe5bff536790d9c2d0e + md5: 8d7144da8c632b047c6f15548f818379 + depends: + - __osx >=11.0 + - ld64_osx-arm64 >=951.9,<951.10.0a0 + - libcxx + - libllvm17 >=17.0.6,<17.1.0a0 + - libzlib >=1.3.1,<2.0a0 + - llvm-tools 17.0.* + - sigtool + constrains: + - cctools 1010.6.* + - clang 17.0.* + - ld64 951.9.* + license: APSL-2.0 + license_family: Other + size: 1103174 + timestamp: 1738621046491 +- conda: https://conda.anaconda.org/conda-forge/osx-arm64/cctools_osx-arm64-1010.6-h4f2c9d0_1.conda + sha256: 3585a1d44fae9fd6839734e25ddde9dfb1dbb99c6974deb7bdbc6470b54af76d + md5: 3cf0dad98fcf3cec8cf6372ba2954724 + depends: + - __osx >=11.0 + - ld64_osx-arm64 >=951.9,<951.10.0a0 + - libcxx + - libllvm16 >=16.0.6,<16.1.0a0 + - libzlib >=1.3.1,<2.0a0 + - llvm-tools 16.0.* + - sigtool + constrains: + - ld64 951.9.* + - cctools 1010.6.* + - clang 16.0.* + license: APSL-2.0 + license_family: Other + size: 1091944 + timestamp: 1726771303834 +- conda: https://conda.anaconda.org/conda-forge/osx-arm64/cctools_osx-arm64-1021.4-h12580ec_0.conda + sha256: 9754bae92bfeafb1c4d724161ea402101769b0239fddbcec1de5b1612dcbae87 + md5: 8e0c8bd08a32fe607b6e504f8e0a00b5 + depends: + - __osx >=11.0 + - ld64_osx-arm64 >=954.16,<954.17.0a0 + - libcxx + - libllvm18 >=18.1.8,<18.2.0a0 + - libzlib >=1.3.1,<2.0a0 + - llvm-tools 18.1.* + - sigtool + constrains: + - ld64 954.16.* + - cctools 1021.4.* + - clang 18.1.* + license: APSL-2.0 + license_family: Other + size: 793113 + timestamp: 1752819079152 +- conda: https://conda.anaconda.org/conda-forge/osx-arm64/cctools_osx-arm64-1030.6.3-llvm19_1_hd01ab73_4.conda + sha256: 684a19ab44f3d32c668cf1f509bbac20b10f7e9990c7449a2739930915cda8b4 + md5: 0d059c5db9d880ff37b2da53bf06509e + depends: + - cctools_impl_osx-arm64 1030.6.3 llvm19_1_he8a363d_4 + - ld64_osx-arm64 956.6 llvm19_1_ha2625f7_4 + constrains: + - cctools 1030.6.3.* + license: APSL-2.0 + license_family: Other + size: 23429 + timestamp: 1772019026855 +- conda: https://conda.anaconda.org/conda-forge/osx-arm64/cctools_osx-arm64-973.0.1-h2a25c60_15.conda + sha256: 723e1888736b0376b7ca16cc1a0e96a038aa92eabb6b15978cfa3ce7586767f0 + md5: e177015a6a6500334b9cac9144fc657d + depends: + - ld64_osx-arm64 >=609,<610.0a0 + - libcxx + - libllvm15 >=15.0.7,<15.1.0a0 + - libzlib >=1.2.13,<2.0.0a0 + - sigtool + constrains: + - clang 15.0.* + - ld64 609.* + - cctools 973.0.1.* + license: APSL-2.0 + license_family: Other + size: 1123180 + timestamp: 1697075906785 +- conda: https://conda.anaconda.org/conda-forge/osx-arm64/clang-15-15.0.7-default_he012953_5.conda + sha256: 50b921c9598997a4c217f5e1cb08857b9630bafa79e69003b1c0976b3c3d6494 + md5: 8e0142f5facf654c394b5ec14022c166 + depends: + - libclang-cpp15 15.0.7 default_he012953_5 + - libcxx >=16.0.6 + - libllvm15 >=15.0.7,<15.1.0a0 + constrains: + - clangdev 15.0.7 + - clangxx 15.0.7 + - clang-tools 15.0.7 + - llvm-tools 15.0.7 + license: Apache-2.0 WITH LLVM-exception + license_family: Apache + size: 792471 + timestamp: 1711087038942 +- conda: https://conda.anaconda.org/conda-forge/osx-arm64/clang-15.0.7-h30cc82d_5.conda + sha256: 49cb174b74385afe36cf3c1a6f8cc731a2c7252b601987c06bad96e92b78967c + md5: f9c7f2e79aa8b7f6bb39d506cf81081a + depends: + - clang-15 15.0.7 default_he012953_5 + constrains: + - clang-tools 15.0.7.* + - llvm 15.0.7.* + - llvm-tools 15.0.7.* + - llvmdev 15.0.7.* + license: Apache-2.0 WITH LLVM-exception + license_family: Apache + size: 133692 + timestamp: 1711087182882 +- conda: https://conda.anaconda.org/conda-forge/osx-arm64/clang-16-16.0.6-default_h3c2e7ce_15.conda + sha256: 7412ca9b68eefe9ae8f509a4badac9e8a70f5d06024285604aad36fae9710317 + md5: 19739ec9eae7382a7be37881a95f30e2 + depends: + - __osx >=11.0 + - libclang-cpp16 16.0.6 default_h3c2e7ce_15 + - libcxx >=16.0.6 + - libllvm16 >=16.0.6,<16.1.0a0 + constrains: + - clang-tools 16.0.6 + - clangxx 16.0.6 + - llvm-tools 16.0.6 + - clangdev 16.0.6 + license: Apache-2.0 WITH LLVM-exception + license_family: Apache + size: 761355 + timestamp: 1756166017332 +- conda: https://conda.anaconda.org/conda-forge/osx-arm64/clang-16.0.6-default_h3e759af_15.conda + sha256: 13772739cdacadffdc7b3b97dd2a5b4c1ea8526f6e48b2bb5c28d4be0de0200c + md5: 0d4af3afc0ec97952578b965da7fee34 + depends: + - clang-16 16.0.6 default_h3c2e7ce_15 + constrains: + - clang-tools 16.0.6.* + - llvm 16.0.6.* + - llvm-tools 16.0.6.* + - llvmdev 16.0.6.* + license: Apache-2.0 WITH LLVM-exception + license_family: Apache + size: 92190 + timestamp: 1756166136780 +- conda: https://conda.anaconda.org/conda-forge/osx-arm64/clang-17-17.0.6-default_hf90f093_8.conda + sha256: 62b2a476c664a61120a5d854e0985a926b14029a3bc7b244fadbceed82445b89 + md5: e6fba411429a02c0518a5215d40c5ed4 + depends: + - __osx >=11.0 + - libclang-cpp17 17.0.6 default_hf90f093_8 + - libcxx >=17.0.6 + - libllvm17 >=17.0.6,<17.1.0a0 + constrains: + - clang-tools 17.0.6 + - llvm-tools 17.0.6 + - clangdev 17.0.6 + - clangxx 17.0.6 + license: Apache-2.0 WITH LLVM-exception + license_family: Apache + size: 717197 + timestamp: 1738083845861 +- conda: https://conda.anaconda.org/conda-forge/osx-arm64/clang-17.0.6-default_h474c9e2_8.conda + sha256: 257291fa9480a93bc54a920485e358051cc56764cc22c88dda0d89d461c3f4ab + md5: 9002ce14d7f3306b9e6c69959ab989d5 + depends: + - clang-17 17.0.6 default_hf90f093_8 + license: Apache-2.0 WITH LLVM-exception + license_family: Apache + size: 24114 + timestamp: 1738083935833 +- conda: https://conda.anaconda.org/conda-forge/osx-arm64/clang-18-18.1.8-default_hf3020a7_18.conda + sha256: 4a4842c748e576a55c1852d30ae8669205ee2556ed0e9e69d81e3d32820b95eb + md5: 479f38a7c5b5e494d2e7c315e6815d56 + depends: + - __osx >=11.0 + - libclang-cpp18.1 18.1.8 default_hf3020a7_18 + - libcxx >=18.1.8 + - libllvm18 >=18.1.8,<18.2.0a0 + license: Apache-2.0 WITH LLVM-exception + license_family: Apache + size: 829091 + timestamp: 1773505965984 +- conda: https://conda.anaconda.org/conda-forge/osx-arm64/clang-18.1.8-default_hf9bcbb7_18.conda + sha256: 6fd7e17d483bee93d47ca6d0669224633655f779c653cde34278bcb8f8e3fd0d + md5: f33377f3388b9642e8f65f155088229c + depends: + - clang-18 18.1.8 default_hf3020a7_18 + license: Apache-2.0 WITH LLVM-exception + license_family: Apache + size: 93328 + timestamp: 1773506098832 +- conda: https://conda.anaconda.org/conda-forge/osx-arm64/clang-19-19.1.7-default_hf3020a7_9.conda + sha256: a1449c64f455d43153036f54c68cb075a52c1d9f3350a91f4a8936ecf1675c6b + md5: 5a77d772c22448f6ab340fbfff55db48 + depends: + - __osx >=11.0 + - libclang-cpp19.1 19.1.7 default_hf3020a7_9 + - libcxx >=19.1.7 + - libllvm19 >=19.1.7,<19.2.0a0 + license: Apache-2.0 WITH LLVM-exception + license_family: Apache + size: 763361 + timestamp: 1776988759708 +- conda: https://conda.anaconda.org/conda-forge/osx-arm64/clang-19.1.7-default_hf9bcbb7_9.conda + sha256: 8268c23a000cfeee1b83e19c59eb018ec07583905f69bfee01beac8aedd8c4df + md5: 20056c993a8c9df01e04a0e165579ec1 + depends: + - cctools + - clang-19 19.1.7.* default_* + - clang_impl_osx-arm64 19.1.7 default_hc11f16d_9 + - ld64 + - ld64_osx-arm64 * llvm19_1_* + license: Apache-2.0 WITH LLVM-exception + license_family: Apache + size: 24962 + timestamp: 1776989044302 +- conda: https://conda.anaconda.org/conda-forge/osx-arm64/clang-format-15-15.0.7-default_he012953_5.conda + sha256: c5ecc56656165360ffe7bcfc9a1f6245a2c59c5be41db182d539cd0ab96f759b + md5: e291de9502588d975d9dcf16e4a07cb2 + depends: + - libclang-cpp15 >=15.0.7,<15.1.0a0 + - libcxx >=16.0.6 + - libllvm15 >=15.0.7,<15.1.0a0 + license: Apache-2.0 WITH LLVM-exception + license_family: Apache + size: 168386 + timestamp: 1711087569628 +- conda: https://conda.anaconda.org/conda-forge/osx-arm64/clang-format-15.0.7-default_he012953_5.conda + sha256: c4fc23077381bbdb2904e7c0afab8552ec473162c69d84bf28f53223f4036161 + md5: 3691037d095f3b1e1b71da8c345de50b + depends: + - clang-format-15 15.0.7 default_he012953_5 + - libclang-cpp15 >=15.0.7,<15.1.0a0 + - libcxx >=16.0.6 + - libllvm15 >=15.0.7,<15.1.0a0 + license: Apache-2.0 WITH LLVM-exception + license_family: Apache + size: 133964 + timestamp: 1711087680993 +- conda: https://conda.anaconda.org/conda-forge/osx-arm64/clang-format-16-16.0.6-default_h3c2e7ce_15.conda + sha256: b7049fd6cfab9306522c4e9399cd74692a6897f0d11a50a63ad92f15b40db2f6 + md5: af53806ee8d5023c799d6186fd1442f6 + depends: + - __osx >=11.0 + - libclang-cpp16 >=16.0.6,<16.1.0a0 + - libcxx >=16.0.6 + - libllvm16 >=16.0.6,<16.1.0a0 + license: Apache-2.0 WITH LLVM-exception + license_family: Apache + size: 127337 + timestamp: 1756166443161 +- conda: https://conda.anaconda.org/conda-forge/osx-arm64/clang-format-16.0.6-default_h3c2e7ce_15.conda + sha256: 211a4772f2912ac1ea68eaa8cebb411dec46efdc5ef4d899dba316e53aebcb7f + md5: da984913ad26e91c30015e58ec58d902 + depends: + - __osx >=11.0 + - clang-format-16 16.0.6 default_h3c2e7ce_15 + - libclang-cpp16 >=16.0.6,<16.1.0a0 + - libcxx >=16.0.6 + - libllvm16 >=16.0.6,<16.1.0a0 + license: Apache-2.0 WITH LLVM-exception + license_family: Apache + size: 92531 + timestamp: 1756166546529 +- conda: https://conda.anaconda.org/conda-forge/osx-arm64/clang-format-17-17.0.6-default_hf90f093_8.conda + sha256: c899edf8481d37049fbd1d606a9809948d7063b6e3ba52b243baaa9f6de2f358 + md5: 37ecb0e220821457bb8bc6d0264af1f8 + depends: + - __osx >=11.0 + - libclang-cpp17 >=17.0.6,<17.1.0a0 + - libcxx >=17.0.6 + - libllvm17 >=17.0.6,<17.1.0a0 + license: Apache-2.0 WITH LLVM-exception + license_family: Apache + size: 58865 + timestamp: 1738084184053 +- conda: https://conda.anaconda.org/conda-forge/osx-arm64/clang-format-17.0.6-default_hf90f093_8.conda + sha256: 6115ae01b64a62338df0006513de41b65ab8d499bc1099aef455bd1e977b8a7d + md5: 7488cf2f3cca4284a6153c1f227b2b08 + depends: + - __osx >=11.0 + - clang-format-17 17.0.6 default_hf90f093_8 + - libclang-cpp17 >=17.0.6,<17.1.0a0 + - libcxx >=17.0.6 + - libllvm17 >=17.0.6,<17.1.0a0 + license: Apache-2.0 WITH LLVM-exception + license_family: Apache + size: 24405 + timestamp: 1738084255489 +- conda: https://conda.anaconda.org/conda-forge/osx-arm64/clang-format-18-18.1.8-default_hf3020a7_18.conda + sha256: c920febf2d870f4c0c9b738c296bbd2114de09fbe1396223d5a8dc9165afe980 + md5: 44b3270ab02687f42f1c67be7a0e4f5e + depends: + - __osx >=11.0 + - libclang-cpp18.1 >=18.1.8,<18.2.0a0 + - libcxx >=18.1.8 + - libllvm18 >=18.1.8,<18.2.0a0 + license: Apache-2.0 WITH LLVM-exception + license_family: Apache + size: 130197 + timestamp: 1773506740445 +- conda: https://conda.anaconda.org/conda-forge/osx-arm64/clang-format-18.1.8-default_hf3020a7_18.conda + sha256: 8adcfde111bd0d785af37e9018785a9334966f0bc81ed283f2dbce2e81921d80 + md5: 409cba3045b627ead0cd7cf62810976b + depends: + - __osx >=11.0 + - clang-format-18 18.1.8 default_hf3020a7_18 + - libclang-cpp18.1 >=18.1.8,<18.2.0a0 + - libcxx >=18.1.8 + - libllvm18 >=18.1.8,<18.2.0a0 + license: Apache-2.0 WITH LLVM-exception + license_family: Apache + size: 93630 + timestamp: 1773506908942 +- conda: https://conda.anaconda.org/conda-forge/osx-arm64/clang-format-19-19.1.7-default_hf3020a7_9.conda + sha256: ecb87f79f8377445fcd901060fb2a9af187ac91c098c1a444d833d4ae41cf2ea + md5: 03fc00f8bce94befe6b8e9ce56ccec56 + depends: + - __osx >=11.0 + - libclang-cpp19.1 >=19.1.7,<19.2.0a0 + - libcxx >=19.1.7 + - libllvm19 >=19.1.7,<19.2.0a0 + license: Apache-2.0 WITH LLVM-exception + license_family: Apache + size: 62553 + timestamp: 1776988899878 +- conda: https://conda.anaconda.org/conda-forge/osx-arm64/clang-format-19.1.7-default_hf3020a7_9.conda + sha256: a6dac903ec7d02e0c38a6e0a6bb4a6bad2811892bf339ac2e6cb4b4a78f249b3 + md5: 8a9e72cc9f23409110fd882ae3a805df + depends: + - __osx >=11.0 + - clang-format-19 19.1.7 default_hf3020a7_9 + - libclang-cpp19.1 >=19.1.7,<19.2.0a0 + - libcxx >=19.1.7 + - libllvm19 >=19.1.7,<19.2.0a0 + license: Apache-2.0 WITH LLVM-exception + license_family: Apache + size: 25270 + timestamp: 1776989009705 +- conda: https://conda.anaconda.org/conda-forge/osx-arm64/clang-tools-15.0.7-default_he012953_5.conda + sha256: be4335b8cfcb71f2fb5fb8e4e36f2fb850997619c35f3ba91091e2eb308f55e7 + md5: 31fab73c382b920f12f983ed98dbf0fb + depends: + - clang-format 15.0.7 default_he012953_5 + - libclang-cpp15 >=15.0.7,<15.1.0a0 + - libclang13 >=15.0.7 + - libcxx >=16.0.6 + - libllvm15 >=15.0.7,<15.1.0a0 + constrains: + - clangdev 15.0.7 + - clang 15.0.7.* + - llvm 15.0.7.* + - llvm-tools 15.0.7.* + - llvmdev 15.0.7.* + license: Apache-2.0 WITH LLVM-exception + license_family: Apache + size: 16174548 + timestamp: 1711087823866 +- conda: https://conda.anaconda.org/conda-forge/osx-arm64/clang-tools-16.0.6-default_h3c2e7ce_15.conda + sha256: 791b96da9f4c361831c250f7d40f171ce0f41cb9d6d8891860c8f3f418b4177d + md5: 8ff3b05785dbd769ae3328d3199fef9d + depends: + - __osx >=11.0 + - clang-format 16.0.6 default_h3c2e7ce_15 + - libclang-cpp16 >=16.0.6,<16.1.0a0 + - libclang13 >=16.0.6 + - libcxx >=16.0.6 + - libllvm16 >=16.0.6,<16.1.0a0 + - libxml2 >=2.13.8,<2.14.0a0 + constrains: + - clangdev 16.0.6 + - clang 16.0.6.* + - llvm 16.0.6.* + - llvm-tools 16.0.6.* + - llvmdev 16.0.6.* + license: Apache-2.0 WITH LLVM-exception + license_family: Apache + size: 16980094 + timestamp: 1756166687551 +- conda: https://conda.anaconda.org/conda-forge/osx-arm64/clang-tools-17.0.6-default_hf90f093_8.conda + sha256: 56751dcfb62cdaa5cb7817e277130a195c21fcece7be1b4601670d070e139faa + md5: 7224bea84a958caf4a1fa45061fa03c3 + depends: + - __osx >=11.0 + - clang-format 17.0.6 default_hf90f093_8 + - libclang-cpp17 >=17.0.6,<17.1.0a0 + - libclang13 >=17.0.6 + - libcxx >=17.0.6 + - libllvm17 >=17.0.6,<17.1.0a0 + - libxml2 >=2.13.5,<2.14.0a0 + constrains: + - clangdev 17.0.6 + license: Apache-2.0 WITH LLVM-exception + license_family: Apache + size: 18332932 + timestamp: 1738084795911 +- conda: https://conda.anaconda.org/conda-forge/osx-arm64/clang-tools-18.1.8-default_hf3020a7_18.conda + sha256: 6e686cf6ac684aa0a89f79bdfafb4d6044729144964e0138addc31e3103a9605 + md5: 0f84c0554677a020932f84d7ba251afd + depends: + - __osx >=11.0 + - clang-format 18.1.8 default_hf3020a7_18 + - libclang-cpp18.1 >=18.1.8,<18.2.0a0 + - libclang13 >=18.1.8 + - libcxx >=18.1.8 + - libllvm18 >=18.1.8,<18.2.0a0 + - libxml2 + - libxml2-16 >=2.14.6 + constrains: + - clangdev 18.1.8 + license: Apache-2.0 WITH LLVM-exception + license_family: Apache + size: 19250996 + timestamp: 1773507066074 +- conda: https://conda.anaconda.org/conda-forge/osx-arm64/clang-tools-19.1.7-default_h1589341_9.conda + sha256: 0b3cdea6573996c35e80ca9d743349e71108703be79a6329c3dbb22be1f5d491 + md5: 1d58e84155ff0993fd7d58357c77b320 + depends: + - __osx >=11.0 + - clang-format 19.1.7 default_hf3020a7_9 + - libclang-cpp19.1 >=19.1.7,<19.2.0a0 + - libclang13 >=19.1.7 + - libcxx >=19.1.7 + - libllvm19 >=19.1.7,<19.2.0a0 + - libxml2 + - libxml2-16 >=2.14.6 + constrains: + - clangdev 19.1.7 + license: Apache-2.0 WITH LLVM-exception + license_family: Apache + size: 15026501 + timestamp: 1776989117787 +- conda: https://conda.anaconda.org/conda-forge/osx-arm64/clang_impl_osx-arm64-15.0.7-h77e971b_8.conda + sha256: 3254f6625aefe6fdf2bfdd85435c04cfed58e6159fc9d2410ef97631a5124996 + md5: f9aa498af2e01f4b3d478bcab99782da + depends: + - cctools_osx-arm64 + - clang 15.0.7.* + - compiler-rt 15.0.7.* + - ld64_osx-arm64 + - llvm-tools 15.0.7.* + license: BSD-3-Clause + license_family: BSD + size: 17844 + timestamp: 1704364332292 +- conda: https://conda.anaconda.org/conda-forge/osx-arm64/clang_impl_osx-arm64-16.0.6-hc421ffc_19.conda + sha256: e131b316c772b9ecd57f47e221b0b460d817650ee29de3a6d017ba17f834e3a3 + md5: 44d46e1690d60e9dfdf9ab9fc8a344f6 + depends: + - cctools_osx-arm64 + - clang 16.0.6.* + - compiler-rt 16.0.6.* + - ld64_osx-arm64 + - llvm-tools 16.0.6.* + license: BSD-3-Clause + license_family: BSD + size: 17659 + timestamp: 1723069383236 +- conda: https://conda.anaconda.org/conda-forge/osx-arm64/clang_impl_osx-arm64-17.0.6-he47c785_23.conda + sha256: 7a5999645f66f12f8ff9f07ead73d3552f79fff09675487ec1f4f087569587e1 + md5: 519e4d9eb59dd0a1484e509dcc789217 + depends: + - cctools_osx-arm64 + - clang 17.0.6.* + - compiler-rt 17.0.6.* + - ld64_osx-arm64 + - llvm-tools 17.0.6.* + license: BSD-3-Clause + license_family: BSD + size: 17965 + timestamp: 1731984992637 +- conda: https://conda.anaconda.org/conda-forge/osx-arm64/clang_impl_osx-arm64-18.1.8-h2ae9ea5_25.conda + sha256: 35273ca91fb998f979402c76066af008ad3108a61a3b161d881fcb37700a48bb + md5: 9eb023cfc47dac4c22097b9344a943b4 + depends: + - cctools_osx-arm64 + - clang 18.1.8.* + - compiler-rt 18.1.8.* + - ld64_osx-arm64 + - llvm-tools 18.1.8.* + license: BSD-3-Clause + license_family: BSD + size: 18331 + timestamp: 1748575702758 +- conda: https://conda.anaconda.org/conda-forge/osx-arm64/clang_impl_osx-arm64-19.1.7-default_hc11f16d_9.conda + sha256: 56db3a98eda7032a0aefe38f146a4b29df9d75d08c71bf7f7d6412effe775dd1 + md5: 2aec2e39be3b4999bda2a3e5bd4cd2e6 + depends: + - cctools_impl_osx-arm64 + - clang-19 19.1.7.* default_* + - compiler-rt 19.1.7.* + - compiler-rt_osx-arm64 + - ld64_osx-arm64 * llvm19_1_* + - llvm-openmp >=19.1.7 + - llvm-tools 19.1.7.* + license: Apache-2.0 WITH LLVM-exception + license_family: Apache + size: 24905 + timestamp: 1776989025990 +- conda: https://conda.anaconda.org/conda-forge/osx-arm64/clang_osx-arm64-15.0.7-h54d7cd3_8.conda + sha256: 61acc37be194dca4be46895ba352b5ff28cf19bff2275bdc84a008b3826a4af7 + md5: bfabf0271fb57b2f829452827428ac95 + depends: + - clang_impl_osx-arm64 15.0.7 h77e971b_8 + license: BSD-3-Clause + license_family: BSD + size: 20787 + timestamp: 1704364345762 +- conda: https://conda.anaconda.org/conda-forge/osx-arm64/clang_osx-arm64-16.0.6-h54d7cd3_19.conda + sha256: 1be2d2b837267e9cc61c1cb5e0ce780047ceb87063005144c1332a82a5996fb3 + md5: 1a9ab8ce6143c14e425059e61a4fb737 + depends: + - clang_impl_osx-arm64 16.0.6 hc421ffc_19 + license: BSD-3-Clause + license_family: BSD + size: 20589 + timestamp: 1723069388608 +- conda: https://conda.anaconda.org/conda-forge/osx-arm64/clang_osx-arm64-17.0.6-h07b0088_23.conda + sha256: ccafb62b45d71f646f0ca925fc7342d093fe5ea17ceeb15b84f1c277fc716295 + md5: cf5bbfc8b558c41d2a4ba17f5cabb48c + depends: + - clang_impl_osx-arm64 17.0.6 he47c785_23 + license: BSD-3-Clause + license_family: BSD + size: 21177 + timestamp: 1731984996665 +- conda: https://conda.anaconda.org/conda-forge/osx-arm64/clang_osx-arm64-18.1.8-h07b0088_25.conda + sha256: 4d1e695cd776783f6192fb8d4c7892c03e9f1f185dbb96cefdaab2f183430281 + md5: d9ee862b94f4049c9e121e6dd18cc874 + depends: + - clang_impl_osx-arm64 18.1.8 h2ae9ea5_25 + license: BSD-3-Clause + license_family: BSD + size: 21563 + timestamp: 1748575706504 +- conda: https://conda.anaconda.org/conda-forge/osx-arm64/clang_osx-arm64-19.1.7-h75f8d18_31.conda + sha256: c9daaa0e7785fe7c5799e3d691c6aa5ab8b4a54bbf49835037068dd78e0a7b35 + md5: 6645630920c0980a33f055a49fbdb88e + depends: + - cctools_osx-arm64 + - clang 19.* + - clang_impl_osx-arm64 19.1.7.* + - sdkroot_env_osx-arm64 + license: BSD-3-Clause + license_family: BSD + size: 21135 + timestamp: 1769482854554 +- conda: https://conda.anaconda.org/conda-forge/osx-arm64/clangdev-15.0.7-default_he012953_5.conda + sha256: 97ea98e2ca02da6b71248589476cd4358a34aa4af1bc4ba2ecb608346ce5992b + md5: 4130bb8c62fbd3dfff75822c6b933f59 + depends: + - clang 15.0.7 h30cc82d_5 + - clang-tools 15.0.7 default_he012953_5 + - clangxx 15.0.7 default_h4cf2255_5 + - libclang 15.0.7 default_he012953_5 + - libclang-cpp 15.0.7 default_he012953_5 + - libcxx >=16.0.6 + - llvmdev 15.0.7 + license: Apache-2.0 WITH LLVM-exception + license_family: Apache + size: 23374247 + timestamp: 1711087977614 +- conda: https://conda.anaconda.org/conda-forge/osx-arm64/clangdev-16.0.6-default_h3c2e7ce_15.conda + sha256: bb5909060f162e8eed8a89c25740063c3516b03f38fccdd335a79578fd19d97c + md5: 869279e7a5e504284b6826abf2223eca + depends: + - __osx >=11.0 + - clang 16.0.6 default_h3e759af_15 + - clang-tools 16.0.6 default_h3c2e7ce_15 + - clangxx 16.0.6 default_hc1b5c72_15 + - libclang 16.0.6 default_h3c2e7ce_15 + - libclang-cpp 16.0.6 default_h3c2e7ce_15 + - libcxx >=16.0.6 + - llvmdev 16.0.6 + license: Apache-2.0 WITH LLVM-exception + license_family: Apache + size: 24368833 + timestamp: 1756166878223 +- conda: https://conda.anaconda.org/conda-forge/osx-arm64/clangdev-17.0.6-default_hf90f093_8.conda + sha256: 2a89153defb6beed620e0baf7b8a31ecd9ed0cf0b04c15b881206f6b45aed79e + md5: fa72a968d364e8479d65d45ed0274bde + depends: + - __osx >=11.0 + - clang 17.0.6 default_h474c9e2_8 + - clang-tools 17.0.6 default_hf90f093_8 + - clangxx 17.0.6 default_h1ffe849_8 + - libclang 17.0.6 default_hf90f093_8 + - libclang-cpp 17.0.6 default_hf90f093_8 + - libcxx >=17.0.6 + - llvmdev 17.0.6 + license: Apache-2.0 WITH LLVM-exception + license_family: Apache + size: 26583760 + timestamp: 1738084896683 +- conda: https://conda.anaconda.org/conda-forge/osx-arm64/clangdev-18.1.8-default_hf3020a7_18.conda + sha256: 9b3b6bde2bd8c1c63c9100e750b0fb7678b455b51e715839dfe9df6c02a3f3b9 + md5: 822ad7ec667f4cd55d4ee9ba9dfcc8bf + depends: + - __osx >=11.0 + - clang 18.1.8 default_hf9bcbb7_18 + - clang-tools 18.1.8 default_hf3020a7_18 + - clangxx 18.1.8 default_h65f67e2_18 + - libclang 18.1.8 default_hf3020a7_18 + - libclang-cpp 18.1.8 default_hf3020a7_18 + - libcxx >=18.1.8 + - llvmdev 18.1.8.* + license: Apache-2.0 WITH LLVM-exception + license_family: Apache + size: 27648805 + timestamp: 1773507251197 +- conda: https://conda.anaconda.org/conda-forge/osx-arm64/clangdev-19.1.7-default_hf3020a7_9.conda + sha256: 72d0f6d07c8b5324bc95ac3849346340337f889711993a0bd7a08d59cd5a6d14 + md5: 2d790dd1a13dd2e03b785bdbaab9d0f7 + depends: + - __osx >=11.0 + - clang 19.1.7 default_hf9bcbb7_9 + - clang-tools 19.1.7 default_h1589341_9 + - clangxx 19.1.7 default_hc995acf_9 + - libclang 19.1.7 default_hf3020a7_9 + - libclang-cpp 19.1.7 default_hf3020a7_9 + - libcxx >=19.1.7 + - llvmdev 19.1.7.* + license: Apache-2.0 WITH LLVM-exception + license_family: Apache + size: 29034862 + timestamp: 1776989261367 +- conda: https://conda.anaconda.org/conda-forge/osx-arm64/clangxx-15.0.7-default_h4cf2255_5.conda + sha256: eee5fdec49250b83b4998acd147b172c898a59c7457ae500a1cf8bd40d0cd99b + md5: 3bc279eb572f0125bfa7a1fa0524e41d + depends: + - clang 15.0.7 h30cc82d_5 + license: Apache-2.0 WITH LLVM-exception + license_family: Apache + size: 133801 + timestamp: 1711087214248 +- conda: https://conda.anaconda.org/conda-forge/osx-arm64/clangxx-16.0.6-default_hc1b5c72_15.conda + sha256: da0634e0c5f0d117169bf2d65d696277a07cd1ec18cd04bd98c90baded3541d0 + md5: f9cfd9b8b33f762dd456cc770fa5b29f + depends: + - clang 16.0.6 default_h3e759af_15 + - libcxx-devel 16.0.6.* + constrains: + - libcxx-devel 16.0.6 + license: Apache-2.0 WITH LLVM-exception + license_family: Apache + size: 92329 + timestamp: 1756166158732 +- conda: https://conda.anaconda.org/conda-forge/osx-arm64/clangxx-17.0.6-default_h1ffe849_8.conda + sha256: 23d510e9ba3562db6524d7a112d18408a04dea56ef266bbfbd40e7d0fa93a7fa + md5: 8f75c86daaba98b698d259dca66b74ef + depends: + - clang 17.0.6 default_h474c9e2_8 + - libcxx-devel 17.0.6.* + license: Apache-2.0 WITH LLVM-exception + license_family: Apache + size: 24191 + timestamp: 1738083948600 +- conda: https://conda.anaconda.org/conda-forge/osx-arm64/clangxx-18.1.8-default_h65f67e2_18.conda + sha256: 723e7483a82ff27d826180fc1c34ad7cf73052bd751da414d5aead740f788131 + md5: 40d91666bd6145e8f81fb5790c439243 + depends: + - clang 18.1.8 default_hf9bcbb7_18 + - libcxx-devel 18.1.8.* + license: Apache-2.0 WITH LLVM-exception + license_family: Apache + size: 93392 + timestamp: 1773506152471 +- conda: https://conda.anaconda.org/conda-forge/osx-arm64/clangxx-19.1.7-default_hc995acf_9.conda + sha256: 88697ecd1e5689e15c12d334bae2bb3900dffd91efd4686cd9eea9e1095ee986 + md5: 9a1ac8e5124fcc201adb20a103d51cc6 + depends: + - clang 19.1.7 default_hf9bcbb7_9 + - clangxx_impl_osx-arm64 19.1.7.* default_* + - libcxx-devel 19.1.* + license: Apache-2.0 WITH LLVM-exception + license_family: Apache + size: 24924 + timestamp: 1776989215095 +- conda: https://conda.anaconda.org/conda-forge/osx-arm64/clangxx_impl_osx-arm64-15.0.7-h768a7fd_8.conda + sha256: 81b611d79db869f0b9fba064e2dc90770659211cc03930879f0fa5fe1dce8d82 + md5: 27dbe5b3d13989a54dc82aa9a8508b4f + depends: + - clang_osx-arm64 15.0.7 h54d7cd3_8 + - clangxx 15.0.7.* + - libcxx >=14 + - libllvm15 >=15.0.7,<15.1.0a0 + license: BSD-3-Clause + license_family: BSD + size: 17927 + timestamp: 1704365772566 +- conda: https://conda.anaconda.org/conda-forge/osx-arm64/clangxx_impl_osx-arm64-16.0.6-hcd7bac0_19.conda + sha256: 6847b38f815e43a01e7cfe78fc9d2d7ab90c749bce1301322707ccbad4f2d7a2 + md5: 263f7e2b3196bea030602830381cc84e + depends: + - clang_osx-arm64 16.0.6 h54d7cd3_19 + - clangxx 16.0.6.* + - libcxx >=16 + - libllvm16 >=16.0.6,<16.1.0a0 + license: BSD-3-Clause + license_family: BSD + size: 17740 + timestamp: 1723069417515 +- conda: https://conda.anaconda.org/conda-forge/osx-arm64/clangxx_impl_osx-arm64-17.0.6-h50f59cd_23.conda + sha256: 7b975e2a1e141769ba4bc45792d145c68a72923465355d3f83ad60450529e01f + md5: d086b99e198e21b3b29d2847cade1fce + depends: + - clang_osx-arm64 17.0.6 h07b0088_23 + - clangxx 17.0.6.* + - libcxx >=17 + - libllvm17 >=17.0.6,<17.1.0a0 + license: BSD-3-Clause + license_family: BSD + size: 18005 + timestamp: 1731985015782 +- conda: https://conda.anaconda.org/conda-forge/osx-arm64/clangxx_impl_osx-arm64-18.1.8-h555f467_25.conda + sha256: d0fb67a4ed19e9b40db08fce19afb342dcebc3609374a1b86c0d7a40abaf655c + md5: 4d72782682bc7d61a3612fea2c93299f + depends: + - clang_osx-arm64 18.1.8 h07b0088_25 + - clangxx 18.1.8.* + - libcxx >=18 + - libllvm18 >=18.1.8,<18.2.0a0 + license: BSD-3-Clause + license_family: BSD + size: 18459 + timestamp: 1748575734378 +- conda: https://conda.anaconda.org/conda-forge/osx-arm64/clangxx_impl_osx-arm64-19.1.7-default_hc11f16d_9.conda + sha256: 6b5ebc5f369ad5373091edc3d4c4d2e1f39169b7adb080395965646eb8aee7c9 + md5: 8b7425e84f940861653c919142435bde + depends: + - clang-19 19.1.7.* default_* + - clang_impl_osx-arm64 19.1.7 default_hc11f16d_9 + - libcxx-devel 19.1.* + license: Apache-2.0 WITH LLVM-exception + license_family: Apache + size: 24861 + timestamp: 1776989199328 +- conda: https://conda.anaconda.org/conda-forge/osx-arm64/clangxx_osx-arm64-15.0.7-h54d7cd3_8.conda + sha256: 0bdc9f97d04f497181ba34a1c659cbd15ce0016be6ef5801dff9bbd3b4a478d3 + md5: 612c035dc7b54e12e5736947e2153f06 + depends: + - clang_osx-arm64 15.0.7 h54d7cd3_8 + - clangxx_impl_osx-arm64 15.0.7 h768a7fd_8 + license: BSD-3-Clause + license_family: BSD + size: 19545 + timestamp: 1704365785397 +- conda: https://conda.anaconda.org/conda-forge/osx-arm64/clangxx_osx-arm64-16.0.6-h54d7cd3_19.conda + sha256: 6e4344d0bc29fc76e6c6c8aa463536ea0615ffe60512c883b8ae26d73ac4804d + md5: 26ffc845adddf183c15dd4285e97fc66 + depends: + - clang_osx-arm64 16.0.6 h54d7cd3_19 + - clangxx_impl_osx-arm64 16.0.6 hcd7bac0_19 + license: BSD-3-Clause + license_family: BSD + size: 19366 + timestamp: 1723069423746 +- conda: https://conda.anaconda.org/conda-forge/osx-arm64/clangxx_osx-arm64-17.0.6-h07b0088_23.conda + sha256: 58c65adb2e03209ec1dcd926c3256a3a188d6cfa23a89b7fcaa6c9ff56a0f364 + md5: 743758f55670a6a9a0c93010cd497801 + depends: + - clang_osx-arm64 17.0.6 h07b0088_23 + - clangxx_impl_osx-arm64 17.0.6 h50f59cd_23 + license: BSD-3-Clause + license_family: BSD + size: 19581 + timestamp: 1731985020343 +- conda: https://conda.anaconda.org/conda-forge/osx-arm64/clangxx_osx-arm64-18.1.8-h07b0088_25.conda + sha256: aae6cad658c9899f13d5941bcadc942f1a471acdfc43cd86c3635d0e353babc9 + md5: 4280e791148c1f9a3f8c0660d7a54acb + depends: + - clang_osx-arm64 18.1.8 h07b0088_25 + - clangxx_impl_osx-arm64 18.1.8 h555f467_25 + license: BSD-3-Clause + license_family: BSD + size: 19924 + timestamp: 1748575738546 +- conda: https://conda.anaconda.org/conda-forge/osx-arm64/clangxx_osx-arm64-19.1.7-h75f8d18_31.conda + sha256: f3a81f8e5451377d2b84a31f4a4e305cb92f5a4c4ba0126e7d1a3cfa4d66bf47 + md5: bd6926e81dc196064373b614af3bc9ff + depends: + - cctools_osx-arm64 + - clang_osx-arm64 19.1.7 h75f8d18_31 + - clangxx 19.* + - clangxx_impl_osx-arm64 19.1.7.* + - sdkroot_env_osx-arm64 + license: BSD-3-Clause + license_family: BSD + size: 19914 + timestamp: 1769482862579 +- conda: https://conda.anaconda.org/conda-forge/osx-arm64/cmake-4.3.2-h8cb302d_0.conda + sha256: 64ca4cee080964c59f6dc5f7be3ab407cb850a33c7f1fbd0e06c7efa8f7ec591 + md5: 19141fef94ad44373daa6a81a9c1e201 + depends: + - __osx >=11.0 + - bzip2 >=1.0.8,<2.0a0 + - libcurl >=8.19.0,<9.0a0 + - libcxx >=19 + - libexpat >=2.7.5,<3.0a0 + - liblzma >=5.8.3,<6.0a0 + - libuv >=1.51.0,<2.0a0 + - libzlib >=1.3.2,<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: 18282048 + timestamp: 1776800981012 +- conda: https://conda.anaconda.org/conda-forge/osx-arm64/compiler-rt-15.0.7-h3808999_2.conda + sha256: f9679d30deee8601f6ffe90dd54b32824ea5cf130d5e2715c2d2a1eec9db69a7 + md5: 4d5aaa09e4a7a12431aade34a9cb6764 + depends: + - clang 15.0.7.* + - clangxx 15.0.7.* + - compiler-rt_osx-arm64 15.0.7.* + license: Apache-2.0 WITH LLVM-exception + license_family: APACHE + size: 92670 + timestamp: 1701467326766 +- conda: https://conda.anaconda.org/conda-forge/osx-arm64/compiler-rt-16.0.6-h3808999_2.conda + sha256: 67f6883f37ea720f97d016c3384962d86ec8853e5f4b0065aa77e335ca80193e + md5: 517f18b3260bb7a508d1f54a96e6285b + depends: + - clang 16.0.6.* + - clangxx 16.0.6.* + - compiler-rt_osx-arm64 16.0.6.* + license: Apache-2.0 WITH LLVM-exception + license_family: APACHE + size: 93724 + timestamp: 1701467327657 +- conda: https://conda.anaconda.org/conda-forge/osx-arm64/compiler-rt-17.0.6-h856b3c1_2.conda + sha256: 91f4a6b80b7802432146a399944c20410e058dfb57ca6d738c0affb79cbdebbb + md5: 2d00ff8e98c163de45a7c85774094012 + depends: + - __osx >=11.0 + - clang 17.0.6.* + - clangxx 17.0.6.* + - compiler-rt_osx-arm64 17.0.6.* + license: Apache-2.0 WITH LLVM-exception + license_family: APACHE + size: 94878 + timestamp: 1725251190741 +- conda: https://conda.anaconda.org/conda-forge/osx-arm64/compiler-rt-18.1.8-h855ad52_2.conda + sha256: 93a26ec6d7e3d93db2d80c794e9710fc422d436680da165e78d7ff73b8ef6c12 + md5: 8fa0332f248b2f65fdd497a888ab371e + depends: + - __osx >=11.0 + - clang 18.1.8.* + - compiler-rt_osx-arm64 18.1.8.* + license: Apache-2.0 WITH LLVM-exception + license_family: APACHE + size: 95924 + timestamp: 1757436417546 +- conda: https://conda.anaconda.org/conda-forge/osx-arm64/compiler-rt-19.1.7-h855ad52_1.conda + sha256: b58a481828aee699db7f28bfcbbe72fb133277ac60831dfe70ee2465541bcb93 + md5: 39451684370ae65667fa5c11222e43f7 + depends: + - __osx >=11.0 + - clang 19.1.7.* + - compiler-rt_osx-arm64 19.1.7.* + license: Apache-2.0 WITH LLVM-exception + license_family: APACHE + size: 97085 + timestamp: 1757411887557 +- conda: https://conda.anaconda.org/conda-forge/osx-arm64/coreutils-9.5-h93a5062_0.conda + sha256: 70e50f2f1458e7c172c9b1c149a4289e8eecc9b53e06ab9de0b3572cdbd30a61 + md5: 75840e25e62a109b1d25043c63a4f36c + license: GPL-3.0-or-later + license_family: GPL + size: 1478098 + timestamp: 1711655465375 +- conda: https://conda.anaconda.org/conda-forge/osx-arm64/cxx-compiler-1.10.0-hba80287_0.conda + sha256: 52cbfc615a9727294fccdd507f11919ca01ff29bd928bb5aa0b211697a983e9f + md5: 7fca30a1585a85ec8ab63579afcac5d3 + depends: + - c-compiler 1.10.0 hdf49b6b_0 + - clangxx_osx-arm64 18.* + license: BSD-3-Clause + license_family: BSD + size: 6784 + timestamp: 1751115541888 +- conda: https://conda.anaconda.org/conda-forge/osx-arm64/cxx-compiler-1.11.0-h88570a1_0.conda + sha256: 99800d97a3a2ee9920dfc697b6d4c64e46dc7296c78b1b6c746ff1c24dea5e6c + md5: 043afed05ca5a0f2c18252ae4378bdee + depends: + - c-compiler 1.11.0 h61f9b84_0 + - clangxx_osx-arm64 19.* + license: BSD-3-Clause + license_family: BSD + size: 6715 + timestamp: 1753098739952 +- conda: https://conda.anaconda.org/conda-forge/osx-arm64/cxx-compiler-1.6.0-h1995070_0.conda + sha256: f0a94c6312d0fd9e3d3c3546894bafa9f9b8b20a411bee0767ad4dac916f3eb5 + md5: 35c1be0a08578238276ca9417fc1615c + depends: + - c-compiler 1.6.0 hd291e01_0 + - clangxx_osx-arm64 15.* + license: BSD + size: 6301 + timestamp: 1689097905706 +- conda: https://conda.anaconda.org/conda-forge/osx-arm64/cxx-compiler-1.7.0-h2ffa867_1.conda + sha256: c07de4bdfcae8e0a589d360b79ae50f8f183fe698bc400b609c5e5d1f26e8b0f + md5: f75f0313233f50a6a58f7444a1c725a9 + depends: + - c-compiler 1.7.0 h6aa9301_1 + - clangxx_osx-arm64 16.* + license: BSD-3-Clause + license_family: BSD + size: 6442 + timestamp: 1714575634473 +- conda: https://conda.anaconda.org/conda-forge/osx-arm64/cxx-compiler-1.8.0-h18dbf2f_1.conda + sha256: bcadda695b13087920650adf43a599b66745dfb4bfc3b425169547d76082dcf2 + md5: a1bc5417ab20b451ee141ca3290df479 + depends: + - c-compiler 1.8.0 hf48404e_1 + - clangxx_osx-arm64 17.* + license: BSD-3-Clause + license_family: BSD + size: 6261 + timestamp: 1728985417226 +- conda: https://conda.anaconda.org/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://conda.anaconda.org/conda-forge/osx-arm64/krb5-1.22.2-h385eeb1_0.conda + sha256: c0a0bf028fe7f3defcdcaa464e536cf1b202d07451e18ad83fdd169d15bef6ed + md5: e446e1822f4da8e5080a9de93474184d + depends: + - __osx >=11.0 + - libcxx >=19 + - libedit >=3.1.20250104,<3.2.0a0 + - libedit >=3.1.20250104,<4.0a0 + - openssl >=3.5.5,<4.0a0 + license: MIT + license_family: MIT + size: 1160828 + timestamp: 1769770119811 +- conda: https://conda.anaconda.org/conda-forge/osx-arm64/ld64-609-h89fa09d_15.conda + sha256: 6a4370f5984a429a8695bb4f87b879ec2a4af284b0859de863a938cc4a758b81 + md5: 920d98b2054e806dbe4c5fb8f54cad31 + depends: + - ld64_osx-arm64 609 hc4dc95b_15 + - libllvm15 >=15.0.7,<15.1.0a0 + constrains: + - cctools 973.0.1.* + - cctools_osx-arm64 973.0.1.* + license: APSL-2.0 + license_family: Other + size: 19147 + timestamp: 1697075929066 +- conda: https://conda.anaconda.org/conda-forge/osx-arm64/ld64-951.9-h39a299f_3.conda + sha256: 5459a027d1785d9555c900f3922ce59e805aaf1f8703f69f64ab88f928a395ac + md5: 67efc14416524331df7d305f68c2c3f1 + depends: + - ld64_osx-arm64 951.9 h58ff2e4_3 + - libllvm17 >=17.0.6,<17.1.0a0 + constrains: + - cctools_osx-arm64 1010.6.* + - cctools 1010.6.* + license: APSL-2.0 + license_family: Other + size: 18604 + timestamp: 1738621079122 +- conda: https://conda.anaconda.org/conda-forge/osx-arm64/ld64-951.9-h634c8be_1.conda + sha256: d347ecd273ea7552ae703a37650ea211ff640ed8fd921fe6f1ede49dcdc1358c + md5: 294a282b67deea1f0ea1c7d8be2bb5c5 + depends: + - ld64_osx-arm64 951.9 h0605c9f_1 + - libllvm16 >=16.0.6,<16.1.0a0 + constrains: + - cctools_osx-arm64 1010.6.* + - cctools 1010.6.* + license: APSL-2.0 + license_family: Other + size: 18928 + timestamp: 1726771322773 +- conda: https://conda.anaconda.org/conda-forge/osx-arm64/ld64-954.16-h4c6efb1_0.conda + sha256: 722595fb6f81552a88864f79f87238f0dba8e2d3f6c5adf4322a66259c4ea825 + md5: 04733a89c85df5b0fa72826b9e88b3a8 + depends: + - ld64_osx-arm64 954.16 h9d5fcb0_0 + - libllvm18 >=18.1.8,<18.2.0a0 + constrains: + - cctools_osx-arm64 1021.4.* + - cctools 1021.4.* + license: APSL-2.0 + license_family: Other + size: 18863 + timestamp: 1752819098768 +- conda: https://conda.anaconda.org/conda-forge/osx-arm64/ld64-956.6-llvm19_1_he86490a_4.conda + sha256: d6197b4825ece12ab63097bd677294126439a1a6222c7098885aa23464ef280c + md5: 22eb76f8d98f4d3b8319d40bda9174de + depends: + - ld64_osx-arm64 956.6 llvm19_1_ha2625f7_4 + - libllvm19 >=19.1.7,<19.2.0a0 + constrains: + - cctools_osx-arm64 1030.6.3.* + - cctools 1030.6.3.* + license: APSL-2.0 + license_family: Other + size: 21592 + timestamp: 1768852886875 +- conda: https://conda.anaconda.org/conda-forge/osx-arm64/ld64_osx-arm64-609-hc4dc95b_15.conda + sha256: 78696e68684c8f8e4507bcdf3e072b5c0f6eb7af58383eb339a5035999039cb2 + md5: 19220ad0db4efb72970ab401ebbd7c33 + depends: + - libcxx + - libllvm15 >=15.0.7,<15.1.0a0 + - sigtool + - tapi >=1100.0.11,<1101.0a0 + constrains: + - clang >=15.0.7,<16.0a0 + - cctools 973.0.1.* + - ld 609.* + - cctools_osx-arm64 973.0.1.* + license: APSL-2.0 + license_family: Other + size: 1046454 + timestamp: 1697075685770 +- conda: https://conda.anaconda.org/conda-forge/osx-arm64/ld64_osx-arm64-951.9-h0605c9f_1.conda + sha256: 2183f5fc32084bbaa83a84817cfc68091e9e739a048a185dcfa55be908b9fe54 + md5: 77076839b5a8ac684c7971641d69b97a + depends: + - __osx >=11.0 + - libcxx + - libllvm16 >=16.0.6,<16.1.0a0 + - sigtool + - tapi >=1300.6.5,<1301.0a0 + constrains: + - clang >=16.0.6,<17.0a0 + - cctools_osx-arm64 1010.6.* + - ld 951.9.* + - cctools 1010.6.* + license: APSL-2.0 + license_family: Other + size: 1006497 + timestamp: 1726771248963 +- conda: https://conda.anaconda.org/conda-forge/osx-arm64/ld64_osx-arm64-951.9-h58ff2e4_3.conda + sha256: 383d643dcd286d2c1df981d31958d8d49ee9beb1056954d330502c539ff3ad91 + md5: 0579bf76f6b7b12c6c3523f58399712a + depends: + - __osx >=11.0 + - libcxx + - libllvm17 >=17.0.6,<17.1.0a0 + - sigtool + - tapi >=1300.6.5,<1301.0a0 + constrains: + - ld 951.9.* + - clang >=17.0.6,<18.0a0 + - cctools_osx-arm64 1010.6.* + - cctools 1010.6.* + license: APSL-2.0 + license_family: Other + size: 1022751 + timestamp: 1738620932229 +- conda: https://conda.anaconda.org/conda-forge/osx-arm64/ld64_osx-arm64-954.16-h9d5fcb0_0.conda + sha256: 825b56e7016fa64f3fb3b25ba535e838c914264c71ba47075bab91b56a738cbb + md5: f46ccafd4b646514c45cf9857f9b4059 + depends: + - __osx >=11.0 + - libcxx + - libllvm18 >=18.1.8,<18.2.0a0 + - sigtool + - tapi >=1300.6.5,<1301.0a0 + constrains: + - ld 954.16.* + - cctools_osx-arm64 1021.4.* + - cctools 1021.4.* + - clang >=18.1.8,<19.0a0 + license: APSL-2.0 + license_family: Other + size: 1022059 + timestamp: 1752819033976 +- conda: https://conda.anaconda.org/conda-forge/osx-arm64/ld64_osx-arm64-956.6-llvm19_1_ha2625f7_4.conda + sha256: 4161eec579cea07903ee2fafdde6f8f9991dabd54f3ca6609a1bf75bed3dc788 + md5: eaf3d06e3a8a10dee7565e8d76ae618d + depends: + - __osx >=11.0 + - libcxx + - libllvm19 >=19.1.7,<19.2.0a0 + - sigtool-codesign + - tapi >=1600.0.11.8,<1601.0a0 + constrains: + - cctools_impl_osx-arm64 1030.6.3.* + - ld64 956.6.* + - cctools 1030.6.3.* + - clang 19.1.* + license: APSL-2.0 + license_family: Other + size: 1040464 + timestamp: 1768852821767 +- conda: https://conda.anaconda.org/conda-forge/osx-arm64/libboost-1.85.0-hf763ba5_4.conda + sha256: 2ef0667e01ad218a1e61167cccace83821e551994eb55e917cbf53ca58e418a4 + md5: 1dd9608cfbf7e5e09df19ec2187f1a5a + depends: + - __osx >=11.0 + - bzip2 >=1.0.8,<2.0a0 + - icu >=75.1,<76.0a0 + - libcxx >=16 + - libzlib >=1.3.1,<2.0a0 + - xz >=5.2.6,<6.0a0 + - zstd >=1.5.6,<1.6.0a0 + constrains: + - boost-cpp =1.85.0 + license: BSL-1.0 + size: 1957773 + timestamp: 1722291251209 +- conda: https://conda.anaconda.org/conda-forge/osx-arm64/libboost-devel-1.85.0-hf450f58_4.conda + sha256: c54a44d4933dc2f9c0978205d22b0e13cba9c9d73e98a70e524b3cae72c8a62f + md5: c7adf58ea69ec5520517529ae6b6370e + depends: + - libboost 1.85.0 hf763ba5_4 + - libboost-headers 1.85.0 hce30654_4 + constrains: + - boost-cpp =1.85.0 + license: BSL-1.0 + size: 41332 + timestamp: 1722291426561 +- conda: https://conda.anaconda.org/conda-forge/osx-arm64/libboost-headers-1.85.0-hce30654_4.conda + sha256: 52c298c34a25960f48aef00981934808b70953f046abb08076f6005e2df83d22 + md5: e4da2f0886a3029ec3b7274b13a54714 + constrains: + - boost-cpp =1.85.0 + license: BSL-1.0 + size: 14130145 + timestamp: 1722291288057 +- conda: https://conda.anaconda.org/conda-forge/osx-arm64/libclang-15.0.7-default_he012953_5.conda + sha256: 1db1d44e3332f810b8623ad0c3e340a0f06145340727c69c994fe9d5a2fa6ced + md5: 998f002cb2418dbb8fb003cc774aece0 + depends: + - libclang13 15.0.7 default_h83d0a53_5 + - libcxx >=16.0.6 + - libllvm15 >=15.0.7,<15.1.0a0 + license: Apache-2.0 WITH LLVM-exception + license_family: Apache + size: 134103 + timestamp: 1711087430932 +- conda: https://conda.anaconda.org/conda-forge/osx-arm64/libclang-16.0.6-default_h3c2e7ce_15.conda + sha256: 57db34ee50146a592730986eaf886f33be6611ea7a9d4ca16d0e59db074450b9 + md5: 46e637757abb2c786f67adc92074f480 + depends: + - __osx >=11.0 + - libclang13 16.0.6 default_hf1fa74b_15 + - libcxx >=16.0.6 + - libllvm16 >=16.0.6,<16.1.0a0 + license: Apache-2.0 WITH LLVM-exception + license_family: Apache + size: 92479 + timestamp: 1756166336825 +- conda: https://conda.anaconda.org/conda-forge/osx-arm64/libclang-17.0.6-default_hf90f093_8.conda + sha256: 8ffed8f78958731885e242bc1ab3920078983742113c7ef177fdfc5952d38735 + md5: 20a22671be7892a269ded6c961b87050 + depends: + - __osx >=11.0 + - libclang13 17.0.6 default_h81d93ff_8 + - libcxx >=17.0.6 + - libllvm17 >=17.0.6,<17.1.0a0 + license: Apache-2.0 WITH LLVM-exception + license_family: Apache + size: 24351 + timestamp: 1738084104287 +- conda: https://conda.anaconda.org/conda-forge/osx-arm64/libclang-18.1.8-default_hf3020a7_18.conda + sha256: 135607b835adc8a6bcbf9403762b1fc4cad68b98d4b698074f51dbc1fb454cd8 + md5: e94d2ebbefc74150bcd5267a5afd92a9 + depends: + - __osx >=11.0 + - libclang13 18.1.8 default_h13b06bd_18 + - libcxx >=18.1.8 + - libllvm18 >=18.1.8,<18.2.0a0 + license: Apache-2.0 WITH LLVM-exception + license_family: Apache + size: 93602 + timestamp: 1773506497190 +- conda: https://conda.anaconda.org/conda-forge/osx-arm64/libclang-19.1.7-default_hf3020a7_9.conda + sha256: dc65ecec056b11b1606ca1d0bcd84310c23f644fd2fc579ad164eca4493af899 + md5: 2d27183e11c25e3d91138e11d2580b91 + depends: + - __osx >=11.0 + - libclang13 19.1.7 default_h13b06bd_9 + - libcxx >=19.1.7 + - libllvm19 >=19.1.7,<19.2.0a0 + license: Apache-2.0 WITH LLVM-exception + license_family: Apache + size: 25224 + timestamp: 1776988937989 +- conda: https://conda.anaconda.org/conda-forge/osx-arm64/libclang-cpp-15.0.7-default_he012953_5.conda + sha256: 1306257f48b1c8ad4fbb64cd902aa09a69274fc599ee6527a0c1acc587225971 + md5: 105673987b07a1efcac7e3211a283678 + depends: + - libclang-cpp15 15.0.7 default_he012953_5 + - libcxx >=16.0.6 + - libllvm15 >=15.0.7,<15.1.0a0 + license: Apache-2.0 WITH LLVM-exception + license_family: Apache + size: 134125 + timestamp: 1711087149065 +- conda: https://conda.anaconda.org/conda-forge/osx-arm64/libclang-cpp-16.0.6-default_h3c2e7ce_15.conda + sha256: 363c32b100f293d9e2961b7b9be1a146aadbb4b906c6591d3be7ba7a1e97f6eb + md5: 6c82d456a5b0b23f971ae370bfa69cc1 + depends: + - __osx >=11.0 + - libclang-cpp16 16.0.6 default_h3c2e7ce_15 + - libcxx >=16.0.6 + - libllvm16 >=16.0.6,<16.1.0a0 + license: Apache-2.0 WITH LLVM-exception + license_family: Apache + size: 92514 + timestamp: 1756166120798 +- conda: https://conda.anaconda.org/conda-forge/osx-arm64/libclang-cpp-17.0.6-default_hf90f093_8.conda + sha256: 3f96d81ff3a6ae233d830147d7303cf4b5610736a9160492d9a25b780696c519 + md5: c70b20aff04ac1493f22b206d387a163 + depends: + - __osx >=11.0 + - libclang-cpp17 17.0.6 default_hf90f093_8 + - libcxx >=17.0.6 + - libllvm17 >=17.0.6,<17.1.0a0 + license: Apache-2.0 WITH LLVM-exception + license_family: Apache + size: 24353 + timestamp: 1738083922417 +- conda: https://conda.anaconda.org/conda-forge/osx-arm64/libclang-cpp-18.1.8-default_hf3020a7_18.conda + sha256: b282ab2824d93666ed4fc0300d8c5222eef6207edad92b6dee39cf7030669dc1 + md5: 184b43f093ea127e585009886d8edfcb + depends: + - __osx >=11.0 + - libclang-cpp18.1 18.1.8 default_hf3020a7_18 + - libcxx >=18.1.8 + - libllvm18 >=18.1.8,<18.2.0a0 + license: Apache-2.0 WITH LLVM-exception + license_family: Apache + size: 93539 + timestamp: 1773506074389 +- conda: https://conda.anaconda.org/conda-forge/osx-arm64/libclang-cpp-19.1.7-default_hf3020a7_9.conda + sha256: 0d69dababfbddbe5dca1e90be56f42cc5e34a11bba8087b782cadf612b0de882 + md5: 37feb902c281c7c50c49254ffe757cdc + depends: + - __osx >=11.0 + - libclang-cpp19.1 19.1.7 default_hf3020a7_9 + - libcxx >=19.1.7 + - libllvm19 >=19.1.7,<19.2.0a0 + license: Apache-2.0 WITH LLVM-exception + license_family: Apache + size: 25253 + timestamp: 1776988972648 +- conda: https://conda.anaconda.org/conda-forge/osx-arm64/libclang-cpp15-15.0.7-default_he012953_5.conda + sha256: 2e56e0acc3afad2708bc410e499d23db517cd66dcfaba150d7d28cf5a35911a8 + md5: a3035345155ca0a31eb1588bbbb2cff0 + depends: + - libcxx >=16.0.6 + - libllvm15 >=15.0.7,<15.1.0a0 + license: Apache-2.0 WITH LLVM-exception + license_family: Apache + size: 11404805 + timestamp: 1711086898132 +- conda: https://conda.anaconda.org/conda-forge/osx-arm64/libclang-cpp16-16.0.6-default_h3c2e7ce_15.conda + sha256: 96beef959638d73da280e9551b9028df48f7f671df237c6bb7c7495816e96fa8 + md5: 2589c8f983f4676b005a4e8fb227212d + depends: + - __osx >=11.0 + - libcxx >=16.0.6 + - libllvm16 >=16.0.6,<16.1.0a0 + license: Apache-2.0 WITH LLVM-exception + license_family: Apache + size: 11797889 + timestamp: 1756165841886 +- conda: https://conda.anaconda.org/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://conda.anaconda.org/conda-forge/osx-arm64/libclang-cpp18.1-18.1.8-default_hf3020a7_18.conda + sha256: 400a6c44a33bb58b18349bab81808750be2a44c85e38f3b0fc4ecd550684e9d6 + md5: 4c5aaaf2f27ea600c899f64b01c9f1b0 + depends: + - __osx >=11.0 + - libcxx >=18.1.8 + - libllvm18 >=18.1.8,<18.2.0a0 + license: Apache-2.0 WITH LLVM-exception + license_family: Apache + size: 13335319 + timestamp: 1773505818840 +- conda: https://conda.anaconda.org/conda-forge/osx-arm64/libclang-cpp19.1-19.1.7-default_hf3020a7_9.conda + sha256: e05c4830a117492996bac1ad55cd7ee3e57f63b46da8a324862efbee9279ab44 + md5: ddb70ebdcbf3a44bddc2657a51faf490 + 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: 14064699 + timestamp: 1776988581784 +- conda: https://conda.anaconda.org/conda-forge/osx-arm64/libclang13-15.0.7-default_h83d0a53_5.conda + sha256: b795d46bbef1e5662d958689a704e9298fb8def78fd8cd8e15b5afcb04fca496 + md5: 74ba94cc03689cc5c71eed7f8050c5d0 + depends: + - libcxx >=16.0.6 + - libllvm15 >=15.0.7,<15.1.0a0 + license: Apache-2.0 WITH LLVM-exception + license_family: Apache + size: 6453696 + timestamp: 1711087319296 +- conda: https://conda.anaconda.org/conda-forge/osx-arm64/libclang13-16.0.6-default_hf1fa74b_15.conda + sha256: cf12162d21bcb5bda6da4247e8d2ac61bce7e9e97802d4fd46c4e5071376614a + md5: eb82d20907cd48f97aea719fb6a514cd + depends: + - __osx >=11.0 + - libcxx >=16.0.6 + - libllvm16 >=16.0.6,<16.1.0a0 + license: Apache-2.0 WITH LLVM-exception + license_family: Apache + size: 6874368 + timestamp: 1756166243901 +- conda: https://conda.anaconda.org/conda-forge/osx-arm64/libclang13-17.0.6-default_h81d93ff_8.conda + sha256: 468346048c2b99ba40700ad631b73f0ac06d9350ed3b8149107da87f634abf0e + md5: 16e9692576e4f026ed1e197db913490f + 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: 7565458 + timestamp: 1738084023507 +- conda: https://conda.anaconda.org/conda-forge/osx-arm64/libclang13-18.1.8-default_h13b06bd_18.conda + sha256: 22a6a9debb6209f3adf46bce17b255ef1cbb3107d8f2cb21915fe763437fa4f1 + md5: 587b0620d6b74111a6a9cf6068a5bccb + depends: + - __osx >=11.0 + - libcxx >=18.1.8 + - libllvm18 >=18.1.8,<18.2.0a0 + license: Apache-2.0 WITH LLVM-exception + license_family: Apache + size: 7997952 + timestamp: 1773506303037 +- conda: https://conda.anaconda.org/conda-forge/osx-arm64/libclang13-19.1.7-default_h13b06bd_9.conda + sha256: 03bba9893f94d7cbf7e2d11dbb1736f70ce0af044be63e180895401a2dc9d65d + md5: 0bfbfaee8a27ada3ebc2977c5e00acd0 + 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: 8439763 + timestamp: 1776988685803 +- conda: https://conda.anaconda.org/conda-forge/osx-arm64/libcurl-8.20.0-hd5a2499_0.conda + sha256: 38c0bc634b61e542776e97cfd15d5d41edd304d4e47c333004d2d622439b2381 + md5: 2f57b7d0c6adda88957586b7afd78438 + depends: + - __osx >=11.0 + - krb5 >=1.22.2,<1.23.0a0 + - libnghttp2 >=1.68.1,<2.0a0 + - libssh2 >=1.11.1,<2.0a0 + - libzlib >=1.3.2,<2.0a0 + - openssl >=3.5.6,<4.0a0 + - zstd >=1.5.7,<1.6.0a0 + license: curl + license_family: MIT + size: 400568 + timestamp: 1777462251987 +- conda: https://conda.anaconda.org/conda-forge/osx-arm64/libcxx-22.1.5-h55c6f16_1.conda + sha256: dddd01bd6b338221342a89530a1caffe6051a70cc8f8b1d8bb591d5447a3c603 + md5: ff484b683fecf1e875dfc7aa01d19796 + depends: + - __osx >=11.0 + license: Apache-2.0 WITH LLVM-exception + license_family: Apache + size: 569359 + timestamp: 1778191546305 +- conda: https://conda.anaconda.org/conda-forge/osx-arm64/libcxx-devel-16.0.6-h86353a2_2.conda + sha256: fb51aaeb9911d9999afaf0a3dc8f4eee97c524aac4ec152217372e8645ef8856 + md5: f81c638415433ea5bb5024b49cda17ea + depends: + - libcxx >=16.0.6 + license: Apache-2.0 WITH LLVM-exception + license_family: Apache + size: 717680 + timestamp: 1725067968232 +- conda: https://conda.anaconda.org/conda-forge/osx-arm64/libcxx-devel-17.0.6-h86353a2_6.conda + sha256: 914cc589f356dfc64ddc4f0dc305fce401356b688730b62e24b4f52358595a58 + md5: 555639d6c7a4c6838cec6e50453fea43 + depends: + - libcxx >=17.0.6 + license: Apache-2.0 WITH LLVM-exception + license_family: Apache + size: 820887 + timestamp: 1725403726157 +- conda: https://conda.anaconda.org/conda-forge/osx-arm64/libcxx-devel-18.1.8-h6dc3340_8.conda + sha256: ff83d001603476033eca155ce77f7ba614d9dc70c5811e2ce9915a3cadacb56f + md5: fdf0850d6d1496f33e3996e377f605ed + depends: + - libcxx >=18.1.8 + license: Apache-2.0 WITH LLVM-exception + license_family: Apache + size: 794791 + timestamp: 1742451369695 +- conda: https://conda.anaconda.org/conda-forge/osx-arm64/libcxx-devel-19.1.7-h6dc3340_2.conda + sha256: ec07ebaa226792f4e2bf0f5dba50325632a7474d5f04b951d8291be70af215da + md5: 9f7810b7c0a731dbc84d46d6005890ef + depends: + - libcxx >=19.1.7 + - libcxx-headers >=19.1.7,<19.1.8.0a0 + license: Apache-2.0 WITH LLVM-exception + license_family: Apache + size: 23000 + timestamp: 1764648270121 +- conda: https://conda.anaconda.org/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://conda.anaconda.org/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://conda.anaconda.org/conda-forge/osx-arm64/libexpat-2.8.0-hf6b4638_0.conda + sha256: f4b1cafc59afaede8fa0a2d9cf376840f1c553001acd72f6ead18bbc8ac8c49c + md5: 65466e82c09e888ca7560c11a97d5450 + depends: + - __osx >=11.0 + constrains: + - expat 2.8.0.* + license: MIT + license_family: MIT + size: 68789 + timestamp: 1777846180142 +- conda: https://conda.anaconda.org/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://conda.anaconda.org/conda-forge/osx-arm64/libllvm15-15.0.7-h4429f82_5.conda + sha256: e2806042e60b1a92747298ea30007f50443e879881886c743d2ade30a1bd7da4 + md5: e81ccd3b5e036152fe9b7be87282201b + depends: + - __osx >=11.0 + - libcxx >=18 + - libxml2 >=2.13.5,<2.14.0a0 + - libzlib >=1.3.1,<2.0a0 + license: Apache-2.0 WITH LLVM-exception + license_family: Apache + size: 22216441 + timestamp: 1739672571591 +- conda: https://conda.anaconda.org/conda-forge/osx-arm64/libllvm16-16.0.6-hc4b4ae8_4.conda + sha256: 1cdaa0cf825d75758e67a2f0f3118a770272d0f8b30388b897a00730ac830484 + md5: 88bab67516b973b3f1a72021d2ac2ab6 + 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: 23532169 + timestamp: 1739798547548 +- conda: https://conda.anaconda.org/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://conda.anaconda.org/conda-forge/osx-arm64/libllvm18-18.1.8-default_h8e162e0_12.conda + sha256: 82f2326bfbcd63ab7113400e871564eb1618c159db9c369fe5bfbd56149341fa + md5: 07fa1c8d37db7e95117220979f1f4ba3 + depends: + - __osx >=11.0 + - libcxx >=19 + - libxml2 + - libxml2-16 >=2.14.6 + - libzlib >=1.3.1,<2.0a0 + - zstd >=1.5.7,<1.6.0a0 + license: Apache-2.0 WITH LLVM-exception + license_family: Apache + size: 25869042 + timestamp: 1773654942297 +- conda: https://conda.anaconda.org/conda-forge/osx-arm64/libllvm19-19.1.7-h8e0c9ce_2.conda + sha256: 46f8ff3d86438c0af1bebe0c18261ce5de9878d58b4fe399a3a125670e4f0af5 + md5: d1d9b233830f6631800acc1e081a9444 + depends: + - __osx >=11.0 + - libcxx >=19 + - libxml2 + - libxml2-16 >=2.14.5 + - libzlib >=1.3.1,<2.0a0 + - zstd >=1.5.7,<1.6.0a0 + license: Apache-2.0 WITH LLVM-exception + license_family: Apache + size: 26914852 + timestamp: 1757353228286 +- conda: https://conda.anaconda.org/conda-forge/osx-arm64/liblzma-5.8.3-h8088a28_0.conda + sha256: 34878d87275c298f1a732c6806349125cebbf340d24c6c23727268184bba051e + md5: b1fd823b5ae54fbec272cea0811bd8a9 + depends: + - __osx >=11.0 + constrains: + - xz 5.8.3.* + license: 0BSD + size: 92472 + timestamp: 1775825802659 +- conda: https://conda.anaconda.org/conda-forge/osx-arm64/liblzma-devel-5.8.3-h8088a28_0.conda + sha256: 3002be39c0e98ec6cd103b0dc2963dc9e0d7cab127fb2fe9a8de9707a76ed1f0 + md5: ebe1f5418d6e2d4bbc26b2c906a0a470 + depends: + - __osx >=11.0 + - liblzma 5.8.3 h8088a28_0 + license: 0BSD + size: 118482 + timestamp: 1775825828010 +- conda: https://conda.anaconda.org/conda-forge/osx-arm64/libnghttp2-1.68.1-h8f3e76b_0.conda + sha256: 2bc7bc3978066f2c274ebcbf711850cc9ab92e023e433b9631958a098d11e10a + md5: 6ea18834adbc3b33df9bd9fb45eaf95b + depends: + - __osx >=11.0 + - c-ares >=1.34.6,<2.0a0 + - libcxx >=19 + - libev >=4.33,<4.34.0a0 + - libev >=4.33,<5.0a0 + - libzlib >=1.3.1,<2.0a0 + - openssl >=3.5.5,<4.0a0 + license: MIT + license_family: MIT + size: 576526 + timestamp: 1773854624224 +- conda: https://conda.anaconda.org/conda-forge/osx-arm64/libsigtool-0.1.3-h98dc951_0.conda + sha256: 421f7bd7caaa945d9cd5d374cc3f01e75637ca7372a32d5e7695c825a48a30d1 + md5: c08557d00807785decafb932b5be7ef5 + depends: + - __osx >=11.0 + - openssl >=3.5.4,<4.0a0 + license: MIT + license_family: MIT + size: 36416 + timestamp: 1767045062496 +- conda: https://conda.anaconda.org/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://conda.anaconda.org/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://conda.anaconda.org/conda-forge/osx-arm64/libxml2-16-2.15.1-h0ff4647_0.conda + sha256: ebe2dd9da94280ad43da936efa7127d329b559f510670772debc87602b49b06d + md5: 438c97d1e9648dd7342f86049dd44638 + 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 + constrains: + - libxml2 2.15.1 + license: MIT + license_family: MIT + size: 464952 + timestamp: 1761016087733 +- conda: https://conda.anaconda.org/conda-forge/osx-arm64/libxml2-2.13.9-h4a9ca0c_0.conda + sha256: 7ab9b3033f29ac262cd3c846887e5b512f5916c3074d10f298627d67b7a32334 + md5: 763c7e76295bf142145d5821f251b884 + 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: 581379 + timestamp: 1761766437117 +- conda: https://conda.anaconda.org/conda-forge/osx-arm64/libxml2-2.15.1-h9329255_0.conda + sha256: c409e384ddf5976a42959265100d6b2c652017d250171eb10bae47ef8166193f + md5: fb5ce61da27ee937751162f86beba6d1 + depends: + - __osx >=11.0 + - icu >=75.1,<76.0a0 + - libiconv >=1.18,<2.0a0 + - liblzma >=5.8.1,<6.0a0 + - libxml2-16 2.15.1 h0ff4647_0 + - libzlib >=1.3.1,<2.0a0 + license: MIT + license_family: MIT + size: 40607 + timestamp: 1761016108361 +- conda: https://conda.anaconda.org/conda-forge/osx-arm64/libzlib-1.3.2-h8088a28_2.conda + sha256: 361415a698514b19a852f5d1123c5da746d4642139904156ddfca7c922d23a05 + md5: bc5a5721b6439f2f62a84f2548136082 + depends: + - __osx >=11.0 + constrains: + - zlib 1.3.2 *_2 + license: Zlib + license_family: Other + size: 47759 + timestamp: 1774072956767 +- conda: https://conda.anaconda.org/conda-forge/osx-arm64/llvm-openmp-22.1.5-hc7d1edf_1.conda + sha256: 2cd49562feda2bf324651050b2b035080fd635ed0f1c96c9ce7a59eff3cc0029 + md5: 8a4e2a54034b35bc6fa5bf9282913f45 + depends: + - __osx >=11.0 + constrains: + - openmp 22.1.5|22.1.5.* + - intel-openmp <0.0a0 + license: Apache-2.0 WITH LLVM-exception + license_family: APACHE + size: 285806 + timestamp: 1778447786965 +- conda: https://conda.anaconda.org/conda-forge/osx-arm64/llvm-tools-15.0.7-h4429f82_5.conda + sha256: e865ef25e486c7989b0f0995867f021406887ff9f3ec74197ac1dedf9db886ff + md5: 6749da09a2fd2aefe97253189a8ce4ef + depends: + - __osx >=11.0 + - libllvm15 15.0.7 h4429f82_5 + - libxml2 >=2.13.5,<2.14.0a0 + - libzlib >=1.3.1,<2.0a0 + constrains: + - llvmdev 15.0.7 + - clang 15.0.7.* + - clang-tools 15.0.7.* + - llvm 15.0.7.* + license: Apache-2.0 WITH LLVM-exception + license_family: Apache + size: 10143391 + timestamp: 1739672847119 +- conda: https://conda.anaconda.org/conda-forge/osx-arm64/llvm-tools-16.0.6-hc4b4ae8_4.conda + sha256: 3fc56aa583f213f271f95cc51ead5b3f1b4f6c82531860c75161a76b86b8a944 + md5: d920ea6c48053a4587bdfd0002bfff51 + depends: + - __osx >=11.0 + - libllvm16 16.0.6 hc4b4ae8_4 + - libxml2 >=2.13.5,<2.14.0a0 + - libzlib >=1.3.1,<2.0a0 + - zstd >=1.5.6,<1.6.0a0 + constrains: + - llvmdev 16.0.6 + - clang 16.0.6.* + - clang-tools 16.0.6.* + - llvm 16.0.6.* + license: Apache-2.0 WITH LLVM-exception + license_family: Apache + size: 20903239 + timestamp: 1739799054437 +- conda: https://conda.anaconda.org/conda-forge/osx-arm64/llvm-tools-17.0.6-hc4b4ae8_3.conda + sha256: 9849e862362578fbcdfdeedb559ed3c6488aa51a1904ba26047297c5e268e6ea + md5: b224f0358dbd10f2cf4906f967c11c1c + depends: + - __osx >=11.0 + - libllvm17 17.0.6 hc4b4ae8_3 + - libxml2 >=2.13.5,<2.14.0a0 + - libzlib >=1.3.1,<2.0a0 + - zstd >=1.5.6,<1.6.0a0 + constrains: + - llvmdev 17.0.6 + - llvm 17.0.6 + - clang-tools 17.0.6 + - clang 17.0.6 + license: Apache-2.0 WITH LLVM-exception + license_family: Apache + size: 22041866 + timestamp: 1737798643237 +- conda: https://conda.anaconda.org/conda-forge/osx-arm64/llvm-tools-18-18.1.8-default_h8e162e0_12.conda + sha256: 39cc992f6f600dff6d77186495a8aa24fc3bec65fa59f67fe3f1579cafd6cef9 + md5: 5a9a475df620e76c80da30335596c38e + depends: + - __osx >=11.0 + - libllvm18 18.1.8 default_h8e162e0_12 + - libxml2 + - libxml2-16 >=2.14.6 + - libzlib >=1.3.1,<2.0a0 + - zstd >=1.5.7,<1.6.0a0 + license: Apache-2.0 WITH LLVM-exception + license_family: Apache + size: 23486860 + timestamp: 1773655148634 +- conda: https://conda.anaconda.org/conda-forge/osx-arm64/llvm-tools-18.1.8-default_h8e162e0_12.conda + sha256: 5e400b2fe5915ce5a50035e3281c21605228b14d12db98f3a762535424d787c4 + md5: 6897c16fbfedfef8c2d4da1effc006f0 + depends: + - __osx >=11.0 + - libllvm18 18.1.8 default_h8e162e0_12 + - libxml2 + - libxml2-16 >=2.14.6 + - libzlib >=1.3.1,<2.0a0 + - llvm-tools-18 18.1.8 default_h8e162e0_12 + - zstd >=1.5.7,<1.6.0a0 + constrains: + - llvmdev 18.1.8 + - clang-tools 18.1.8 + - clang 18.1.8 + - llvm 18.1.8 + license: Apache-2.0 WITH LLVM-exception + license_family: Apache + size: 94349 + timestamp: 1773655291188 +- conda: https://conda.anaconda.org/conda-forge/osx-arm64/llvm-tools-19-19.1.7-h91fd4e7_2.conda + sha256: 73f9506f7c32a448071340e73a0e8461e349082d63ecc4849e3eb2d1efc357dd + md5: 8237b150fcd7baf65258eef9a0fc76ef + depends: + - __osx >=11.0 + - libcxx >=19 + - libllvm19 19.1.7 h8e0c9ce_2 + - libzlib >=1.3.1,<2.0a0 + - zstd >=1.5.7,<1.6.0a0 + license: Apache-2.0 WITH LLVM-exception + license_family: Apache + size: 16376095 + timestamp: 1757353442671 +- conda: https://conda.anaconda.org/conda-forge/osx-arm64/llvm-tools-19.1.7-h855ad52_2.conda + sha256: 09750c33b5d694c494cad9eafda56c61a62622264173d760341b49fb001afe82 + md5: 3e3ac06efc5fdc1aa675ca30bf7d53df + depends: + - __osx >=11.0 + - libllvm19 19.1.7 h8e0c9ce_2 + - llvm-tools-19 19.1.7 h91fd4e7_2 + constrains: + - llvm 19.1.7 + - llvmdev 19.1.7 + - clang-tools 19.1.7 + - clang 19.1.7 + license: Apache-2.0 WITH LLVM-exception + license_family: Apache + size: 88390 + timestamp: 1757353535760 +- conda: https://conda.anaconda.org/conda-forge/osx-arm64/llvmdev-15.0.7-h4429f82_5.conda + sha256: f3d4009d64a5dd2755a90437162fb447879181f1b80fac42982c5827ef94fa3e + md5: 493eff5e51ec621a58c880b2adf0c9ac + depends: + - __osx >=11.0 + - libcxx >=18 + - libllvm15 15.0.7 h4429f82_5 + - libxml2 >=2.13.5,<2.14.0a0 + - libzlib >=1.3.1,<2.0a0 + - llvm-tools 15.0.7 h4429f82_5 + constrains: + - clang 15.0.7.* + - clang-tools 15.0.7.* + - llvm 15.0.7.* + - llvm-tools 15.0.7.* + license: Apache-2.0 WITH LLVM-exception + license_family: Apache + size: 37033120 + timestamp: 1739673038769 +- conda: https://conda.anaconda.org/conda-forge/osx-arm64/llvmdev-16.0.6-hc4b4ae8_4.conda + sha256: d5ff46b55e6517c9f4101674b487be674f489ec8f04d7ccf1d2932dd5989d7be + md5: 2e8e24fcd1dd012c5c9f366916f03f13 + depends: + - __osx >=11.0 + - libcxx >=18 + - libllvm16 16.0.6 hc4b4ae8_4 + - libxml2 >=2.13.5,<2.14.0a0 + - libzlib >=1.3.1,<2.0a0 + - llvm-tools 16.0.6 hc4b4ae8_4 + - zstd >=1.5.6,<1.6.0a0 + constrains: + - clang 16.0.6.* + - clang-tools 16.0.6.* + - llvm 16.0.6.* + - llvm-tools 16.0.6.* + license: Apache-2.0 WITH LLVM-exception + license_family: Apache + size: 39133024 + timestamp: 1739799265428 +- conda: https://conda.anaconda.org/conda-forge/osx-arm64/llvmdev-17.0.6-hc4b4ae8_3.conda + sha256: 70265fff182c77482e8d18ec0a386a4d295c1a435ed76b040d910e92bab3c436 + md5: f20642f4b37d6cd01134c92e2a77e818 + depends: + - __osx >=11.0 + - libcxx >=18 + - libllvm17 17.0.6 hc4b4ae8_3 + - libxml2 >=2.13.5,<2.14.0a0 + - libzlib >=1.3.1,<2.0a0 + - llvm-tools 17.0.6 hc4b4ae8_3 + - zstd >=1.5.6,<1.6.0a0 + constrains: + - clang-tools 17.0.6 + - llvm 17.0.6 + - llvm-tools 17.0.6 + - clang 17.0.6 + license: Apache-2.0 WITH LLVM-exception + license_family: Apache + size: 42189053 + timestamp: 1737798843177 +- conda: https://conda.anaconda.org/conda-forge/osx-arm64/llvmdev-18.1.8-default_h8e162e0_12.conda + sha256: af7dcb7d5646b0c52b6c626f04b83cca14915c2bae84578dce821e1f65e3eb74 + md5: 4f4b04bdeb55cb2ed0cb8a24f410c495 + depends: + - __osx >=11.0 + - libcxx >=19 + - libllvm18 18.1.8 default_h8e162e0_12 + - libxml2 + - libxml2-16 >=2.14.6 + - libzlib >=1.3.1,<2.0a0 + - llvm-tools 18.1.8 default_h8e162e0_12 + - zstd >=1.5.7,<1.6.0a0 + constrains: + - llvm-tools 18.1.8 + - clang 18.1.8 + - clang-tools 18.1.8 + - llvm 18.1.8 + license: Apache-2.0 WITH LLVM-exception + license_family: Apache + size: 43913900 + timestamp: 1773655349730 +- conda: https://conda.anaconda.org/conda-forge/osx-arm64/llvmdev-19.1.7-h91fd4e7_2.conda + sha256: 321c651f0ba81ed0df3a6d7bbdf1de02ba13679ce1c880382fb73fbd245b4ae1 + md5: 46d3c0cdc4e2361ace6d6014d6e94d64 + depends: + - __osx >=11.0 + - libcxx >=19 + - libllvm19 19.1.7 h8e0c9ce_2 + - libzlib >=1.3.1,<2.0a0 + - llvm-tools 19.1.7 h855ad52_2 + - zstd >=1.5.7,<1.6.0a0 + constrains: + - llvm 19.1.7 + - llvm-tools 19.1.7 + - clang-tools 19.1.7 + - clang 19.1.7 + license: Apache-2.0 WITH LLVM-exception + license_family: Apache + size: 45637337 + timestamp: 1757353673840 +- conda: https://conda.anaconda.org/conda-forge/osx-arm64/ncurses-6.6-h1d4f5a5_0.conda + sha256: 4ea6c620b87bd1d42bb2ccc2c87cd2483fa2d7f9e905b14c223f11ff3f4c455d + md5: 343d10ed5b44030a2f67193905aea159 + depends: + - __osx >=11.0 + license: X11 AND BSD-3-Clause + size: 805509 + timestamp: 1777423252320 +- conda: https://conda.anaconda.org/conda-forge/osx-arm64/ninja-1.13.2-h49c215f_0.conda + sha256: 18d33c17b28d4771fc0b91b7b963c9ce31aca0a9af7dc8e9ee7c974bb207192c + md5: 175809cc57b2c67f27a0f238bd7f069d + depends: + - __osx >=11.0 + - libcxx >=19 + license: Apache-2.0 + license_family: APACHE + size: 164450 + timestamp: 1763688228613 +- conda: https://conda.anaconda.org/conda-forge/osx-arm64/openssl-3.6.2-hd24854e_0.conda + sha256: c91bf510c130a1ea1b6ff023e28bac0ccaef869446acd805e2016f69ebdc49ea + md5: 25dcccd4f80f1638428613e0d7c9b4e1 + depends: + - __osx >=11.0 + - ca-certificates + license: Apache-2.0 + license_family: Apache + size: 3106008 + timestamp: 1775587972483 +- conda: https://conda.anaconda.org/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://conda.anaconda.org/conda-forge/osx-arm64/sigtool-0.1.3-h98dc951_0.conda + sha256: aa8161f76fa1f1cfdd9371319dcccfc1884e790dabe2a284fe494ee6ae14a99c + md5: b7349cda16aa098a67c87bf9581faf22 + depends: + - __osx >=11.0 + - libsigtool 0.1.3 h98dc951_0 + - openssl >=3.5.4,<4.0a0 + - sigtool-codesign 0.1.3 h98dc951_0 + license: MIT + license_family: MIT + size: 117579 + timestamp: 1767045110047 +- conda: https://conda.anaconda.org/conda-forge/osx-arm64/sigtool-codesign-0.1.3-h98dc951_0.conda + sha256: f3d006e2441f110160a684744d90921bbedbffa247d7599d7e76b5cd048116dc + md5: ade77ad7513177297b1d75e351e136ce + depends: + - __osx >=11.0 + - libsigtool 0.1.3 h98dc951_0 + - openssl >=3.5.4,<4.0a0 + license: MIT + license_family: MIT + size: 114331 + timestamp: 1767045086274 +- conda: https://conda.anaconda.org/conda-forge/osx-arm64/tapi-1100.0.11-he4954df_0.tar.bz2 + sha256: 1709265fbee693a9e8b4126b0a3e68a6c4718b05821c659279c1af051f2d40f3 + md5: d83362e7d0513f35f454bc50b0ca591d + depends: + - libcxx >=11.0.0.a0 + license: NCSA + license_family: MIT + size: 191416 + timestamp: 1602687595316 +- conda: https://conda.anaconda.org/conda-forge/osx-arm64/tapi-1300.6.5-h03f4b80_0.conda + sha256: 37cd4f62ec023df8a6c6f9f6ffddde3d6620a83cbcab170a8fff31ef944402e5 + md5: b703bc3e6cba5943acf0e5f987b5d0e2 + depends: + - __osx >=11.0 + - libcxx >=17.0.0.a0 + - ncurses >=6.5,<7.0a0 + license: NCSA + license_family: MIT + size: 207679 + timestamp: 1725491499758 +- conda: https://conda.anaconda.org/conda-forge/osx-arm64/tapi-1600.0.11.8-h997e182_2.conda + sha256: de6893e53664e769c1b1c4103a666d436e3d307c0eb6a09a164e749d116e80f7 + md5: 555070ad1e18b72de36e9ee7ed3236b3 + depends: + - libcxx >=19.0.0.a0 + - __osx >=11.0 + - ncurses >=6.5,<7.0a0 + license: NCSA + size: 200192 + timestamp: 1775657222120 +- conda: https://conda.anaconda.org/conda-forge/osx-arm64/xz-5.8.3-hd0f0c4f_0.conda + sha256: d5bb880876336f625523c022aa9bdc6be76a85df721d9e7b33c352f528619185 + md5: 4df12be699991b97b66a85cc46ea75b5 + depends: + - __osx >=11.0 + - liblzma 5.8.3 h8088a28_0 + - liblzma-devel 5.8.3 h8088a28_0 + - xz-gpl-tools 5.8.3 hd0f0c4f_0 + - xz-tools 5.8.3 h8088a28_0 + license: 0BSD AND LGPL-2.1-or-later AND GPL-2.0-or-later + size: 24348 + timestamp: 1775825911109 +- conda: https://conda.anaconda.org/conda-forge/osx-arm64/xz-gpl-tools-5.8.3-hd0f0c4f_0.conda + sha256: 0864d53202f618b4c8a5f2c38b7029f14b900b852e99b6248813303f69ccfdee + md5: 43d168a8c95a8fcdcc44c2a0a7887653 + depends: + - __osx >=11.0 + - liblzma 5.8.3 h8088a28_0 + constrains: + - xz 5.8.3.* + license: 0BSD AND LGPL-2.1-or-later AND GPL-2.0-or-later + size: 34224 + timestamp: 1775825884830 +- conda: https://conda.anaconda.org/conda-forge/osx-arm64/xz-tools-5.8.3-h8088a28_0.conda + sha256: beb7fb34d5517cce06f5f89710de7108a8ca65ed9c0324269fc0446807bcbd91 + md5: b8c47eab4e58fe7015a12ceb9d5b114c + depends: + - __osx >=11.0 + - liblzma 5.8.3 h8088a28_0 + constrains: + - xz 5.8.3.* + license: 0BSD AND LGPL-2.1-or-later + size: 85931 + timestamp: 1775825857949 +- conda: https://conda.anaconda.org/conda-forge/osx-arm64/zstd-1.5.7-hbf9d68e_6.conda + sha256: 9485ba49e8f47d2b597dd399e88f4802e100851b27c21d7525625b0b4025a5d9 + md5: ab136e4c34e97f34fb621d2592a393d8 + depends: + - __osx >=11.0 + - libzlib >=1.3.1,<2.0a0 + license: BSD-3-Clause + license_family: BSD + size: 433413 + timestamp: 1764777166076 diff --git a/pixi.toml b/pixi.toml new file mode 100644 index 00000000..9a1b262f --- /dev/null +++ b/pixi.toml @@ -0,0 +1,92 @@ +[workspace] +channels = ["conda-forge"] +platforms = ["osx-64", "osx-arm64", "linux-64"] +preview = ["pixi-build"] + +[dependencies] +boost-cpp = "*" +clangdev = "*" +cmake = "*" +coreutils = "*" +cxx-compiler = "*" +ninja = "*" + +[environments] +llvm-15 = ["llvm-15"] +llvm-16 = ["llvm-16"] +llvm-17 = ["llvm-17"] +llvm-18 = ["llvm-18"] +llvm-19 = ["llvm-19"] +llvm-20 = ["llvm-20"] +llvm-21 = ["llvm-21"] +llvm-22 = ["llvm-22"] + +[feature.llvm-15] +dependencies = { + clangdev = "15.*" +} +platforms = ["linux-64", "osx-64", "osx-arm64"] + +[feature.llvm-16] +dependencies = { + clangdev = "16.*" +} +platforms = ["linux-64", "osx-64", "osx-arm64"] + +[feature.llvm-17] +dependencies = { + clangdev = "17.*" +} +platforms = ["linux-64", "osx-64", "osx-arm64"] + +[feature.llvm-18] +dependencies = { + clangdev = "18.*" +} +platforms = ["linux-64", "osx-64", "osx-arm64"] + +[feature.llvm-19] +dependencies = { + clangdev = "19.*" +} +platforms = ["linux-64", "osx-64", "osx-arm64"] + +[feature.llvm-20] +dependencies = { + clangdev = "20.*" +} +# Strangely, LLVM 20 on Silicon refuses to solve. +platforms = ["linux-64", "osx-64"] + +[feature.llvm-21] +dependencies = { + clangdev = "21.*" +} +# Strangely, LLVM 21 on Silicon refuses to solve. +platforms = ["linux-64", "osx-64"] + +[feature.llvm-22] +dependencies = { + clangdev = "22.*" +} +# Strangely, LLVM 22 on Silicon refuses to solve. +platforms = ["linux-64", "osx-64"] + +[tasks.configure] +cmd = ["cmake", "-Bbuild", "-GNinja"] +inputs = ["CMakeLists.txt", "**/CMakeLists.txt", "external/external.cmake"] +outputs = ["build/CMakeFiles/"] + +[tasks.build] +depends-on = ["configure"] +cwd = "build" +cmd = ["cmake", "--build", "."] + +[tasks.test] +depends-on = ["build"] +cwd = "build" +cmd = ["ctest", "--output-on-failure"] + +[tasks.cppast] +depends-on = ["build"] +cmd = ["./build/tool/cppast"] diff --git a/src/code_generator.cpp b/src/code_generator.cpp index ffdd6201..157f3d0d 100644 --- a/src/code_generator.cpp +++ b/src/code_generator.cpp @@ -551,22 +551,22 @@ void write_noexcept(code_generator::output& output, const cpp_function_base& bas else if (need_ws) output << whitespace; - auto& cond = base.noexcept_condition().value(); - if (cond.kind() == cpp_expression_kind::literal_t - && static_cast(cond).value() == "true") + auto* cond = &base.noexcept_condition().value(); + if (cond->kind() == cpp_expression_kind::literal_t + && static_cast(*cond).value() == "true") output << keyword("noexcept"); else { output << keyword("noexcept") << punctuation("(") << bracket_ws; // update check when expression gets exposed - if (cond.kind() == cpp_expression_kind::unexposed_t - && static_cast(cond).expression().front().spelling + if (cond->kind() == cpp_expression_kind::unexposed_t + && static_cast(*cond).expression().front().spelling == "false") output << keyword("false"); else if (output.options().is_set(code_generator::exclude_noexcept_condition)) output.excluded(base); else - detail::write_expression(output, cond); + detail::write_expression(output, *cond); output << bracket_ws << punctuation(")"); } } diff --git a/src/cpp_entity.cpp b/src/cpp_entity.cpp index ae1ce7ab..1535d6b1 100644 --- a/src/cpp_entity.cpp +++ b/src/cpp_entity.cpp @@ -13,9 +13,9 @@ cpp_scope_name::cpp_scope_name(type_safe::object_ref entity) : { if (cppast::is_templated(*entity)) { - auto& templ = static_cast(entity->parent().value()); - if (!templ.parameters().empty()) - templ_ = type_safe::ref(templ); + auto* templ = static_cast(&entity->parent().value()); + if (!templ->parameters().empty()) + templ_ = type_safe::ref(*templ); } else if (is_template(entity->kind())) { diff --git a/src/libclang/class_parser.cpp b/src/libclang/class_parser.cpp index 250374c4..887d0623 100644 --- a/src/libclang/class_parser.cpp +++ b/src/libclang/class_parser.cpp @@ -56,8 +56,12 @@ cpp_class::builder make_class_builder(const detail::parse_context& context, cons auto kind = parse_class_kind(stream); auto attributes = detail::parse_attributes(stream); auto name = detail::get_cursor_name(cur); + // libclang 16+ synthesizes a spelling like "(unnamed struct at ...)" for + // anonymous tags; expose them with an empty name as old libclang did. + const char* name_str + = (clang_Cursor_isAnonymous(cur) != 0u) ? "" : name.c_str(); - auto result = cpp_class::builder(name.c_str(), kind); + auto result = cpp_class::builder(name_str, kind); result.get().add_attribute(attributes); return result; } diff --git a/src/libclang/enum_parser.cpp b/src/libclang/enum_parser.cpp index 68fef844..7d9b91b2 100644 --- a/src/libclang/enum_parser.cpp +++ b/src/libclang/enum_parser.cpp @@ -47,19 +47,26 @@ std::unique_ptr parse_enum_value(const detail::parse_context& co cpp_enum::builder make_enum_builder(const detail::parse_context& context, const CXCursor& cur, type_safe::optional& semantic_parent) { - auto name = detail::get_cursor_name(cur); + // libclang 16+ synthesizes a spelling like "(unnamed enum at ...)" for + // anonymous enums, which does not appear in the source tokens. + auto is_anonymous = clang_Cursor_isAnonymous(cur) != 0u; + auto name = detail::get_cursor_name(cur); detail::cxtokenizer tokenizer(context.tu, context.file, cur); detail::cxtoken_stream stream(tokenizer, cur); - // enum [class/struct] [] name [: type] { + // enum [class/struct] [] [name [: type]] { detail::skip(stream, "enum"); auto scoped = detail::skip_if(stream, "class") || detail::skip_if(stream, "struct"); auto attributes = detail::parse_attributes(stream); std::string scope; - while (!detail::skip_if(stream, name.c_str())) - if (!detail::append_scope(stream, scope)) - DEBUG_UNREACHABLE(detail::parse_error_handler{}, cur, "unexpected tokens in enum name"); + if (!is_anonymous) + { + while (!detail::skip_if(stream, name.c_str())) + if (!detail::append_scope(stream, scope)) + DEBUG_UNREACHABLE(detail::parse_error_handler{}, cur, + "unexpected tokens in enum name"); + } if (!scope.empty()) semantic_parent = cpp_entity_ref(detail::get_entity_id(clang_getCursorSemanticParent(cur)), std::move(scope)); @@ -68,7 +75,8 @@ cpp_enum::builder make_enum_builder(const detail::parse_context& context, const auto type = detail::parse_type(context, cur, clang_getEnumDeclIntegerType(cur)); auto type_given = detail::skip_if(stream, ":"); - auto result = cpp_enum::builder(name.c_str(), scoped, std::move(type), type_given); + auto result = cpp_enum::builder(is_anonymous ? "" : name.c_str(), scoped, std::move(type), + type_given); result.get().add_attribute(attributes); return result; } diff --git a/src/libclang/language_linkage_parser.cpp b/src/libclang/language_linkage_parser.cpp index dad7ff15..ce576b63 100644 --- a/src/libclang/language_linkage_parser.cpp +++ b/src/libclang/language_linkage_parser.cpp @@ -13,8 +13,10 @@ using namespace cppast; std::unique_ptr detail::try_parse_cpp_language_linkage(const parse_context& context, const CXCursor& cur) { - DEBUG_ASSERT(cur.kind == CXCursor_UnexposedDecl, - detail::assert_handler{}); // not exposed currently + // libclang <16 reports 'extern "C"' as CXCursor_UnexposedDecl; libclang 16+ + // gives it its own kind, CXCursor_LinkageSpec. Accept both. + DEBUG_ASSERT(cur.kind == CXCursor_UnexposedDecl || cur.kind == CXCursor_LinkageSpec, + detail::assert_handler{}); detail::cxtokenizer tokenizer(context.tu, context.file, cur); detail::cxtoken_stream stream(tokenizer, cur); diff --git a/src/libclang/libclang_parser.cpp b/src/libclang/libclang_parser.cpp index 31ee7fdb..d9e113a8 100644 --- a/src/libclang/libclang_parser.cpp +++ b/src/libclang/libclang_parser.cpp @@ -3,6 +3,7 @@ #include +#include #include #include #include @@ -123,7 +124,7 @@ std::string get_full_path(const detail::cxstring& dir, const std::string& file) else if (is_absolute(file)) // absolute file return file; - else if (dir[dir.length() - 1] != '/' && dir[dir.length() - 1] != '\\') + else if (dir.length() && dir[dir.length() - 1] != '/' && dir[dir.length() - 1] != '\\') // relative needing separator return dir.std_str() + '/' + file; else @@ -286,6 +287,43 @@ bool is_valid_binary(const std::string& binary) void add_default_include_dirs(libclang_compile_config& config) { +#if defined(__APPLE__) + // On macOS, adding the libc++/SDK paths as -I alongside libclang's own + // sysroot-based system includes causes the libc++ headers to be classified + // as user headers, which breaks `#include_next ` (and friends) + // when they try to chain to the Apple C library headers. Just forward + // -isysroot and let libclang's embedded driver populate the search list. + if (auto sdkroot = std::getenv("SDKROOT")) + { + config.add_flag("-isysroot"); + config.add_flag(sdkroot); + + // Ask the clang binary for its resource dir (where stdarg.h, stddef.h + // etc. live). Compile-command driven configs otherwise lose access to + // these builtins under libclang's standalone parse mode. + std::string resource_dir; + tpl::Process process(detail::libclang_compile_config_access::clang_binary(config) + + " -print-resource-dir", + "", + [&](const char* str, std::size_t n) { + resource_dir.append(str, n); + }, + [](const char*, std::size_t) {}); + if (process.get_exit_status() == 0) + { + while (!resource_dir.empty() + && (resource_dir.back() == '\n' || resource_dir.back() == '\r')) + resource_dir.pop_back(); + if (!resource_dir.empty()) + { + config.add_flag("-resource-dir"); + config.add_flag(std::move(resource_dir)); + } + } + return; + } +#endif + std::string verbose_output; std::string language = config.use_c() ? "-xc" : "-xc++"; tpl::Process process( diff --git a/src/libclang/parse_functions.cpp b/src/libclang/parse_functions.cpp index 33e07c2e..b6ed3eae 100644 --- a/src/libclang/parse_functions.cpp +++ b/src/libclang/parse_functions.cpp @@ -129,6 +129,13 @@ try return entity; break; + case CXCursor_LinkageSpec: + // libclang 16+ exposes 'extern "C"' (and other language linkage + // blocks) as their own cursor kind instead of CXCursor_UnexposedDecl. + if (auto entity = try_parse_cpp_language_linkage(context, cur)) + return entity; + break; + case CXCursor_MacroDefinition: case CXCursor_InclusionDirective: DEBUG_UNREACHABLE(detail::assert_handler{}, "handle preprocessor in parser callback"); diff --git a/src/libclang/type_parser.cpp b/src/libclang/type_parser.cpp index 41d156cc..2b395fce 100644 --- a/src/libclang/type_parser.cpp +++ b/src/libclang/type_parser.cpp @@ -372,6 +372,25 @@ std::unique_ptr make_ref_qualified(std::unique_ptr type, cpp return cpp_reference_type::build(std::move(type), ref); } +bool is_in_template_context(CXCursor cur) +{ + while (!clang_Cursor_isNull(cur)) + { + switch (clang_getCursorKind(cur)) + { + case CXCursor_ClassTemplate: + case CXCursor_ClassTemplatePartialSpecialization: + case CXCursor_FunctionTemplate: + case CXCursor_TypeAliasTemplateDecl: + return true; + default: + break; + } + cur = clang_getCursorSemanticParent(cur); + } + return false; +} + std::unique_ptr parse_member_pointee_type(const detail::parse_context& context, const CXCursor& cur, const CXType& type) { @@ -683,8 +702,37 @@ std::unique_ptr parse_type_impl(const detail::parse_context& context, } else { - if (detail::cxstring(clang_getCursorSpelling(decl)).empty()) - spelling = ""; // anonymous type + auto decl_kind = clang_getCursorKind(decl); + if (clang_Cursor_isAnonymous(decl) != 0u + || detail::cxstring(clang_getCursorSpelling(decl)).empty()) + { + // libclang 16+ synthesizes a spelling like + // "(unnamed struct at ...)" for anonymous tags, so the + // empty() check no longer suffices. + spelling = ""; + } + else if (decl_kind != CXCursor_TypedefDecl + && decl_kind != CXCursor_TypeAliasDecl) + { + // libclang 16+ may return only the source-level spelling + // for elaborated record/enum references (e.g. "base" + // when "using namespace ns" makes ns::base reachable); + // use the canonical type for the fully-qualified name. + // Restricted to non-typedef decls so typedef aliases are + // preserved instead of resolved to their target. + // Strip cv qualifiers and the struct/class/union prefix + // that the canonical spelling can re-introduce (they + // were already extracted from the original spelling by + // make_leave_type). + spelling = detail::cxstring( + clang_getTypeSpelling(clang_getCanonicalType(type))) + .std_str(); + prefix_cv(spelling); + suffix_cv(spelling); + remove_prefix(spelling, "struct", true); + remove_prefix(spelling, "class", true); + remove_prefix(spelling, "union", true); + } return cpp_user_defined_type::build( cpp_type_ref(detail::get_entity_id(decl), std::move(spelling))); } @@ -715,6 +763,11 @@ std::unique_ptr parse_type_impl(const detail::parse_context& context, return try_parse_function_type(context, cur, type); case CXType_MemberPointer: + // libclang 21+ crashes inside clang_Type_getClassType when the class + // is dependent (e.g. 'void (T::*)()' in a function template); fall + // back to an unexposed type when we cannot safely inspect the class. + if (is_in_template_context(cur)) + return cpp_unexposed_type::build(get_type_spelling(cur, type)); return cpp_pointer_type::build(parse_member_pointee_type(context, cur, type)); case CXType_Auto: diff --git a/test/CMakeLists.txt b/test/CMakeLists.txt index 615b0dc4..13f3d879 100644 --- a/test/CMakeLists.txt +++ b/test/CMakeLists.txt @@ -5,7 +5,7 @@ # Fetch catch. message(STATUS "Fetching catch") include(FetchContent) -FetchContent_Declare(catch URL https://github.com/catchorg/Catch2/archive/refs/tags/v2.13.9.zip) +FetchContent_Declare(catch GIT_REPOSITORY https://github.com/catchorg/Catch2 GIT_TAG v3.15.0) FetchContent_MakeAvailable(catch) set(tests @@ -42,9 +42,9 @@ foreach(file ${files}) file(APPEND ${CMAKE_CURRENT_BINARY_DIR}/cppast_files.hpp "\"${CMAKE_CURRENT_SOURCE_DIR}/../src/${file}\",\n") endforeach() -add_executable(cppast_test test.cpp test_parser.hpp ${tests}) +add_executable(cppast_test test_parser.hpp ${tests}) target_include_directories(cppast_test PRIVATE ${CMAKE_CURRENT_LIST_DIR}/../src ${CMAKE_CURRENT_BINARY_DIR}) -target_link_libraries(cppast_test PUBLIC cppast Catch2) +target_link_libraries(cppast_test PUBLIC cppast Catch2::Catch2WithMain) target_compile_definitions(cppast_test PUBLIC CPPAST_INTEGRATION_FILE="${CMAKE_CURRENT_SOURCE_DIR}/integration.cpp" CPPAST_COMPILE_COMMANDS="${CMAKE_BINARY_DIR}") diff --git a/test/cpp_friend.cpp b/test/cpp_friend.cpp index f2c0017b..f291f713 100644 --- a/test/cpp_friend.cpp +++ b/test/cpp_friend.cpp @@ -14,7 +14,7 @@ using namespace cppast; -TEST_CASE("cpp_friend", "[!hide][clang4]") +TEST_CASE("cpp_friend", "[.][clang4]") { auto code = R"( /// b diff --git a/test/cpp_preprocessor.cpp b/test/cpp_preprocessor.cpp index a9d52f6f..2a58d5e6 100644 --- a/test/cpp_preprocessor.cpp +++ b/test/cpp_preprocessor.cpp @@ -119,6 +119,10 @@ TEST_CASE("command line macro definition") REQUIRE(!logger.error); } +static bool endsWith( std::string const& s, std::string const& suffix ) { + return s.size() >= suffix.size() && std::equal(suffix.rbegin(), suffix.rend(), s.rbegin()); +} + TEST_CASE("cpp_include_directive") { write_file("cpp_include_directive-header.hpp", R"( @@ -149,7 +153,7 @@ b REQUIRE(include.target().name() == include.name()); REQUIRE(include.include_kind() == cppast::cpp_include_kind::system); REQUIRE(include.target().get(idx).empty()); - REQUIRE_THAT(include.full_path(), Catch::EndsWith("iostream")); + REQUIRE(endsWith(include.full_path(), std::string("iostream"))); } else if (include.name() == "cpp_include_directive-header.hpp") { diff --git a/test/cpp_token.cpp b/test/cpp_token.cpp index 5be6450a..879d0a15 100644 --- a/test/cpp_token.cpp +++ b/test/cpp_token.cpp @@ -3,7 +3,7 @@ #include -#include +#include #include #include diff --git a/test/cpp_type_alias.cpp b/test/cpp_type_alias.cpp index 75adbfcd..d2c541a5 100644 --- a/test/cpp_type_alias.cpp +++ b/test/cpp_type_alias.cpp @@ -510,8 +510,15 @@ typedef decltype(0) w; } else if (alias.name() == "v") { - auto type = cpp_user_defined_type::build(cpp_type_ref(cpp_entity_id(""), "")); - CHECK(equal_types(idx, alias.underlying_type(), *type)); + // libclang <16 reports the underlying anonymous struct with an + // empty name; libclang 16+ propagates the typedef name 'v' onto + // the struct and has no API to recover the original anonymity. + auto type_empty = cpp_user_defined_type::build( + cpp_type_ref(cpp_entity_id(""), "")); + auto type_named = cpp_user_defined_type::build( + cpp_type_ref(cpp_entity_id(""), "v")); + CHECK((equal_types(idx, alias.underlying_type(), *type_empty) + || equal_types(idx, alias.underlying_type(), *type_named))); return false; } else if (alias.name() == "w") diff --git a/test/integration.cpp b/test/integration.cpp index d0418317..d5f1f6f3 100644 --- a/test/integration.cpp +++ b/test/integration.cpp @@ -7,7 +7,19 @@ using namespace cppast; -TEST_CASE("stdlib", "[!hide][integration]") +// On macOS with conda's libclang/libc++, the bare-config path lacks the +// implicit toolchain context (target predicates, _LIBCPP_* feature macros) +// that the (conda) clang driver normally injects. Without it, libclang +// mis-handles libc++ constructs like _LIBCPP_HIDE_FROM_ABI's abi_tag +// attribute. The companion "cppast" integration test (which uses +// compile_commands and therefore gets the full flag set) is unaffected. +#if defined(__APPLE__) +# define CPPAST_STDLIB_TAG "[.][!mayfail][integration]" +#else +# define CPPAST_STDLIB_TAG "[.][integration]" +#endif + +TEST_CASE("stdlib", CPPAST_STDLIB_TAG) { auto code = R"( // list of headers from: http://en.cppreference.com/w/cpp/header @@ -113,7 +125,7 @@ TEST_CASE("stdlib", "[!hide][integration]") REQUIRE(!parser.error()); } -TEST_CASE("cppast", "[!hide][integration]") +TEST_CASE("cppast", "[integration]") { const char* files[] = { #include diff --git a/test/libclang_parser.cpp b/test/libclang_parser.cpp index 99e7232a..5793a5cf 100644 --- a/test/libclang_parser.cpp +++ b/test/libclang_parser.cpp @@ -1,7 +1,7 @@ // Copyright (C) 2017-2023 Jonathan Müller and cppast contributors // SPDX-License-Identifier: MIT -#include +#include #include diff --git a/test/parser.cpp b/test/parser.cpp index 2b94bee7..5932e126 100644 --- a/test/parser.cpp +++ b/test/parser.cpp @@ -3,7 +3,7 @@ #include -#include +#include using namespace cppast; diff --git a/test/preprocessor.cpp b/test/preprocessor.cpp index df9a039a..93294e58 100644 --- a/test/preprocessor.cpp +++ b/test/preprocessor.cpp @@ -1,4 +1,4 @@ -#include +#include #include #include "libclang/preprocessor.hpp" @@ -8,7 +8,7 @@ using namespace cppast; -TEST_CASE("preprocessor escaped character", "[!hide][clang4]") +TEST_CASE("preprocessor escaped character", "[.][clang4]") { write_file("ppec.hpp", R"( )"); diff --git a/test/test.cpp b/test/test.cpp deleted file mode 100644 index 793a501d..00000000 --- a/test/test.cpp +++ /dev/null @@ -1,5 +0,0 @@ -// Copyright (C) 2017-2023 Jonathan Müller and cppast contributors -// SPDX-License-Identifier: MIT - -#define CATCH_CONFIG_MAIN -#include diff --git a/test/test_parser.hpp b/test/test_parser.hpp index d5b1d22a..3d36a328 100644 --- a/test/test_parser.hpp +++ b/test/test_parser.hpp @@ -6,7 +6,7 @@ #include -#include +#include #include #include