{
  "canonical_url": "https://crates.flyology.org/community/",
  "catalog": {
    "name": "community",
    "repository_url": "https://github.com/alire-project/alire-index",
    "revision": "cd12c6aa35b7d6483841517305d57ba167ec78d0"
  },
  "generated_at": "2026-08-23T04:55:42Z",
  "index": {
    "version": "1.4.0"
  },
  "package": {
    "catalog": "community",
    "description": "Ada LZMA Library Binding",
    "development_only": false,
    "latest_version": "1.1.5",
    "name": "lzmada",
    "selected_version": "1.1.5",
    "versions": [
      {
        "dependants": [
          {
            "catalog": "community",
            "condition": null,
            "development": false,
            "name": "utilada_lzma",
            "path": "index/ut/utilada_lzma/utilada_lzma-2.9.0.toml",
            "provided_version": "1.1.5",
            "qualifies": true,
            "requirement": "^1.1.2",
            "requires": "lzmada",
            "selected": true,
            "version": "2.9.0"
          },
          {
            "catalog": "community",
            "condition": null,
            "development": false,
            "name": "utilada_lzma",
            "path": "index/ut/utilada_lzma/utilada_lzma-2.8.2.toml",
            "provided_version": "1.1.5",
            "qualifies": true,
            "requirement": "^1.1.2",
            "requires": "lzmada",
            "selected": false,
            "version": "2.8.2"
          },
          {
            "catalog": "community",
            "condition": null,
            "development": false,
            "name": "utilada_lzma",
            "path": "index/ut/utilada_lzma/utilada_lzma-2.8.1.toml",
            "provided_version": "1.1.5",
            "qualifies": true,
            "requirement": "^1.1.2",
            "requires": "lzmada",
            "selected": false,
            "version": "2.8.1"
          },
          {
            "catalog": "community",
            "condition": null,
            "development": false,
            "name": "utilada_lzma",
            "path": "index/ut/utilada_lzma/utilada_lzma-2.8.0.toml",
            "provided_version": "1.1.5",
            "qualifies": true,
            "requirement": "^1.1.2",
            "requires": "lzmada",
            "selected": false,
            "version": "2.8.0"
          },
          {
            "catalog": "community",
            "condition": null,
            "development": false,
            "name": "utilada_lzma",
            "path": "index/ut/utilada_lzma/utilada_lzma-2.7.0.toml",
            "provided_version": "1.1.5",
            "qualifies": true,
            "requirement": "^1.1.2",
            "requires": "lzmada",
            "selected": false,
            "version": "2.7.0"
          },
          {
            "catalog": "community",
            "condition": null,
            "development": false,
            "name": "utilada_lzma",
            "path": "index/ut/utilada_lzma/utilada_lzma-2.6.0.toml",
            "provided_version": "1.1.5",
            "qualifies": true,
            "requirement": "^1.1.2",
            "requires": "lzmada",
            "selected": false,
            "version": "2.6.0"
          },
          {
            "catalog": "community",
            "condition": null,
            "development": false,
            "name": "utilada_lzma",
            "path": "index/ut/utilada_lzma/utilada_lzma-2.5.0.toml",
            "provided_version": "1.1.5",
            "qualifies": true,
            "requirement": "^1.1.2",
            "requires": "lzmada",
            "selected": false,
            "version": "2.5.0"
          },
          {
            "catalog": "community",
            "condition": null,
            "development": false,
            "name": "utilada_lzma",
            "path": "index/ut/utilada_lzma/utilada_lzma-2.1.0.toml",
            "provided_version": "1.1.5",
            "qualifies": true,
            "requirement": "^1.1.0",
            "requires": "lzmada",
            "selected": false,
            "version": "2.1.0"
          },
          {
            "catalog": "community",
            "condition": null,
            "development": false,
            "name": "utilada_lzma",
            "path": "index/ut/utilada_lzma/utilada_lzma-2.0.0.toml",
            "provided_version": "1.1.5",
            "qualifies": true,
            "requirement": "^1.1.0",
            "requires": "lzmada",
            "selected": false,
            "version": "2.0.0"
          }
        ],
        "dependencies": [
          {
            "catalog": "community",
            "condition": null,
            "name": "liblzma",
            "package": "liblzma",
            "provided_version": "system",
            "requirement": "*",
            "resolved": true,
            "version": "system"
          }
        ],
        "development": false,
        "external": false,
        "manifest": {
          "authors": [
            "Stephane.Carrez@gmail.com"
          ],
          "configuration": {
            "disabled": true
          },
          "depends-on": [
            {
              "liblzma": "*"
            }
          ],
          "description": "Ada LZMA Library Binding",
          "gpr-externals": {
            "LZMA_BUILD": [
              "distrib",
              "debug",
              "optimize",
              "profile",
              "coverage"
            ],
            "LZMA_LIBRARY_TYPE": [
              "relocatable",
              "static",
              "static-pic"
            ]
          },
          "licenses": "MIT",
          "long-description": "\nA very thin Ada binding for the LZMA compression library.\nRoughly speaking, import some package:\n\n    with Lzma.Base;\n    with Lzma.Container;\n    with Lzma.Check;\n\nThen declare the LZMA stream:\n\n    Stream  : aliased Lzma.Base.lzma_stream := Lzma.Base.LZMA_STREAM_INIT;\n\nInitialize the LZMA stream as decoder (or as encoder):\n\n    Result := Lzma.Container.lzma_stream_decoder (Stream'Unchecked_Access,\n                                                  Long_Long_Integer'Last,\n                                                  Lzma.Container.LZMA_CONCATENATED);\n\nSetup the stream 'next_out', 'avail_out', 'next_in' and 'avail_in' and call\nthe lzma_code operation with the action (Lzma.Base.LZMA_RUN or Lzma.Base.LZMA_FINISH):\n\n    Result := Lzma.Base.lzma_code (Stream'Unchecked_Access, Action);\n\nClose the LZMA stream:\n\n    Lzma.Base.lzma_end (Stream'Unchecked_Access);\n\n",
          "maintainers": [
            "Stephane.Carrez@gmail.com"
          ],
          "maintainers-logins": [
            "stcarrez"
          ],
          "name": "lzmada",
          "origin": {
            "commit": "979df0feca24d10448d1d9a20a4db5c9e6cb9aae",
            "url": "git+https://github.com/stcarrez/ada-lzma.git"
          },
          "project-files": [
            "lzmada.gpr"
          ],
          "tags": [
            "compression",
            "lzma"
          ],
          "version": "1.1.5",
          "website": "https://gitlab.com/stcarrez/ada-lzma"
        },
        "path": "index/lz/lzmada/lzmada-1.1.5.toml",
        "version": "1.1.5"
      },
      {
        "dependants": [
          {
            "catalog": "community",
            "condition": null,
            "development": false,
            "name": "utilada_lzma",
            "path": "index/ut/utilada_lzma/utilada_lzma-2.9.0.toml",
            "provided_version": "1.1.4",
            "qualifies": true,
            "requirement": "^1.1.2",
            "requires": "lzmada",
            "selected": true,
            "version": "2.9.0"
          },
          {
            "catalog": "community",
            "condition": null,
            "development": false,
            "name": "utilada_lzma",
            "path": "index/ut/utilada_lzma/utilada_lzma-2.8.2.toml",
            "provided_version": "1.1.4",
            "qualifies": true,
            "requirement": "^1.1.2",
            "requires": "lzmada",
            "selected": false,
            "version": "2.8.2"
          },
          {
            "catalog": "community",
            "condition": null,
            "development": false,
            "name": "utilada_lzma",
            "path": "index/ut/utilada_lzma/utilada_lzma-2.8.1.toml",
            "provided_version": "1.1.4",
            "qualifies": true,
            "requirement": "^1.1.2",
            "requires": "lzmada",
            "selected": false,
            "version": "2.8.1"
          },
          {
            "catalog": "community",
            "condition": null,
            "development": false,
            "name": "utilada_lzma",
            "path": "index/ut/utilada_lzma/utilada_lzma-2.8.0.toml",
            "provided_version": "1.1.4",
            "qualifies": true,
            "requirement": "^1.1.2",
            "requires": "lzmada",
            "selected": false,
            "version": "2.8.0"
          },
          {
            "catalog": "community",
            "condition": null,
            "development": false,
            "name": "utilada_lzma",
            "path": "index/ut/utilada_lzma/utilada_lzma-2.7.0.toml",
            "provided_version": "1.1.4",
            "qualifies": true,
            "requirement": "^1.1.2",
            "requires": "lzmada",
            "selected": false,
            "version": "2.7.0"
          },
          {
            "catalog": "community",
            "condition": null,
            "development": false,
            "name": "utilada_lzma",
            "path": "index/ut/utilada_lzma/utilada_lzma-2.6.0.toml",
            "provided_version": "1.1.4",
            "qualifies": true,
            "requirement": "^1.1.2",
            "requires": "lzmada",
            "selected": false,
            "version": "2.6.0"
          },
          {
            "catalog": "community",
            "condition": null,
            "development": false,
            "name": "utilada_lzma",
            "path": "index/ut/utilada_lzma/utilada_lzma-2.5.0.toml",
            "provided_version": "1.1.4",
            "qualifies": true,
            "requirement": "^1.1.2",
            "requires": "lzmada",
            "selected": false,
            "version": "2.5.0"
          },
          {
            "catalog": "community",
            "condition": null,
            "development": false,
            "name": "utilada_lzma",
            "path": "index/ut/utilada_lzma/utilada_lzma-2.1.0.toml",
            "provided_version": "1.1.4",
            "qualifies": true,
            "requirement": "^1.1.0",
            "requires": "lzmada",
            "selected": false,
            "version": "2.1.0"
          },
          {
            "catalog": "community",
            "condition": null,
            "development": false,
            "name": "utilada_lzma",
            "path": "index/ut/utilada_lzma/utilada_lzma-2.0.0.toml",
            "provided_version": "1.1.4",
            "qualifies": true,
            "requirement": "^1.1.0",
            "requires": "lzmada",
            "selected": false,
            "version": "2.0.0"
          }
        ],
        "dependencies": [
          {
            "catalog": "community",
            "condition": null,
            "name": "liblzma",
            "package": "liblzma",
            "provided_version": "system",
            "requirement": "*",
            "resolved": true,
            "version": "system"
          }
        ],
        "development": false,
        "external": false,
        "manifest": {
          "authors": [
            "Stephane.Carrez@gmail.com"
          ],
          "configuration": {
            "disabled": true
          },
          "depends-on": [
            {
              "liblzma": "*"
            }
          ],
          "description": "Ada LZMA Library Binding",
          "gpr-externals": {
            "LZMA_BUILD": [
              "distrib",
              "debug",
              "optimize",
              "profile",
              "coverage"
            ],
            "LZMA_LIBRARY_TYPE": [
              "relocatable",
              "static",
              "static-pic"
            ]
          },
          "licenses": "MIT",
          "long-description": "\nA very thin Ada binding for the LZMA compression library.\nRoughly speaking, import some package:\n\n    with Lzma.Base;\n    with Lzma.Container;\n    with Lzma.Check;\n\nThen declare the LZMA stream:\n\n    Stream  : aliased Lzma.Base.lzma_stream := Lzma.Base.LZMA_STREAM_INIT;\n\nInitialize the LZMA stream as decoder (or as encoder):\n\n    Result := Lzma.Container.lzma_stream_decoder (Stream'Unchecked_Access,\n                                                  Long_Long_Integer'Last,\n                                                  Lzma.Container.LZMA_CONCATENATED);\n\nSetup the stream 'next_out', 'avail_out', 'next_in' and 'avail_in' and call\nthe lzma_code operation with the action (Lzma.Base.LZMA_RUN or Lzma.Base.LZMA_FINISH):\n\n    Result := Lzma.Base.lzma_code (Stream'Unchecked_Access, Action);\n\nClose the LZMA stream:\n\n    Lzma.Base.lzma_end (Stream'Unchecked_Access);\n\n",
          "maintainers": [
            "Stephane.Carrez@gmail.com"
          ],
          "maintainers-logins": [
            "stcarrez"
          ],
          "name": "lzmada",
          "origin": {
            "commit": "bb61ba64530818528536931313d3bfbe8bec4780",
            "url": "git+https://gitlab.com/stcarrez/ada-lzma.git"
          },
          "project-files": [
            "lzmada.gpr"
          ],
          "tags": [
            "compression",
            "lzma"
          ],
          "version": "1.1.4",
          "website": "https://gitlab.com/stcarrez/ada-lzma"
        },
        "path": "index/lz/lzmada/lzmada-1.1.4.toml",
        "version": "1.1.4"
      },
      {
        "dependants": [
          {
            "catalog": "community",
            "condition": null,
            "development": false,
            "name": "utilada_lzma",
            "path": "index/ut/utilada_lzma/utilada_lzma-2.9.0.toml",
            "provided_version": "1.1.3",
            "qualifies": true,
            "requirement": "^1.1.2",
            "requires": "lzmada",
            "selected": true,
            "version": "2.9.0"
          },
          {
            "catalog": "community",
            "condition": null,
            "development": false,
            "name": "utilada_lzma",
            "path": "index/ut/utilada_lzma/utilada_lzma-2.8.2.toml",
            "provided_version": "1.1.3",
            "qualifies": true,
            "requirement": "^1.1.2",
            "requires": "lzmada",
            "selected": false,
            "version": "2.8.2"
          },
          {
            "catalog": "community",
            "condition": null,
            "development": false,
            "name": "utilada_lzma",
            "path": "index/ut/utilada_lzma/utilada_lzma-2.8.1.toml",
            "provided_version": "1.1.3",
            "qualifies": true,
            "requirement": "^1.1.2",
            "requires": "lzmada",
            "selected": false,
            "version": "2.8.1"
          },
          {
            "catalog": "community",
            "condition": null,
            "development": false,
            "name": "utilada_lzma",
            "path": "index/ut/utilada_lzma/utilada_lzma-2.8.0.toml",
            "provided_version": "1.1.3",
            "qualifies": true,
            "requirement": "^1.1.2",
            "requires": "lzmada",
            "selected": false,
            "version": "2.8.0"
          },
          {
            "catalog": "community",
            "condition": null,
            "development": false,
            "name": "utilada_lzma",
            "path": "index/ut/utilada_lzma/utilada_lzma-2.7.0.toml",
            "provided_version": "1.1.3",
            "qualifies": true,
            "requirement": "^1.1.2",
            "requires": "lzmada",
            "selected": false,
            "version": "2.7.0"
          },
          {
            "catalog": "community",
            "condition": null,
            "development": false,
            "name": "utilada_lzma",
            "path": "index/ut/utilada_lzma/utilada_lzma-2.6.0.toml",
            "provided_version": "1.1.3",
            "qualifies": true,
            "requirement": "^1.1.2",
            "requires": "lzmada",
            "selected": false,
            "version": "2.6.0"
          },
          {
            "catalog": "community",
            "condition": null,
            "development": false,
            "name": "utilada_lzma",
            "path": "index/ut/utilada_lzma/utilada_lzma-2.5.0.toml",
            "provided_version": "1.1.3",
            "qualifies": true,
            "requirement": "^1.1.2",
            "requires": "lzmada",
            "selected": false,
            "version": "2.5.0"
          },
          {
            "catalog": "community",
            "condition": null,
            "development": false,
            "name": "utilada_lzma",
            "path": "index/ut/utilada_lzma/utilada_lzma-2.1.0.toml",
            "provided_version": "1.1.3",
            "qualifies": true,
            "requirement": "^1.1.0",
            "requires": "lzmada",
            "selected": false,
            "version": "2.1.0"
          },
          {
            "catalog": "community",
            "condition": null,
            "development": false,
            "name": "utilada_lzma",
            "path": "index/ut/utilada_lzma/utilada_lzma-2.0.0.toml",
            "provided_version": "1.1.3",
            "qualifies": true,
            "requirement": "^1.1.0",
            "requires": "lzmada",
            "selected": false,
            "version": "2.0.0"
          }
        ],
        "dependencies": [
          {
            "catalog": "community",
            "condition": null,
            "name": "liblzma",
            "package": "liblzma",
            "provided_version": "system",
            "requirement": "*",
            "resolved": true,
            "version": "system"
          }
        ],
        "development": false,
        "external": false,
        "manifest": {
          "authors": [
            "Stephane.Carrez@gmail.com"
          ],
          "configuration": {
            "disabled": true
          },
          "depends-on": [
            {
              "liblzma": "*"
            }
          ],
          "description": "Ada LZMA Library Binding",
          "gpr-externals": {
            "LZMA_BUILD": [
              "distrib",
              "debug",
              "optimize",
              "profile",
              "coverage"
            ],
            "LZMA_LIBRARY_TYPE": [
              "relocatable",
              "static",
              "static-pic"
            ]
          },
          "licenses": "MIT",
          "long-description": "\nA very thin Ada binding for the LZMA compression library.\nRoughly speaking, import some package:\n\n    with Lzma.Base;\n    with Lzma.Container;\n    with Lzma.Check;\n\nThen declare the LZMA stream:\n\n    Stream  : aliased Lzma.Base.lzma_stream := Lzma.Base.LZMA_STREAM_INIT;\n\nInitialize the LZMA stream as decoder (or as encoder):\n\n    Result := Lzma.Container.lzma_stream_decoder (Stream'Unchecked_Access,\n                                                  Long_Long_Integer'Last,\n                                                  Lzma.Container.LZMA_CONCATENATED);\n\nSetup the stream 'next_out', 'avail_out', 'next_in' and 'avail_in' and call\nthe lzma_code operation with the action (Lzma.Base.LZMA_RUN or Lzma.Base.LZMA_FINISH):\n\n    Result := Lzma.Base.lzma_code (Stream'Unchecked_Access, Action);\n\nClose the LZMA stream:\n\n    Lzma.Base.lzma_end (Stream'Unchecked_Access);\n\n",
          "maintainers": [
            "Stephane.Carrez@gmail.com"
          ],
          "maintainers-logins": [
            "stcarrez"
          ],
          "name": "lzmada",
          "origin": {
            "commit": "b1b687dbffd5edbd494eb9d40aabfa4d3c48dfaf",
            "url": "git+https://gitlab.com/stcarrez/ada-lzma.git"
          },
          "project-files": [
            ".alire/lzmada.gpr"
          ],
          "tags": [
            "compression",
            "lzma"
          ],
          "version": "1.1.3",
          "website": "https://gitlab.com/stcarrez/ada-lzma"
        },
        "path": "index/lz/lzmada/lzmada-1.1.3.toml",
        "version": "1.1.3"
      },
      {
        "dependants": [
          {
            "catalog": "community",
            "condition": null,
            "development": false,
            "name": "utilada_lzma",
            "path": "index/ut/utilada_lzma/utilada_lzma-2.9.0.toml",
            "provided_version": "1.1.2",
            "qualifies": true,
            "requirement": "^1.1.2",
            "requires": "lzmada",
            "selected": true,
            "version": "2.9.0"
          },
          {
            "catalog": "community",
            "condition": null,
            "development": false,
            "name": "utilada_lzma",
            "path": "index/ut/utilada_lzma/utilada_lzma-2.8.2.toml",
            "provided_version": "1.1.2",
            "qualifies": true,
            "requirement": "^1.1.2",
            "requires": "lzmada",
            "selected": false,
            "version": "2.8.2"
          },
          {
            "catalog": "community",
            "condition": null,
            "development": false,
            "name": "utilada_lzma",
            "path": "index/ut/utilada_lzma/utilada_lzma-2.8.1.toml",
            "provided_version": "1.1.2",
            "qualifies": true,
            "requirement": "^1.1.2",
            "requires": "lzmada",
            "selected": false,
            "version": "2.8.1"
          },
          {
            "catalog": "community",
            "condition": null,
            "development": false,
            "name": "utilada_lzma",
            "path": "index/ut/utilada_lzma/utilada_lzma-2.8.0.toml",
            "provided_version": "1.1.2",
            "qualifies": true,
            "requirement": "^1.1.2",
            "requires": "lzmada",
            "selected": false,
            "version": "2.8.0"
          },
          {
            "catalog": "community",
            "condition": null,
            "development": false,
            "name": "utilada_lzma",
            "path": "index/ut/utilada_lzma/utilada_lzma-2.7.0.toml",
            "provided_version": "1.1.2",
            "qualifies": true,
            "requirement": "^1.1.2",
            "requires": "lzmada",
            "selected": false,
            "version": "2.7.0"
          },
          {
            "catalog": "community",
            "condition": null,
            "development": false,
            "name": "utilada_lzma",
            "path": "index/ut/utilada_lzma/utilada_lzma-2.6.0.toml",
            "provided_version": "1.1.2",
            "qualifies": true,
            "requirement": "^1.1.2",
            "requires": "lzmada",
            "selected": false,
            "version": "2.6.0"
          },
          {
            "catalog": "community",
            "condition": null,
            "development": false,
            "name": "utilada_lzma",
            "path": "index/ut/utilada_lzma/utilada_lzma-2.5.0.toml",
            "provided_version": "1.1.2",
            "qualifies": true,
            "requirement": "^1.1.2",
            "requires": "lzmada",
            "selected": false,
            "version": "2.5.0"
          },
          {
            "catalog": "community",
            "condition": null,
            "development": false,
            "name": "utilada_lzma",
            "path": "index/ut/utilada_lzma/utilada_lzma-2.1.0.toml",
            "provided_version": "1.1.2",
            "qualifies": true,
            "requirement": "^1.1.0",
            "requires": "lzmada",
            "selected": false,
            "version": "2.1.0"
          },
          {
            "catalog": "community",
            "condition": null,
            "development": false,
            "name": "utilada_lzma",
            "path": "index/ut/utilada_lzma/utilada_lzma-2.0.0.toml",
            "provided_version": "1.1.2",
            "qualifies": true,
            "requirement": "^1.1.0",
            "requires": "lzmada",
            "selected": false,
            "version": "2.0.0"
          }
        ],
        "dependencies": [
          {
            "catalog": "community",
            "condition": null,
            "name": "liblzma",
            "package": "liblzma",
            "provided_version": "system",
            "requirement": "*",
            "resolved": true,
            "version": "system"
          }
        ],
        "development": false,
        "external": false,
        "manifest": {
          "authors": [
            "Stephane.Carrez@gmail.com"
          ],
          "configuration": {
            "disabled": true
          },
          "depends-on": [
            {
              "liblzma": "*"
            }
          ],
          "description": "Ada LZMA Library Binding",
          "gpr-externals": {
            "BUILD": [
              "distrib",
              "debug",
              "optimize",
              "profile",
              "coverage"
            ],
            "LZMA_LIBRARY_TYPE": [
              "relocatable",
              "static",
              "static-pic"
            ]
          },
          "licenses": "MIT",
          "long-description": "A very thin Ada binding for the LZMA compression library",
          "maintainers": [
            "Stephane.Carrez@gmail.com"
          ],
          "maintainers-logins": [
            "stcarrez"
          ],
          "name": "lzmada",
          "origin": {
            "commit": "f74f024479ac4ea8949421dede73eb319bdb073a",
            "url": "git+https://gitlab.com/stcarrez/ada-lzma.git"
          },
          "project-files": [
            ".alire/lzmada.gpr"
          ],
          "tags": [
            "compression",
            "lzma"
          ],
          "version": "1.1.2",
          "website": "https://gitlab.com/stcarrez/ada-lzma"
        },
        "path": "index/lz/lzmada/lzmada-1.1.2.toml",
        "version": "1.1.2"
      },
      {
        "dependants": [
          {
            "catalog": "community",
            "condition": null,
            "development": false,
            "name": "utilada_lzma",
            "path": "index/ut/utilada_lzma/utilada_lzma-2.9.0.toml",
            "provided_version": "1.1.0",
            "qualifies": false,
            "requirement": "^1.1.2",
            "requires": "lzmada",
            "selected": true,
            "version": "2.9.0"
          },
          {
            "catalog": "community",
            "condition": null,
            "development": false,
            "name": "utilada_lzma",
            "path": "index/ut/utilada_lzma/utilada_lzma-2.8.2.toml",
            "provided_version": "1.1.0",
            "qualifies": false,
            "requirement": "^1.1.2",
            "requires": "lzmada",
            "selected": false,
            "version": "2.8.2"
          },
          {
            "catalog": "community",
            "condition": null,
            "development": false,
            "name": "utilada_lzma",
            "path": "index/ut/utilada_lzma/utilada_lzma-2.8.1.toml",
            "provided_version": "1.1.0",
            "qualifies": false,
            "requirement": "^1.1.2",
            "requires": "lzmada",
            "selected": false,
            "version": "2.8.1"
          },
          {
            "catalog": "community",
            "condition": null,
            "development": false,
            "name": "utilada_lzma",
            "path": "index/ut/utilada_lzma/utilada_lzma-2.8.0.toml",
            "provided_version": "1.1.0",
            "qualifies": false,
            "requirement": "^1.1.2",
            "requires": "lzmada",
            "selected": false,
            "version": "2.8.0"
          },
          {
            "catalog": "community",
            "condition": null,
            "development": false,
            "name": "utilada_lzma",
            "path": "index/ut/utilada_lzma/utilada_lzma-2.7.0.toml",
            "provided_version": "1.1.0",
            "qualifies": false,
            "requirement": "^1.1.2",
            "requires": "lzmada",
            "selected": false,
            "version": "2.7.0"
          },
          {
            "catalog": "community",
            "condition": null,
            "development": false,
            "name": "utilada_lzma",
            "path": "index/ut/utilada_lzma/utilada_lzma-2.6.0.toml",
            "provided_version": "1.1.0",
            "qualifies": false,
            "requirement": "^1.1.2",
            "requires": "lzmada",
            "selected": false,
            "version": "2.6.0"
          },
          {
            "catalog": "community",
            "condition": null,
            "development": false,
            "name": "utilada_lzma",
            "path": "index/ut/utilada_lzma/utilada_lzma-2.5.0.toml",
            "provided_version": "1.1.0",
            "qualifies": false,
            "requirement": "^1.1.2",
            "requires": "lzmada",
            "selected": false,
            "version": "2.5.0"
          },
          {
            "catalog": "community",
            "condition": null,
            "development": false,
            "name": "utilada_lzma",
            "path": "index/ut/utilada_lzma/utilada_lzma-2.1.0.toml",
            "provided_version": "1.1.0",
            "qualifies": true,
            "requirement": "^1.1.0",
            "requires": "lzmada",
            "selected": false,
            "version": "2.1.0"
          },
          {
            "catalog": "community",
            "condition": null,
            "development": false,
            "name": "utilada_lzma",
            "path": "index/ut/utilada_lzma/utilada_lzma-2.0.0.toml",
            "provided_version": "1.1.0",
            "qualifies": true,
            "requirement": "^1.1.0",
            "requires": "lzmada",
            "selected": false,
            "version": "2.0.0"
          }
        ],
        "dependencies": [],
        "development": false,
        "external": false,
        "manifest": {
          "description": "Ada LZMA Library Binding",
          "gpr-externals": {
            "BUILD": [
              "distrib",
              "debug",
              "optimize",
              "profile",
              "coverage"
            ],
            "LZMA_LIBRARY_TYPE": [
              "relocatable",
              "static",
              "static-pic"
            ]
          },
          "licenses": "MIT",
          "maintainers": [
            "Stephane.Carrez@gmail.com"
          ],
          "maintainers-logins": [
            "stcarrez"
          ],
          "name": "lzmada",
          "origin": {
            "hashes": [
              "sha512:1344289480d43e12622c3ae822d9b4a34d927219341eafff2f80151f2ee6613aac6599d3ee46f602869d1f498129fd0607b688951d6cbf97b24b48af2cb44047"
            ],
            "url": "https://github.com/stcarrez/ada-lzma/archive/1.1.0.tar.gz"
          },
          "project-files": [
            ".alire/lzmada.gpr"
          ],
          "version": "1.1.0"
        },
        "path": "index/lz/lzmada/lzmada-1.1.0.toml",
        "version": "1.1.0"
      }
    ]
  },
  "schema_version": 4
}
