{"id":24955133,"url":"https://github.com/morr0ne/podzol","last_synced_at":"2025-07-15T04:04:31.308Z","repository":{"id":273602534,"uuid":"920266481","full_name":"morr0ne/podzol","owner":"morr0ne","description":"🌿 A modern package manager for Minecraft modpacks","archived":false,"fork":false,"pushed_at":"2025-05-09T20:27:18.000Z","size":194,"stargazers_count":2,"open_issues_count":2,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-07-04T13:35:40.018Z","etag":null,"topics":["fabric","minecraft","modpack","modrinth","podzol"],"latest_commit_sha":null,"homepage":"https://podzol.morrone.dev","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/morr0ne.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","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":"2025-01-21T21:08:37.000Z","updated_at":"2025-02-25T22:21:18.000Z","dependencies_parsed_at":"2025-02-21T21:22:51.677Z","dependency_job_id":"5cd12633-4480-48d4-ac28-df71c8036aea","html_url":"https://github.com/morr0ne/podzol","commit_stats":null,"previous_names":["morr0ne/podzol"],"tags_count":2,"template":false,"template_full_name":null,"purl":"pkg:github/morr0ne/podzol","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/morr0ne%2Fpodzol","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/morr0ne%2Fpodzol/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/morr0ne%2Fpodzol/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/morr0ne%2Fpodzol/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/morr0ne","download_url":"https://codeload.github.com/morr0ne/podzol/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/morr0ne%2Fpodzol/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":265401825,"owners_count":23759024,"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","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":["fabric","minecraft","modpack","modrinth","podzol"],"created_at":"2025-02-03T05:40:03.475Z","updated_at":"2025-07-15T04:04:31.261Z","avatar_url":"https://github.com/morr0ne.png","language":"Rust","readme":"# Podzol\n\n[![Crates.io](https://img.shields.io/crates/v/podzol?style=flat-square\u0026logo=rust)](https://crates.io/crates/podzol)\n[![AUR](https://img.shields.io/aur/version/podzol?style=flat-square\u0026logo=arch-linux)](https://aur.archlinux.org/packages/podzol)\n[![License](https://img.shields.io/badge/license-Apache_2.0-blue.svg?style=flat-square)](LICENSE)\n[![Website](https://img.shields.io/badge/website-podzol.morrone.dev-blue?style=flat-square)](https://podzol.morrone.dev)\n\nA modern package manager for Minecraft modpacks that simplifies creation and\nmanagement through a clean TOML-based manifest format and direct integration\nwith the Modrinth API.\n\n## Features\n\n- Simple TOML-based manifest format\n- Direct integration with Modrinth API\n- Automatic version management\n- Client/server-side awareness\n- Support for multiple mod loaders (Fabric, Forge, Quilt, NeoForge)\n- Built-in resource pack and shader management\n- File override system for custom configurations\n\n## Installation\n\n### From Crates.io\n\n```bash\ncargo install podzol\n```\n\n### From AUR (Arch Linux)\n\n```bash\nparu -S podzol\n```\n\n## Quick Start\n\n1. Create a new modpack:\n\n```bash\npodzol init --name \"My Cool Pack\" --version 1.21.1 --loader fabric\n```\n\n2. Add mods to your pack:\n\n```bash\npodzol add iris sodium modmenu\n```\n\n3. Export your modpack:\n\n```bash\npodzol export\n```\n\n## Configuration\n\nPodzol uses a clean TOML format for modpack configuration:\n\n```toml\n[pack]\nname = \"Cool pack\"\nversion = \"0.1.0\"\ndescription = \"A very cool minecraft modpack\"\n\n[enviroment]\nminecraft = \"1.21.1\"\nfabric = \"0.16.10\"\n\n[mods]\niris = { version = \"1.8.1+1.21.1-fabric\", side = \"client\" }\nsodium = { version = \"mc1.21.1-0.6.5-fabric\", side = \"client\" }\n```\n\n### Manifest Structure\n\n- **Pack Information**: Basic metadata about your modpack\n- **Environment**: Minecraft and mod loader versions\n- **Mods**: Mod definitions with automatic version management\n- **Resource Packs**: Optional resource pack configurations\n- **Shaders**: Shader pack configurations\n- **File Overrides**: Custom file management for client/server\n\n## Commands\n\n```bash\npodzol init    # Create a new project\npodzol add     # Add components to your modpack\npodzol remove  # Remove components\npodzol export  # Create a distributable package\n```\n\n## Roadmap\n\n- Publishing capabilities\n- Package extension support\n- Additional mod platform integrations\n- Advanced configuration options\n\n## Comparison with Other Tools\n\n| Feature              | Podzol      | Packwiz      | Manual Management |\n| -------------------- | ----------- | ------------ | ----------------- |\n| Configuration Format | Simple TOML | Complex TOML | N/A               |\n| Version Management   | Automatic   | Manual       | Manual            |\n| Modrinth Integration | Direct API  | Limited      | None              |\n| Setup Complexity     | Minimal     | Complex      | None              |\n| Learning Curve       | Gentle      | Steep        | N/A               |\n\n## License\n\nThis project is licensed under the\n[Apache-2.0 License](http://www.apache.org/licenses/LICENSE-2.0). For more\ninformation, please see the [LICENSE](LICENSE) file.\n","funding_links":[],"categories":[],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmorr0ne%2Fpodzol","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fmorr0ne%2Fpodzol","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmorr0ne%2Fpodzol/lists"}