{"id":25697932,"url":"https://github.com/ve5li/lunify","last_synced_at":"2026-03-01T16:02:15.893Z","repository":{"id":59914011,"uuid":"534575882","full_name":"vE5li/lunify","owner":"vE5li","description":"A crate for converting Lua bytecode to different versions and formats","archived":false,"fork":false,"pushed_at":"2023-07-10T10:30:03.000Z","size":181,"stargazers_count":16,"open_issues_count":0,"forks_count":4,"subscribers_count":1,"default_branch":"main","last_synced_at":"2026-01-14T07:40:04.315Z","etag":null,"topics":["bytecode","lua","rust"],"latest_commit_sha":null,"homepage":"","language":"Rust","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/vE5li.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE.md","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null}},"created_at":"2022-09-09T09:15:47.000Z","updated_at":"2025-12-21T18:15:20.000Z","dependencies_parsed_at":"2025-04-28T14:44:57.610Z","dependency_job_id":"a5d593ef-12ac-45e7-a79d-00a2cb8a12f1","html_url":"https://github.com/vE5li/lunify","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/vE5li/lunify","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/vE5li%2Flunify","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/vE5li%2Flunify/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/vE5li%2Flunify/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/vE5li%2Flunify/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/vE5li","download_url":"https://codeload.github.com/vE5li/lunify/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/vE5li%2Flunify/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":29974321,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-03-01T15:41:30.362Z","status":"ssl_error","status_checked_at":"2026-03-01T15:37:07.343Z","response_time":124,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.5:443 state=error: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["bytecode","lua","rust"],"created_at":"2025-02-25T02:34:38.314Z","updated_at":"2026-03-01T16:02:15.862Z","avatar_url":"https://github.com/vE5li.png","language":"Rust","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Lunify\n\n[![Tests](https://github.com/ve5li/lunify/workflows/Tests/badge.svg)](https://github.com/ve5li/lunify/actions?query=workflow%3ATests)\n[![Code Quality](https://github.com/ve5li/lunify/workflows/Code%20Quality/badge.svg)](https://github.com/ve5li/lunify/actions?query=workflow%3ACode+Quality)\n[![Test Coverage](https://raw.githubusercontent.com/gist/vE5li/173a7aa9ac7d5e82e238048e06aa99c2/raw/lunify-coverage-badge.svg)](https://github.com/ve5li/lunify/actions?query=workflow%3ATests)\n[![License: MIT](https://img.shields.io/badge/License-MIT-green.svg)](https://opensource.org/licenses/MIT)\n[![crates.io](https://img.shields.io/crates/v/lunify.svg)](https://crates.io/crates/lunify)\n\nA crate for converting Lua byte code to different versions and formats.\n\nCurrently Lua 5.0 and Lua 5.1 are supported inputs.\n\n# Example\n\n```rust\nuse lunify::{Format, LunifyError, Endianness, BitWidth, unify};\n\n// Lua byte code in any suppored format\nlet input_bytes = include_bytes!(\"../test_files/lua50.luab\");\n\n// Desired output format. May specify pointer width, endianness, sizes of datatypes, ...\nlet output_format = Format {\n    endianness: Endianness::Little,\n    // Convert from byte code that runs on a 32 bit machine to byte code that runs on a 64 bit machine\n    size_t_width: BitWidth::Bit64,\n    ..Format::default()\n};\n\n// Convert input bytes to the desired format\nlet output_bytes = unify(input_bytes, \u0026output_format, \u0026Default::default());\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fve5li%2Flunify","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fve5li%2Flunify","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fve5li%2Flunify/lists"}