{
  "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": "Produce Excel spreadsheets",
    "development_only": false,
    "latest_version": "19.0.1",
    "name": "excel_writer",
    "selected_version": "19.0.1",
    "versions": [
      {
        "dependants": [],
        "dependencies": [],
        "development": false,
        "external": false,
        "manifest": {
          "authors": [
            "Gautier de Montmollin"
          ],
          "description": "Produce Excel spreadsheets",
          "executables": [
            "excel_out_demo"
          ],
          "licenses": "MIT",
          "long-description": "![Excel Writer logo](https://excel-writer.sourceforge.io/ew_logo_no_shadow.png)\n\nExcel_Out is a standalone, portable Ada package for writing Excel spreadsheets with basic formattings and formulas, easily and programmatically.\n\n* Enables the automatic production of reports\n* Fast: 50 sheets per second, with 10,000 data cells each on a slow 1.66 GHz computer\n* No interaction needed with Excel or MS Office\n* Unconditionally portable (*)\n* Endian-neutral\n* Object oriented\n* Task safe\n* Pure Ada 95 (nothing compiler/system specific), can be used in projects in Ada 95, Ada 2005, Ada 2012 and later versions of the language\n* Floating-point hardware neutral: no IEEE hardware required\n* Tests and demos included\n* Includes a CSV parser with related tools.\n* Free, open-source\n\nThe creation of an Excel file is as simple as this small procedure:\n\n```ada\nwith Excel_Out;\n\nprocedure Small_Demo is\n  xl : Excel_Out.Excel_Out_File;\nbegin\n  xl.Create (\"small.xls\");\n  xl.Put_Line (\"This is a small demo for Excel_Out\");\n  for row in 3 .. 8 loop\n    for column in 1 .. 8 loop\n      xl.Write (row, column, row * 1000 + column);\n    end loop;\n  end loop;\n  xl.Close;\nend Small_Demo;\n```\n\n___\n\n(*) within limits of compiler's provided integer types and target architecture capacity.\n",
          "maintainers": [
            "gdemont@hotmail.com"
          ],
          "maintainers-logins": [
            "mosteo",
            "zertovitch"
          ],
          "name": "excel_writer",
          "origin": {
            "hashes": [
              "sha512:a337fb5bb75c062efebd7f35687e5ff7958c93b27a16a4d9fcf9531eb01138dc77432784281a8dbbf0cf6af46c273f28582e11612998108cfa3ebbe5e8971761"
            ],
            "url": "https://sourceforge.net/projects/excel-writer/files/excel-writer/excel_writer_19_01.zip"
          },
          "project-files": [
            "excel_out.gpr"
          ],
          "tags": [
            "excel",
            "spreadsheet",
            "xls",
            "csv"
          ],
          "version": "19.0.1",
          "website": "https://excel-writer.sourceforge.io/"
        },
        "path": "index/ex/excel_writer/excel_writer-19.0.1.toml",
        "version": "19.0.1"
      },
      {
        "dependants": [],
        "dependencies": [],
        "development": false,
        "external": false,
        "manifest": {
          "authors": [
            "Gautier de Montmollin"
          ],
          "description": "Produce Excel spreadsheets",
          "executables": [
            "excel_out_demo"
          ],
          "licenses": "MIT",
          "long-description": "![Excel Writer logo](https://excel-writer.sourceforge.io/ew_logo_no_shadow.png)\n\nExcel_Out is a standalone, portable Ada package for writing Excel spreadsheets with basic formattings and formulas, easily and programmatically.\n\n* Enables the automatic production of reports\n* Fast: 50 sheets per second, with 10,000 data cells each on a slow 1.66 GHz computer\n* No interaction needed with Excel or MS Office\n* Unconditionally portable (*)\n* Endian-neutral\n* Object oriented\n* Task safe\n* Pure Ada 95 (nothing compiler/system specific), can be used in projects in Ada 95, Ada 2005, Ada 2012 and later versions of the language\n* Floating-point hardware neutral: no IEEE hardware required\n* Tests and demos included\n* Includes a CSV parser with related tools.\n* Free, open-source\n\nThe creation of an Excel file is as simple as this small procedure:\n\n```ada\nwith Excel_Out;\n\nprocedure Small_Demo is\n  xl : Excel_Out.Excel_Out_File;\nbegin\n  xl.Create (\"small.xls\");\n  xl.Put_Line (\"This is a small demo for Excel_Out\");\n  for row in 3 .. 8 loop\n    for column in 1 .. 8 loop\n      xl.Write (row, column, row * 1000 + column);\n    end loop;\n  end loop;\n  xl.Close;\nend Small_Demo;\n```\n\n___\n\n(*) within limits of compiler's provided integer types and target architecture capacity.\n",
          "maintainers": [
            "gdemont@hotmail.com"
          ],
          "maintainers-logins": [
            "mosteo",
            "zertovitch"
          ],
          "name": "excel_writer",
          "origin": {
            "hashes": [
              "sha512:121a552097bd41965e8aeecf29ab3bed59755704c21c81fb85eac852bab8aa377388d949971f999e039a1e6ca52f05a4a05ab4a95dbb7653df5a6b7481ecbf9e"
            ],
            "url": "https://sourceforge.net/projects/excel-writer/files/excel-writer/excel_writer_19.zip"
          },
          "project-files": [
            "excel_out.gpr"
          ],
          "tags": [
            "excel",
            "spreadsheet",
            "xls",
            "csv"
          ],
          "version": "19.0.0",
          "website": "https://excel-writer.sourceforge.io/"
        },
        "path": "index/ex/excel_writer/excel_writer-19.0.0.toml",
        "version": "19.0.0"
      },
      {
        "dependants": [],
        "dependencies": [],
        "development": false,
        "external": false,
        "manifest": {
          "authors": [
            "Gautier de Montmollin"
          ],
          "description": "Produce Excel spreadsheets",
          "executables": [
            "excel_out_demo"
          ],
          "licenses": "MIT",
          "long-description": "![Excel Writer logo](https://excel-writer.sourceforge.io/ew_logo_no_shadow.png)\n\nExcel_Out is a standalone, portable Ada package for writing Excel spreadsheets with basic formattings, easily and programmatically.\n\n* Enables the automatic production of reports\n* Fast: 50 sheets per second, with 10,000 data cells each on a slow 1.66 GHz computer\n* No interaction needed with Excel or MS Office\n* Unconditionally portable (*)\n* Endian-neutral\n* Object oriented\n* Task safe\n* Pure Ada 95 (nothing compiler/system specific), can be used in projects in Ada 95, Ada 2005, Ada 2012 and later versions of the language\n* Floating-point hardware neutral: no IEEE hardware required\n* Tests and demos included\n* Includes a CSV parser with related tools.\n* Free, open-source\n\nThe creation of an Excel file is as simple as this small procedure:\n\n```ada\nwith Excel_Out;\n\nprocedure Small_Demo is\n  xl : Excel_Out.Excel_Out_File;\nbegin\n  xl.Create (\"small.xls\");\n  xl.Put_Line (\"This is a small demo for Excel_Out\");\n  for row in 3 .. 8 loop\n    for column in 1 .. 8 loop\n      xl.Write (row, column, row * 1000 + column);\n    end loop;\n  end loop;\n  xl.Close;\nend Small_Demo;\n```\n\n___\n\n(*) within limits of compiler's provided integer types and target architecture capacity.\n",
          "maintainers": [
            "gdemont@hotmail.com"
          ],
          "maintainers-logins": [
            "mosteo",
            "zertovitch"
          ],
          "name": "excel_writer",
          "origin": {
            "hashes": [
              "sha512:ae0dcf496dbf106fd0928d45dad8a9c8967909a653ae7b08a74cef9e7cfcc3909f0af8726ecf61e34c0dc861fc972f7c575eb6c910a677e1f85c4cbcfa76d76b"
            ],
            "url": "https://sourceforge.net/projects/excel-writer/files/excel-writer/excel_writer_18.zip"
          },
          "project-files": [
            "excel_out_gnat.gpr"
          ],
          "tags": [
            "excel",
            "spreadsheet",
            "xls",
            "csv"
          ],
          "version": "18.0.0",
          "website": "https://excel-writer.sourceforge.io/"
        },
        "path": "index/ex/excel_writer/excel_writer-18.0.0.toml",
        "version": "18.0.0"
      },
      {
        "dependants": [],
        "dependencies": [],
        "development": false,
        "external": false,
        "manifest": {
          "authors": [
            "Gautier de Montmollin"
          ],
          "description": "Produce Excel spreadsheets",
          "licenses": "MIT",
          "maintainers": [
            "alejandro@mosteo.com"
          ],
          "maintainers-logins": [
            "mosteo",
            "zertovitch"
          ],
          "name": "excel_writer",
          "origin": {
            "hashes": [
              "sha512:acea6a01ff44f28ea57a53ea62d0d167daf2de26eb2b220c5b10503d53da144a38fb3363a789901356baa74f9617f03993527b63e4120f4291b8d24a413581e0"
            ],
            "url": "https://sourceforge.net/projects/excel-writer/files/excel-writer/excel_writer_17_r2.zip"
          },
          "project-files": [
            "excel_out_gnat.gpr"
          ],
          "tags": [
            "excel",
            "spreadsheet"
          ],
          "version": "17.0.1",
          "website": "https://excel-writer.sourceforge.io/"
        },
        "path": "index/ex/excel_writer/excel_writer-17.0.1.toml",
        "version": "17.0.1"
      }
    ]
  },
  "schema_version": 4
}
