{"id":30710765,"url":"https://github.com/ldubos/bevy-histrion-packer","last_synced_at":"2025-09-11T09:40:44.548Z","repository":{"id":214469681,"uuid":"736612743","full_name":"ldubos/bevy-histrion-packer","owner":"ldubos","description":"A Bevy plugin to pack assets into a single PAK like file :package:","archived":false,"fork":false,"pushed_at":"2025-09-02T21:54:48.000Z","size":11094,"stargazers_count":22,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-09-02T23:23:46.057Z","etag":null,"topics":["assets","bevy","bevy-engine","bundling","game-development","packing"],"latest_commit_sha":null,"homepage":"","language":"Rust","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"apache-2.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/ldubos.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":null,"funding":null,"license":"LICENSE-APACHE","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,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2023-12-28T11:31:04.000Z","updated_at":"2025-09-02T21:54:52.000Z","dependencies_parsed_at":"2023-12-28T12:12:34.897Z","dependency_job_id":"09aa5e39-53a5-4204-a610-58f682a7b402","html_url":"https://github.com/ldubos/bevy-histrion-packer","commit_stats":null,"previous_names":["ldubos/bevy-histrion-packer"],"tags_count":12,"template":false,"template_full_name":null,"purl":"pkg:github/ldubos/bevy-histrion-packer","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ldubos%2Fbevy-histrion-packer","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ldubos%2Fbevy-histrion-packer/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ldubos%2Fbevy-histrion-packer/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ldubos%2Fbevy-histrion-packer/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/ldubos","download_url":"https://codeload.github.com/ldubos/bevy-histrion-packer/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ldubos%2Fbevy-histrion-packer/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":274609643,"owners_count":25316666,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","status":"online","status_checked_at":"2025-09-11T02:00:13.660Z","response_time":74,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"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":["assets","bevy","bevy-engine","bundling","game-development","packing"],"created_at":"2025-09-03T01:04:49.959Z","updated_at":"2025-09-11T09:40:44.522Z","avatar_url":"https://github.com/ldubos.png","language":"Rust","funding_links":[],"categories":[],"sub_categories":[],"readme":"\u003ch1 align=\"center\"\u003ebevy-histrion-packer\u003c/h1\u003e\n\n\u003cdiv align=\"center\"\u003e\n\n![MIT or Apache 2.0](https://img.shields.io/badge/License-MIT%20or%20Apache%202.0-blue.svg)\n[![Crate](https://img.shields.io/crates/v/bevy-histrion-packer.svg)](https://crates.io/crates/bevy-histrion-packer)\n[![Docs](https://docs.rs/bevy-histrion-packer/badge.svg)](https://docs.rs/bevy-histrion-packer)\n[![CI](https://github.com/ldubos/bevy-histrion-packer/workflows/CI/badge.svg)](https://github.com/ldubos/bevy-histrion-packer/actions)\n\nPack all your game assets into a single common PAK like file format.\n\n\u003c/div\u003e\n\n\u003e [!WARNING]\n\u003e This crate is in early development.\u003cbr/\u003e\n\u003e Use it with caution as the format and API is not yet stabilized.\n\n## File Structure\n\n```\n         +--------------------------------+ 0x0000\n         |             Header             |\n         +--------------------------------+\n         |          File Content          |\n         +--------------------------------+ \u003centries_offset\u003e\n         |         Entries Tables         |\n         +--------------------------------+\n\nHeader\n====================================================\nOffset  Size    Description\n0x0000  4       Magic number (HPAK signature)\n0x0004  4       Version number (u32)\n0x0008  1       Metadata compression method\n0x0009  8       Entries offset (u64)\n\nDirectory Entry\n====================================================\nOffset  Size    Description\n0x0000  8       Hash of the directory path\n0x0008  8       Number of paths in the directory\n0x0010  var     Array of paths in the directory\n\nFile Entry\n====================================================\nOffset  Size    Description\n0x0000  8       Path hash (u64)\n0x0008  1       Compression method\n0x0009  8       Metadata offset (u64)\n0x0011  8       Metadata size (u64)\n0x0019  8       Data size (u64)\n\nEntries Tables\n====================================================\nOffset  Size    Description\n0x0000  8       Number of directory entries (u64)\n0x0008  var     Array of directory entries\n0x????  8       Number of file entries (u64)\n0x????  var     Array of file entries\n```\n\n## Features\n\n| feature | description                                                                              |\n| ------- | ---------------------------------------------------------------------------------------- |\n| writer  | Enables the ability to generate a HPAK file with [`HpakWriter`](./src/format/writer.rs). |\n\n## Bevy Compatibility\n\n| bevy     | bevy-histrion-packer |\n| -------- | -------------------- |\n| `0.16.0` | `0.6.0`              |\n| `0.15`   | `0.5`                |\n| `0.14`   | `0.4`                |\n| `0.13`   | `0.2-0.3`            |\n| `0.12`   | `0.1`                |\n\n## License\n\nDual-licensed under either of\n\n- Apache License, Version 2.0, ([LICENSE-APACHE](/LICENSE-APACHE) or \u003chttps://www.apache.org/licenses/LICENSE-2.0\u003e)\n- MIT license ([LICENSE-MIT](/LICENSE-MIT) or \u003chttps://opensource.org/licenses/MIT\u003e)\n\nat your option.\n\n## Contribution\n\nUnless you explicitly state otherwise, any contribution intentionally submitted\nfor inclusion in the work by you, as defined in the Apache-2.0 license, shall be dual licensed as above, without any\nadditional terms or conditions.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fldubos%2Fbevy-histrion-packer","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fldubos%2Fbevy-histrion-packer","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fldubos%2Fbevy-histrion-packer/lists"}